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