NoSQL 系统中类似分面的功能
有谁知道/有人可以指出一个 nosql 数据库,它支持分面,就像在 Apache SOLR 中一样,是现成的吗?
我读过,在 Sphinx 中,他们不支持开箱即用的分面搜索,但可以以插件的形式实现它。
更新:我只对企业级系统感兴趣。
Does anyone know / can someone point to an nosql db, which would support faceting, like in Apache SOLR, off the shelf?
I have read, that in Sphinx they don't support facet search out of the box, but one can implement it in a form of plugin.
Upd: I'm only interested in enterprise level systems.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CouchDB (Eearlang) 和 RavenDB (.NET) 都基于 Lucene,因此应该可以让它们都支持 Faceted Search。 RavenDB 已经部分支持了。
Sphinx 不是 NoSQL 数据库。
CouchDB (Eearlang) and RavenDB (.NET) both are based on Lucene, so it should be possible to make them both support Faceted Search. RavenDB already partially supports that.
And Sphinx isn't a NoSQL DB.
事实证明,狮身人面像确实具有多面搜索功能。它具有与 Apache SOLR/Lucene 中的“语言”管道、分布式搜索、标记化等类似的功能。从某种意义上说,它是 Apache SOLR 的一个有趣的选择,因为它是用 C++ 编写的,但在客户端与语言无关,与 SOLR 相同。它是 SOLR/Lucene 等操作系统,因此可以定制代码。
Turnes out, that sphinx does have facetted search feature. It has similar features of a "linguistic" pipeline, distributed search, tokenization etc as the ones in Apache SOLR/Lucene. It is an interesting option to Apache SOLR in the sense, that it is written in C++, yet is language independent on client side, same way as SOLR. It is OS as SOLR/Lucene, so customizing code is possible.