Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.sai.msu.su/~megera/oddmuse/index.cgi/ReadmeTrgm
Дата изменения: Unknown Дата индексирования: Mon Apr 11 07:54:11 2016 Кодировка: Поисковые слова: helix nebula |
This module is sponsored by Delta-Soft Ltd., Moscow, Russia and Russian Foundation for Basic research.
The trgm contrib module provides functions and index classes for determining the similarity of text based on trigram matching.
Trigram (or Trigraph) is a set of three consecutive characters taken from a string. A string is considered to have two spaces prefixed and one space suffixed when determining the set of trigrams that comprise the string.
The set of trigrams in the word "cat" is " c", " ca", "at " and "cat".
*real similarity(text, text)
Returns a number that indicates how closely matches the two arguments are. A zero result indicates that the two words are completely dissimilar, and a result of one indicates that the two words are identical.
Returns the current similarity threshold used by the '%' operator. This in effect sets the minimum similarity between two words in order that they be considered similar enough to be misspellings of each other, for example.
Sets the current similarity threshold that is used by the '%' operator, and is returned by the show_limit() function.
Returns an array of all the trigrams of the supplied text parameter.
The '%' operator returns TRUE if its two arguments have a similarity that is greater than the similarity threshold set by set_limit(). It will return FALSE if the similarity is less than the current threshold.
The trgm module comes with an index operator class that allows a developer to create an index over a text column for the purpose of very fast similarity searches. To use this index, the '%' operator must be used and an appropriate similarity threshold for the application must be set.
CREATE TABLE test_trgm (t text); CREATE INDEX trgm_idx ON test_trgm USING gist(t gist_trgm_ops);
At this point, you will have an index on the t text column that you can use for similarity searching.
SELECT t, similarity(t, 'word') AS sml FROM test_trgm WHERE t % 'word' ORDER BY sml DESC, t;
This will return all values in the text column that are sufficiently similar to 'word', sorted from best match to worst. The index will be used to make this a fast operation over very large data sets.
Since 8.3 release pg_trgm has support of GIN index
CREATE INDEX trgm_gin_idx ON test_trgm USING gin(t gin_trgm_ops)
Trigram matching is a very useful tool when used in conjunction with a text index created by the Tsearch2 contrib module. (See contrib/tsearch2)
The first step is to generate an auxiliary table containing all the unique words in the Tsearch2 index:
CREATE TABLE words AS SELECT word FROM stat('SELECT vector FROM documents');
Where 'documents' is the table that contains the Tsearch2 index column 'vector', of type 'tsvector'.
Next, create a trigram index on the word column:
CREATE INDEX words_idx ON words USING gist(word gist_trgm_ops);
Now, a SELECT query similar to the example above can be used to suggest spellings for misspelled words in user search terms. A useful extra clause is to ensure that the similar words are also of similar length to the misspelled word.
Note: Since the 'words' table has been generated as a separate, static table, it will need to be periodically regenerated so that it remains up to date with the word list in the Tsearch2 index.
*Tsearch2 Development Site http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/
*GiST Development Site http://www.sai.msu.su/~megera/postgres/gist/
Test database is a titles of PostgreSQL mailing lists. The total number of titles is 377905 with average length of 38 characters. Hardware is a IBM ThinkPad x40 with 512 MB RAM, CPU 1.2GHz, Slackware Linux, CVS HEAD.
postgres=# \d titles Table "public.titles" Column | Type | Modifiers --------+---------+------------------------------------------------------ title | text | tid | integer | not null default nextval('titles_tid_seq'::regclass) postgres=# create index trgm_gidx on titles using gist(title gist_trgm_ops); CREATE INDEX Time: 251385.869 ms postgres=# select title, similarity(title, 'cretae table') as sml from titles where title % 'cretae table' order by sml desc limit 10; title | sml --------------------+---------- CREATE TABLE | 0.529412 CREATE TABLE | 0.529412 table creation | 0.473684 table creation | 0.473684 Table | 0.461538 CREATE TABLE AS | 0.45 [SQL] create table | 0.428571 create new table | 0.428571 create new table | 0.428571 create temp table | 0.428571 (10 rows) Time: 1858.076 ms postgres=# drop index trgm_gidx; postgres=# create index trgm_idx on titles using gin (title gin_trgm_ops); CREATE INDEX Time: 83670.050 ms postgres=# select title, similarity(title, 'cretae table') as sml from titles where title % 'cretae table' order by sml desc limit 10; title | sml --------------------+---------- CREATE TABLE | 0.529412 CREATE TABLE | 0.529412 table creation | 0.473684 table creation | 0.473684 Table | 0.461538 CREATE TABLE AS | 0.45 [SQL] create table | 0.428571 create new table | 0.428571 create new table | 0.428571 create temp table | 0.428571 (10 rows) Time: 1418.045 ms