I have read that when using dictionaries in Postgres, if a word is not recognized by any dictionary it will not be indexed. I find that troublesome. I would like everything but the stop words to be indexed.
Can I do that? If so, how?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The documentation chapter about dictionaries says:
So dumping unrecognized words does not happen because of this last dictionary of the list.
And this is how the full text parser works out of the box, so you don’t have to worry about it unless you customize it.