Postgres 9.1의 StopWord 목록

Postgres 9.1의 StopWord 목록

전체 텍스트 검색을 수행할 때 Postgres가 사용하는 중지 단어(무시 단어) 목록은 무엇입니까? 쿼리 등을 실행하여 이를 확인할 수 있는 방법이 있습니까?

제가 무엇을 찾고 있는지 아시나요? 여기 MySQL에서 가져온 목록이 있습니다. Postgres도 비슷한 것 같아요http://dev.mysql.com/doc/refman/5.5/en/fulltext-stopwords.html

답변1

보다:http://www.postgresql.org/docs/9.1/static/textsearch-dictionaries.html#TEXTSEARCH-STOPWORDS

영어 사전의 불용어 위치는 다음 $SHAREDIR/tsearch_data/english.stop과 같습니다. 예:/usr/share/postgresql/9.1/tsearch_data/english.stop

답변2

MacOS의 Homebrew 사용자의 경우 여기에서 Postgres StopWord 파일을 찾을 수 있습니다.

ls /usr/local/Cellar/postgresql/<%version%>/share/postgresql/tsearch_data

또는 Github에서 최신 목록을 확인할 수 있습니다.

https://github.com/postgres/postgres/tree/master/src/backend/snowball/stopwords

관련 정보