class Redis

def linsert(key, where, pivot, value)

Insert an element before or after another element in a list.
def linsert(key, where, pivot, value)
  synchronize do
    @client.call(:linsert, key, where, pivot, value)
  end
end