# File lib/redis.rb, line 632
  def psetex(key, ttl, value)
    synchronize do |client|
      client.call([:psetex, key, ttl, value])
    end
  end