logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Apache::Session::MongoDB - An implementation of Apache::Session

Author

       Xavier Guimard, <x.guimard@free.fr>

Description

       This module is an implementation of Apache::Session. It uses the MongoDB backing store and no locking.

Name

       Apache::Session::MongoDB - An implementation of Apache::Session

See Also

       Apache::Session::MongoDB, Apache::Session

Synopsis

        use Apache::Session::MondoDB;

        # Using localhost server
        tie %hash, 'Apache::Session::MongoDB', $id, {};

        # Example with default values
        tie %hash, 'Apache::Session::MongoDB', $id, {
           host       => 'locahost:27017',
           db_name    => 'sessions',
           collection => 'sessions',
        };

See Also