I have got indexes created on tables having data of the form: indexname='text'---->Today is a great day for running in the park. Now i want to perform a search on the indexes where only 'day' or 'run' is appearing in the text.
I have implemented query like : q = 'text:(day or run*)' But this query is not returning me any results from indexes.Is this correct way?or how can i improve my query by applying regex ?