使用 .net api 为电子商务网站提供开源分面搜索/引导导航
我正在寻找为电子商务网站提供高性能分面搜索/引导导航的开源库,
我们的电子商务平台完全基于 .net 构建,因此我更喜欢提供 .net api 的库,
性能在这里至关重要......我检查了 sphinx 和 solr,但就性能而言正在寻找更好的选择
sphinx 平均需要 5 - 6 秒来执行第一级分面搜索,这在真实的电子商务环境中是不可接受的
i am looking for open source libraries which provide high performance faceted search / guided navigation for ecommerce sites
our ecommerce platform is entirely built on .net and so i would prefer libraries which do provide .net apis
performance is of utmost importance here... i checked out sphinx as well as solr but looking for better options as far as performance goes
as per blogs sphinx takes an average of 5 - 6 seconds to perform the first level of faceted search which is unacceptable in a real ecommerce environment
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apache Solr 正是您所寻找的。
是一个使用 Lucene 库构建的成熟搜索服务器,并且可以轻松集成到您的 .NET 应用程序中,因为它具有 RESTful API。开箱即用,具有多种功能,例如分面、缓存、缩放、拼写检查等。
您可以使用出色的 SolrNet 库。
Apache Solr is exactly what you are looking for.
Is a full-fledged search server built using Lucene libs and easily integrable into your .NET application because it has a RESTful API. Comes out-of-the-box with several features such as faceting, caching, scaling, spell-checking, etc.
You can make life easier for your app-to-Solr interaction using the excellent SolrNet library.
看看 lucene.net,它是一个非常强大的搜索引擎,可以针对大多数搜索相关需求进行定制:
http://incubator.apache.org/lucene.net/
Have a look at lucene.net it is a very powerful search engine that can be customised for most search related requirements:
http://incubator.apache.org/lucene.net/