# File lib/redis.rb, line 1121
  def lset(key, index, value)
    synchronize do |client|
      client.call([:lset, key, index, value])
    end
  end