I want to use Lucene.net to index data from various sources (e.g. the local file system and a database). However, I'd like to link data from the two sources (based on a common field, such as an ID) and display the combined information to the user. As far as I can tell, I have three options. After indexing each source:
- Use Lucene.net to combine the indexes in a search query into a single result set
- Create some custom code to correlate results retrospectively; or
- Store separate result sets in a database (in my case, it won't be the same database as the source). Then create a new index based on a query that joins the data
Option 1 is what I'd like to do, but I'm not sure how viable this is with Lucene for a couple of reasons:
- Lucene isn't a relational database, is this attempting something that Lucene is not really designed to do?
- Can combining indexes result in a noticeable performance hit?
The only reason I'd go for Option 2 is if I believe I can create an algorithm that is more efficient than Option 1. Following that line of logic, I then have to question if I should be using Lucene at all to correlate the data.
Which leads me onto Option 3. I'm happy that it will work, but it seems like a compromise:
- Data will be stored in a database as well as Lucene (as well as the original source)
- By introducing an extra step, it'll take longer to complete the process. I'm not sure how this will affect the user experience
Any suggestions?