没有索引的Solr全文搜索?

时间:2022-09-01 22:21:22

Does solr search index content independently, or use the full-text index in the mysql table, because I have got a 22K record table that I want to enable full-text search on it, but I currently I don't have a full-text index on the table, and I can't apply it because it takes too much time, and cpu usage that the server can't handle.

solr是否独立搜索索引内容,或者使用mysql表中的全文索引,因为我有一个22K记录表,我想在其上启用全文搜索,但我目前还没有完整的表上的文本索引,我不能应用它,因为它需要太多时间,以及服务器无法处理的CPU使用率。

if not is there any alternative that I can use to search full-text search without having the index full-text in my table?

如果没有,我可以使用任何替代方法搜索全文搜索而不在我的表中使用索引全文?

1 个解决方案

#1


3  

Solr is absolutely unaware of your backend storage and therefor it doesn't care if your tables have a full-text index (or which DBMS if any you are using)

Solr绝对不知道你的后端存储,因此你不关心你的表是否有全文索引(或者你使用哪个DBMS)

#1


3  

Solr is absolutely unaware of your backend storage and therefor it doesn't care if your tables have a full-text index (or which DBMS if any you are using)

Solr绝对不知道你的后端存储,因此你不关心你的表是否有全文索引(或者你使用哪个DBMS)