You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GIN本质上是elemet为key的树结构,而value则为pointer for posting tree或者posting list。
25
+
GIN本质上是elemet为key的树结构,而value则为"posting tree pointer"或者"posting list"。
26
26
27
27
```
28
28
Internally, a GIN index contains a B-tree index constructed over keys,
@@ -31,12 +31,12 @@ where each key is an element of one or more indexed items (a member of an array,
31
31
32
32
and where each tuple in a leaf page contains either
33
33
34
-
a pointer to a B-tree of heap pointers (a “posting tree”), // 通常指key+ctids > 2000字节
34
+
a pointer to a B-tree of heap pointers (a “posting tree”), /
35
35
36
-
or a simple list of heap pointers (a “posting list”) when the list is small enough to fit into a single index tuple along with the key value. // 通常指key+ctids < 2000字节
36
+
or a simple list of heap pointers (a “posting list”) when the list is small enough to fit into a single index tuple along with the key value.
0 commit comments