Basically i am C# developer but in one of my project i need to implement the Lucene search.
In short it is a Chat application and i need to find the specific word used by any of the users
Now i am able to successfully integrate Lucene.Net in my project. Now my question is what the best ways to store text or create index.
Is it better to have
- one text field (lucene index) with 5000 words
- 500 fields (lucene index) with 10 words each in it
Sorry for if its a wrong terminology but i really dont know how to describe it in proper Lucene term.
Appreciate your time and feedback. Many thanks