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?
source
share