# File lib/redis.rb, line 868
  def getset(key, value)
    synchronize do |client|
      client.call([:getset, key, value.to_s])
    end
  end