# File lib/redis.rb, line 1035
  def linsert(key, where, pivot, value)
    synchronize do |client|
      client.call [:linsert, key, where, pivot, value]
    end
  end