# File lib/redis.rb, line 312
  def expireat(key, unix_time)
    synchronize do |client|
      client.call([:expireat, key, unix_time], &_boolify)
    end
  end