Any thoughts on how to test the lua code?
I mostly use redis-cli --eval as described here: redis.io/topics/rediscli#running-l.... You can even use a --ldb flag for debugging: redis.io/topics/ldb.
redis-cli --eval
--ldb
I also found redis-cli monitor can also be quite helpful to make sure the EVAL commands you are executing are properly formed.
redis-cli monitor
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Any thoughts on how to test the lua code?
I mostly use
redis-cli --evalas described here: redis.io/topics/rediscli#running-l.... You can even use a--ldbflag for debugging: redis.io/topics/ldb.I also found
redis-cli monitorcan also be quite helpful to make sure the EVAL commands you are executing are properly formed.