Postgresql full-text search by hero

Hello, I want to use full-text search using postrgresql, but the problem is with heroku, I can’t think of a way to create a custom dictionary using my language (Greek).

on my computer i did

CREATE TEXT SEARCH DICTIONARY greek_ispell (
TEMPLATE = ispell,
DictFile = greek,
AffFile = greek,
StopWords = greek
);

and configure sharedir using custom dictionaries. Is there any way to do this on heroics?

+3
source share
1 answer

Try Texticle , it's a free full-text search on Postgres (this is how it works on Heroku).

+1
source

Source: https://habr.com/ru/post/1765579/


All Articles