sewenew / redis-plus-plus

Redis client written in C++
Apache License 2.0
1.64k stars 351 forks source link

Atomicity for a transaction in RedisCluster #326

Closed pranaysai27 closed 2 years ago

pranaysai27 commented 2 years ago

Does this support atomicity for a different redis commands for different nodes with transaction?

sewenew commented 2 years ago

No. Redis Cluster does not support transaction of commands on different nodes. All commands in transaction must be run on the same node.

Regards