0

I would like to know weather SOLR supports a NoSql Database or a Relational Database?

Thanks

Venkat
  • 73
  • 3
  • 12

1 Answers1

1

Solr internally uses Apache Lucene for indexing. Details about the index file structure is available in the docs here.

Technically this can be classified as a NoSQL store.

Srikanth Venugopalan
  • 9,011
  • 3
  • 36
  • 76
  • Thanks for the docs, appreciated. Is there any difference between Solr Segments and Lucene Segments. I think Solr internally uses Lucene's indexing and merging the segments. – Venkat Jul 07 '14 at 16:53
  • Sorry @Venkat - That is too much of an implementation detail for me, haven't bothered getting into that detail. You should try asking this on one of the Solr Mailing lists. – Srikanth Venugopalan Jul 08 '14 at 01:57