优化asp.net中的搜索引擎

发布于 2025-01-06 11:49:46 字数 133 浏览 0 评论 0原文

我有一项任务是根据 nopcommerce 模板优化 asp.net 电子商务商店中的搜索引擎。 我想听听我应该最关注什么来改进搜索引擎并提供更快的结果,因为当前的搜索引擎需要很长时间才能显示结果。 全文搜索也是要实施的选项之一。 提前致谢,拉齐亚莱

I have a task to optimize search engine in asp.net ecommerce store based on nopcommerce tempate.
I would like to hear on what should I pay most attention to improve the search engine and to deliver faster results, since current search engine is taking forever to display results.
Full Text Search is one of the options to be implemented too.
Thanks in advance, Laziale

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清引 2025-01-13 11:49:46
  1. 确保所有搜索查询都通过数据库
  2. 确保所有搜索字段都有适当的不确定性
  3. 根据需要返回最小信息(可能创建存储过程)
  4. 查看您的搜索查询,也许它们可以被重写为优化的
  5. 分析您的 .net 代码找到速度慢的地方并对其进行优化
  6. 缓存您的结果甚至 sql 查询
  7. 对于全文搜索,请查看 Lucene.NET
  1. Make sure that all search queries are thru database
  2. Make sure that all the search fields have the proper indecies
  3. Return as minimum info as needed (probably create stored procedures)
  4. Look at your search queries, perhaps they can be rewritten an optimized
  5. Profile your .net code and find the place where it slow and optimize it
  6. Cache your results or even sql queries
  7. For FULL TEXT SEARCH look at Lucene.NET
并安 2025-01-13 11:49:46

跳过 EF 并拥有自己的数据层,至少出于搜索优化的目的。

Skip the EF and have your own data layer, at least for the purpose of Search Optimization.

眼眸里的那抹悲凉 2025-01-13 11:49:46

我认为最好的方法是阅读 Google 提供的这份文档,它告诉您应该注意的最重要的调整是什么,我自己使用了它并且确实得到了很大的回报:

http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.com/en//webmasters/docs/search-engine-optimization-starter-guide.pdf

I think the best way will be reading this document provided by Google which tells you what are the most important tweaks you should pay attention to, i used it myself and was very rewarded indeed:

http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.com/en//webmasters/docs/search-engine-optimization-starter-guide.pdf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文