asp.net 的轻量级搜索引擎
我正在寻求开发一个基于 UMBRACO 的 CMS 项目,但我还需要对创建的文档进行索引并提供搜索功能,因此我想知道您是否对 .net 技术中可用的轻量级搜索引擎有任何建议。主要要求是简单高效(没有像 solr 或 sphinx 那样复杂)。
I'm looking to develop a CMS project based on UMBRACO but I also need to index the documents created and to offer search functionality therefore I would like to know if you have any suggestion for a lightweight search engine available in .net technology. The main requirement is to be simple and efficient (nothing complex like solr or sphinx ).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您只需要搜索在 umbraco 中创建的文档/节点,您可以使用 xsltsearch 吗?部署非常容易。
If you only need to search documents/nodes created in umbraco you can use xsltsearch perhaps? It's very easy to deploy.
查看 Lucene.net。
Have a look at Lucene.net.
http://xapian.org/
http://xapian.org/
看一下 System.Data.Sqlite,它是 Sqlite 的 ADO.Net 包装器。它是完全托管的,易于部署(一个 dll),并且包含内置的 Sqlite FT3 搜索,因此您可以使用 SQL 进行搜索。
http://sqlite.phxsoftware.com
http://www.sqlite.org/fts3.html
Take a look at System.Data.Sqlite, an ADO.Net wrapper around Sqlite. It's fully managed, simple to deploy (one dll), and includes the Sqlite FT3 search built-in, so you can use SQL to do the search.
http://sqlite.phxsoftware.com
http://www.sqlite.org/fts3.html