If I need using small index of few sites, can I store data in solr without using any database?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Solr probably is not meant to be a DB but as a full text search solution.
It is possible to store data in Solr.
You can mark your fields as stored=true and the information would be maintained in Solr.
Solr would store the data on the file system and any issues with the file system or Solr index can lead to loss of data.
The approach mainly followed is to have the Data in DB as a persistent store and have the data indexed in Solr for faster searches.
Edit :-
If you are indexing Web Site data, then you need not store the data in a DB.
Solr with Nutch Integration can help you achieve it.