zhenghaoz opened a new pull request, #3118:
URL: https://github.com/apache/kvrocks/pull/3118

   - RediSearch:
   ```
   127.0.0.1:6379> FT.CREATE testidx1 ON HASH PREFIX 1 test1: SCHEMA a TAG
   OK
   127.0.0.1:6379> HSET test1:k1 a "Aa"
   (integer) 1
   127.0.0.1:6379> HSET test1:k2 a "Ab"
   (integer) 1
   127.0.0.1:6379> FT.SEARCH testidx1 '@a:{Ab}'
   1) (integer) 1
   2) "test1:k2"
   3) 1) "a"
      2) "Ab"
   ```
   - Kvrocks:
   ```
   127.0.0.1:6666> FT.CREATE testidx1 ON HASH PREFIX 1 test1: SCHEMA a TAG
   OK
   127.0.0.1:6666> HSET test1:k1 a "Aa"
   (integer) 1
   127.0.0.1:6666> HSET test1:k2 a "Ab"
   (integer) 1
   127.0.0.1:6666> FT.SEARCH testidx1 '@a:{Ab}'
   1) (integer) 0
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to