class Redis::Distributed

def bitop(operation, destkey, *keys)

Perform a bitwise operation between strings and store the resulting string in a key.
def bitop(operation, destkey, *keys)
  ensure_same_node(:bitop, [destkey] + keys) do |node|
    node.bitop(operation, destkey, *keys)
  end
end