NoSQL (MongoDB) vs Lucene (or Solr) as your database

前端 未结 10 1957
春和景丽
春和景丽 2020-11-28 17:05

With the NoSQL movement growing based on document-based databases, I\'ve looked at MongoDB lately. I have noticed a striking similarity with how to treat items as \"Documen

10条回答
  •  旧巷少年郎
    2020-11-28 17:30

    Since no one else mentioned it, let me add that MongoDB is schema-less, whereas Solr enforces a schema. So, if the fields of your documents are likely to change, that's one reason to choose MongoDB over Solr.

提交回复
热议问题