hello:
There is a problem in my use: can't query with chinese.
redis-5.0.7
create index :
FT.CREATE myIdx SCHEMA title TEXT body TEXT
add document to the index:
ft.add myIdx doc15 1 LANGUAGE chinese FIELDS title "中国" body "china-15 is a powerful 国家"
ft.add myIdx doc16 1 LANGUAGE chinese FIELDS title "中国" body "中国是国家大国"
when i execuitve command:
ft.search myIdx '中国' language chinese
or
ft.search myIdx '@body:中国' language chinese
all return the same result:
in the case, what shall i do?
(My English is very poor, I hope you can understand my problem)