class Redis::Cluster

def send_memory_command(command, &block)

def send_memory_command(command, &block)
  case command[1].to_s.downcase
  when 'stats' then @node.call_all(command, &block)
  when 'purge' then @node.call_all(command, &block).first
  else assign_node(command).call(command, &block)
  end
end