Can a lua script, that is run on one node, get keys from another node in Redis cluster
Example
Node A
- key1 val1
- key2 val2
Node B
- key3 val3
Script
return redis.call('get', 'key1') + redis.call('get', 'key2')
Furthermore are there any attempts to support map-reduce in redis-cluster?