Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Is it possible to store data in solr?


Asked by Emmaline Romero on Dec 12, 2021 FAQ



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.
Also Know,
The first exercise will ask you to start Solr, create a collection, index some basic documents, and then perform some searches. The second exercise works with a different set of data, and explores requesting facets with the dataset. The third exercise encourages you to begin to work with your own data and start a plan for your implementation.
Similarly, Data Import Request Handler Solr1.3 Most applications store data in relational databases or XML files and searching over such data is a common use-case. The DataImportHandler is a Solr contrib that provides a configuration driven way to import this data into Solr in both "full builds" and using incremental delta imports.
Indeed,
Most applications store data in relational databases or XML files and searching over such data is a common use-case. The DataImportHandler is a Solr contrib that provides a configuration driven way to import this data into Solr in both "full builds" and using incremental delta imports. Also see the DataImportHandlerFaq page.
In respect to this,
A Solr Collection is a group of shards/cores that form a single logical index. Each collection has its own set of configuration and schema definition, which can be different than other collections. To create or delete a collection, list available collections, and other management tasks, check out the Solr Collections API.