DB\Mongo\Session::cleanup PHP Method

cleanup() public method

Garbage collector
public cleanup ( $max ) : TRUE
$max int
return TRUE
    function cleanup($max)
    {
        $this->erase(['$where' => 'this.stamp+' . $max . '<' . time()]);
        return TRUE;
    }