字符串无法搜索到 (String cannot be found)
无法被搜索到 Query other = new Query("ba50c2e4-176b-4979-b700-70060f26b45e").limitFields("typeId"); SearchResult result = client.search(other); 能被搜索到 Query other = new Query("ba50c2e4").limitFields("typeId"); SearchResult result = client.search(other); 猜测“-”这个符号的问题无法被搜索到数据
Cannot be found
Query other = new Query ("ba50c2e4-176b-4979-b700-70060f26b45e"). LimitFields ("typeId");
SearchResult result = client.search (other);
Can be searched
Query other = new Query ("ba50c2e4"). LimitFields ("typeId");
SearchResult result = client.search (other);
The problem of guessing the symbol "-" cannot be searched for data
@csx-java sorry for taking so long to return to you, I somehow missed the issue. It seems like an issue that is not related to the client but more on the server side. You might want to consider opening an issue here https://github.com/RediSearch/redisearch/issues
Also, can you please add the RediSearch version you used and some sample data to recreate the issue?