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

   Number tags are not supported by Kvrocks.
   
   - 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 "-3.1415926"
   (integer) 1
   127.0.0.1:6379> FT.SEARCH testidx1 '@a:{-3.1415926}'
   1) (integer) 1
   2) "test1:k1"
   3) 1) "a"
      2) "-3.1415926"
   ```
   
   - 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 "-3.1415926"
   (integer) 1
   127.0.0.1:6666> FT.SEARCH testidx1 '@a:{-3.1415926}'
   (error) ERR invalid syntax
   ```


-- 
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