Last active
November 9, 2024 01:44
-
-
Save anhtran/de0691f848e115d841822baa6ee9f693 to your computer and use it in GitHub Desktop.
Cách tạo cấu hình cho tiếng Việt trong PostgreSQL (stopwords, ispell)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TEXT SEARCH DICTIONARY public.vietnamese ( | |
TEMPLATE = pg_catalog.simple, | |
STOPWORDS = vietnamese | |
); | |
CREATE TEXT SEARCH CONFIGURATION public.vietnamese ( | |
COPY = pg_catalog.english | |
); | |
ALTER TEXT SEARCH CONFIGURATION public.vietnamese | |
ALTER MAPPING | |
FOR asciiword, asciihword, hword_asciipart, hword, hword_part, word | |
WITH vietnamese; | |
SELECT to_tsvector('vietnamese', 'Nhiều địa phương cấm người ra đường khi bão Noru đổ bộ'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tham khảo: | |
https://www.postgresql.org/docs/current/textsearch-dictionaries.html | |
Tải file stop words của tiếng Việt: | |
https://github.com/stopwords/vietnamese-stopwords/blob/master/vietnamese-stopwords.txt | |
Sau khi tải về, hãy đổi tên thành `vietnamese.stop` sau đó move đến thư mục: | |
`/place-where-installed-postgresql/share/postgresql/tsearch_data` | |
Lưu ý: cấu hình trên chỉ có tác dụng với DB hiện hành. Nghĩa là bạn dùng DB nào thì hãy select DB đó và thực thi các lệnh trên chứ postgres không có apply global. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Em cảm ơn