Excuse me,I have technical questions to ask。When I need to execute the following command, set test1 a set test2 b set test3 c set test4 d I have to excute One by one,is there any way to batch execute in code?(Because it is possible that the implementation of the first and second items is successful, redis is down)

Comment From: itamarhaber

Hello @We1less1111,

I'm sorry, but I'm not sure that I understand your question fully - perhaps you'd want to learn about Redis transactions.

Please keep in mind that this issue tracker should be used for reporting bugs or proposing improvements to the Redis server. Questions should be directed to the community:

This issue will now be closed, but feel free to reopen if needed.

Comment From: mrpre

I think you want merge all those commands into one and mset is the right way. MSET test1 a test2 b test3 c

Comment From: madolson

This looks solved.