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::Browseable::PgHstore - Hstore type support for Apache::Session::Browseable::Postgres

Description

       Apache::Session::Browseable provides some class methods to manipulate all sessions and add the capability
       to index some fields to make research faster.

       Apache::Session::Browseable::PgHstore implements it for PosqtgreSQL databases using "hstore" extension to
       be able to browse sessions.

Name

       Apache::Session::Browseable::PgHstore - Hstore type support for Apache::Session::Browseable::Postgres

See Also

       <http://lemonldap-ng.org>, Apache::Session::Postgres

Synopsis

       Enable "hstore" extension in PostgreSQL database

         CREATE EXTENSION hstore;

       Create table:

         CREATE UNLOGGED TABLE sessions (
             id varchar(64) not null primary key,
             a_session hstore,
         );

       Optionally, add indexes on some fields. Example for Lemonldap::NG:

         CREATE INDEX uid1 ON sessions USING BTREE ( (a_session -> '_whatToTrace') );
         CREATE INDEX  s1  ON sessions ( (a_session -> '_session_kind') );
         CREATE INDEX  u1  ON sessions ( ( cast(a_session -> '_utime' AS bigint) ) );
         CREATE INDEX ip1  ON sessions USING BTREE ( (a_session -> 'ipAddr') );

       Use it like Apache::Session::Browseable::Postgres except that you don't need to declare indexes

See Also