PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Stoppwörter entfernen, ohne in postgresql zu stammen

Erstellen Sie Ihr eigenes Textsuchwörterbuch und konfigurieren Sie es:

CREATE TEXT SEARCH DICTIONARY simple_english
   (TEMPLATE = pg_catalog.simple, STOPWORDS = english);

CREATE TEXT SEARCH CONFIGURATION simple_english
   (copy = english);
ALTER TEXT SEARCH CONFIGURATION simple_english
   ALTER MAPPING FOR asciihword, asciiword, hword, hword_asciipart, hword_part, word
   WITH simple_english;

So funktioniert es:

SELECT to_tsvector('simple_english', 'many an ox eats the houses');
┌─────────────────────────────────────┐
│             to_tsvector             │
├─────────────────────────────────────┤
│ 'eats':4 'houses':5 'many':1 'ox':3 │
└─────────────────────────────────────┘
(1 row)

Sie können den Parameter default_text_search_config setzen zu simple_english um es zu Ihrer Standardkonfiguration für die Textsuche zu machen.