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