开发者

Postgresql full-text-search on heroku

开发者 https://www.devze.com 2023-01-17 00:14 出处:网络
Hello I want to use full-text search using postrgresql but the problem on heroku, i can not think of a way to have custom dictionary using my language (Greek).

Hello I want to use full-text search using postrgresql but the problem on heroku, i can not think of a way to have custom dictionary using my language (Greek).

开发者_运维百科on my pc I did

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

and setup the sharedir using the custom dictionaries. Is there a way to do this on heroku?


Try Texticle, it's free full-text search on Postgres (so it works on Heroku).

0

精彩评论

暂无评论...
验证码 换一张
取 消