zhixinwen commented on PR #3047:
URL: https://github.com/apache/kvrocks/pull/3047#issuecomment-3049710780
When I tried to test it in script I get an error:
```
redis-cli -p 6666 EVAL "redis.call('SET', 'k1', 'v1'); return
redis.call('WAIT', 1)" 0
(error) ERR running script (call to
f_da109245b6e0086adfc0257445aaf319121fe5b8):
```
When I tried to use MULTI, I find the whole queue seems to be messed up, for
example, I do not expect QUEUED for EXEC:
```
127.0.0.1:6666> MULTI
QUEUED
127.0.0.1:6666(TX)> SET k1 v1
(empty array)
127.0.0.1:6666(TX)> WAIT 3
OK
127.0.0.1:6666(TX)> EXEC
QUEUED
```
I am marking the cmd not ready for script/multi for now.
--
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]