数据库
首页 > 数据库> > mysql – 在选择最佳搜索引擎时感到困惑

mysql – 在选择最佳搜索引擎时感到困惑

作者:互联网

目前我正在使用定制的Java搜索引擎.此Java引擎使用Lucene索引MySql记录.搜索引擎有几个问题:

1-搜索结果不准确.

2-它不使用加权算法来使最匹配的结果在顶部.

3-它耗费了大量的内存.

4-由于各种原因,很难维护.

所以我需要做的是使用现成的搜索引擎,无论是商业还是开源,都可以顺利地与我的系统集成并解决我的问题(尽可能多).

你能不能给我选择,在哪里看看.

谢谢,
Wa’el

解决方法:

Solr

Solr is the popular, blazing fast open source enterprise search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, and rich document (e.g., Word, PDF) handling. Solr is highly scalable, providing distributed search and index replication, and it powers the search and navigation features of many of the world’s largest internet sites.

请注意,您的许多问题可能是由于配置错误或查询错误,而不是lucene不好.

标签:mysql,lucene,full-text-search,search-engine
来源: https://codeday.me/bug/20190726/1544928.html