Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
68af3752
Commit
68af3752
authored
Jul 08, 2008
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor improvements to the Gin internal documentation.
parent
70d15a51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/backend/access/gin/README
src/backend/access/gin/README
+4
-4
No files found.
src/backend/access/gin/README
View file @
68af3752
$PostgreSQL: pgsql/src/backend/access/gin/README,v 1.
5 2008/03/20 17:55:14 momjian
Exp $
$PostgreSQL: pgsql/src/backend/access/gin/README,v 1.
6 2008/07/08 03:25:42 neilc
Exp $
Gin for PostgreSQL
==================
...
...
@@ -25,8 +25,8 @@ for tsvector) and where each tuple in a leaf page is either a pointer to a
B-tree over item pointers (PT, posting tree), or a list of item pointers
(PL, posting list) if the tuple is small enough.
Note: There is no delete operation for ET. The reason for this is that
from
our experience,
a set of unique words over a large collection change
very
Note: There is no delete operation for ET. The reason for this is that
in
our experience,
the set of distinct words in a large corpus changes
very
rarely. This greatly simplifies the code and concurrency algorithms.
Gin comes with built-in support for one-dimensional arrays (eg. integer[],
...
...
@@ -64,7 +64,7 @@ itself is very fast.)
Such queries usually contain very frequent lexemes, so the results are not
very helpful. To facilitate execution of such queries Gin has a configurable
soft upper limit o
f
the size of the returned set, determined by the
soft upper limit o
n
the size of the returned set, determined by the
'gin_fuzzy_search_limit' GUC variable. This is set to 0 by default (no
limit).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment