Recently i stared working on solr. I have created index in solr and i want to query on it through my java application. I don't want to use solr.war in my application. How can i use it through solrj api or lucene java api? My thinking is to add those index in project context and use it. I gone through some examples/tutorials but did not find any on how to work with already created index. Please tell me a proper solution for it or any link specifying the solution will be appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use Lucene apis to create/update and search on an index. Example for searching over an solr/lucene index -
Should be able to find examples on this. |
|||||||
|
|
Yes, you can use a Solr-created index with Lucene, there's nothing particular about it because Solr itself uses Lucene. So all Lucene documentation applies unchanged. Or if you don't want to use Solr as a server you can use it embedded in your Java application. |
|||
|
|
|
I made it this way..
|
|||
|
|