# File lib/redis.rb, line 277
  def time
    synchronize do |client|
      client.call [:time] do |reply|
        reply.map(&:to_i) if reply
      end
    end
  end