-
Notifications
You must be signed in to change notification settings - Fork 5
/
comparison.html
92 lines (82 loc) · 4.5 KB
/
comparison.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<div class="relative overflow-hidden shadow-md rounded-lg">
<table class="table-fixed w-full text-left">
<thead class="uppercase bg-[#4666a7] text-[#ffffff]" style="background-color: #4666a7; color: #ffffff;">
<tr>
<td class="py-1 border text-center p-4" contenteditable="true">
<br>
</td>
<td class="py-1 border text-center p-4" contenteditable="true">PGVECTOR</td>
<td class="py-1 border text-center p-4" contenteditable="true">PINECONE</td>
<td class="py-1 border text-center p-4" contenteditable="true">PGVECTOR-REMOTE</td>
</tr>
</thead>
<tbody class="bg-white text-gray-500 bg-[#FFFFFF] text-[#0f2e6c]" style="background-color: #FFFFFF; color: #0f2e6c;">
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">SQL Interface
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
</tr>
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">Transaction Support
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"></td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
</tr>
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">10+ Client Languages
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"></td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
</tr>
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">Data Export
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
</tr>
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">Latency*</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">300ms</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">4ms</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">7ms</td>
</tr>
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">Throughput*</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">3QPS</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">300QPS</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true">300QPS</td>
</tr>
<tr class="py-5">
<td class="py-5 border text-center font-bold p-4" contenteditable="true">Metadata Filtering
<br>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"></td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
<td class="py-5 border text-center font-bold p-4" contenteditable="true"><code>✔</code>
</td>
</tr>
</tbody>
</table>
</div>