Postgres 9.1 のストップワードのリスト

Postgres 9.1 のストップワードのリスト

全文検索を行う際に 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

関連情報