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