Jamm\Memory\RedisServer::LInsert PHP Method

LInsert() public method

public LInsert ( $key, $after = true, $pivot, $value )
    public function LInsert($key, $after = true, $pivot, $value)
    {
        if ($after) {
            $position = self::Position_AFTER;
        } else {
            $position = self::Position_BEFORE;
        }
        return $this->_send(array('LInsert', $key, $position, $pivot, $value));
    }