class Redis

def lpushx(key, value)

Prepend a value to a list, only if the list exists.
def lpushx(key, value)
  synchronize do
    @client.call(:lpushx, key, value)
  end
end