Jamm\Memory\RedisServer::LPush PHP Method

LPush() public method

public LPush ( $key, $value )
    public function LPush($key, $value)
    {
        if (!is_array($value)) {
            $value = func_get_args();
        } else {
            array_unshift($value, $key);
        }
        return $this->__call('lpush', $value);
    }