Using scripting doesn't help, because the script must be run on the
same Redis as all of the keys it is accessing.
You would have to implement it by hand outside of Redis.
Regards,
- Josiah
> --
> You received this message because you are subscribed to the Google Groups
> "Redis DB" group.
> To post to this group, send email to redi...@googlegroups.com.
> To unsubscribe from this group, send email to
> redis-db+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/redis-db?hl=en.
- Josiah
MULTI/EXEC have never claimed to improve performance in the single
machine case. You may be confusing it with "pipelining",
http://redis.io/topics/pipelining , where many clients have MULTI/EXEC
transactions use pipelining. But you can usually use pipelining
without MULTI/EXEC, but again, a pipeline only makes sense against a
single Redis instance. You can have pipelines against multiple Redis
instances, but I'm don't believe existing clients support that, and I
don't believe that they will support that.
Regards,
- Josiah