Lucene as data store

后端 未结 3 917
萌比男神i
萌比男神i 2021-02-07 10:05

Is it possible to use Lucene as full fledged data store (like other(mongo,couch) nosql variants).

I know there are some limitations like newly updated documents by one

3条回答
  •  青春惊慌失措
    2021-02-07 10:54

    There is also the problem of durability. While a Lucene index should not get corrupted ever, I've seen it happen. And the approach Lucene takes to repairing a broken index is "throw it away and rebuild from the original data". Which makes perfect sense for an indexing tool. But it does require you to have the data stored somewhere else.

提交回复
热议问题