Spinx 搜索规范化单词
Spinx search normalized words
我正在使用 sphinxQL 测试关键字
call keywords ('azori', 'test', 1);
并得到结果
+------+-----------+------------+------+------+
| qpos | tokenized | normalized | docs | hits |
+------+-----------+------------+------+------+
| 1 | azori | a260 | 1550 | 1551 |
+------+-----------+------------+------+------+
1 row in set (0.00 sec)
a260
是什么意思?
这看起来像 soundex 表示
https://en.wikipedia.org/wiki/Soundex
似乎您在特定索引
上启用了morphology=soundex
我正在使用 sphinxQL 测试关键字
call keywords ('azori', 'test', 1);
并得到结果
+------+-----------+------------+------+------+
| qpos | tokenized | normalized | docs | hits |
+------+-----------+------------+------+------+
| 1 | azori | a260 | 1550 | 1551 |
+------+-----------+------------+------+------+
1 row in set (0.00 sec)
a260
是什么意思?
这看起来像 soundex 表示 https://en.wikipedia.org/wiki/Soundex
似乎您在特定索引
上启用了morphology=soundex