redis-commander
redis-commander copied to clipboard
Can't use MULTI?
I feel like I must be missing something. I cannot use MULTI.
not really checked in depth, but i'd say its not implemented right now.
Using MULTI needs special handling on ioredis side (https://github.com/luin/ioredis#transaction).
Current RedisCommander takes all commands and sends them to server without special handling.
https://github.com/joeferner/redis-commander/blob/3806eba1485893dcc3280d5b70b7653f5cadc2b0/lib/routes/apiv1.js#L215-L232
Therefor the MULTI command is executed without needed {pipeline:false} parameter currently. No pipeline started, no EXEC valid...