执行该查询后
select count(*) from tablename WHERE query=';';
该查询将返回计数为 20。但该表共有 771498 条记录。同时在 SHOW STATUS LIKE 'sphinx_%' 上执行;
它有这样的回报
+--------------------+--------+
| Variable_name | Value |
+--------------------+--------+
| sphinx_error | 5732 |
| sphinx_time | 837 |
| sphinx_total | 1000 |
| sphinx_total_found | 771498 |
| sphinx_word_count | 0 |
| sphinx_words | |
+--------------------+--------+
在这里我有疑问。
- 什么是 sphinx_error?
- sphinx_time 是什么?
- 什么是 sphinx_total?
- sphinx_total_found 是什么?
- sphinx_word_count 是什么?
- 什么是 sphinx_words?
这对我很有帮助。提前谢谢