Hi All,
My domain object is pretty simple, only have 20 properties(columns, or fields, whatever you call it) and does not have complex relationship. I need to index 5 of them for full text search and 3 need for sort. There might be 100,000 records.
To keep my application simple, I'm thinking store all fields in Lucene index file to avoid introducing database. Will there be performance problem for this implementation?
Thanks.