For example:
dict_path=/your_path/my_dict.txt
/your_path/my_dict.txt
泸州
资阳
Words like ‘泸州’ and ‘资阳’ are names of Chinese cities, But the query for these words is not recognized as words
MySQL [(none)]> select id from wecom_customer where match('资阳')
MySQL [(none)]> show meta;
+----------------+------------------------------+
| Variable_name | Value |
+----------------+------------------------------+
| total | 6 |
| total_found | 6 |
| total_relation | eq |
| time | 0.002 |
| keyword[0] | 资 |
| docs[0] | 147 |
| hits[0] | 180 |
| keyword[1] | 阳 |
| docs[1] | 5360 |
| hits[1] | 7825 |
| index | corpid:SecondaryIndex (100%) |
+----------------+------------------------------+
11 rows in set (0.00 sec)
MySQL [(none)]> show create table wecom_customer;
CREATE TABLE wecom_customer (
id bigint,
province string indexed attribute,
city string indexed attribute,
...
deletetime timestamp
) charset_table='0..9, english, chinese' morphology='icu_chinese' stopwords='/home/sphinx/expo/wecom_customer/zh'
Is there a configuration option for manticore like this?