redis-commander icon indicating copy to clipboard operation
redis-commander copied to clipboard

Can't use MULTI?

Open lukepighetti opened this issue 6 years ago • 1 comments

I feel like I must be missing something. I cannot use MULTI.

screen shot 2019-01-20 at 7 54 11 pm

lukepighetti avatar Jan 21 '19 00:01 lukepighetti

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

sseide avatar Jan 21 '19 09:01 sseide