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