/usr/share/perl5/Apache/Session/Browseable.pm is in libapache-session-browseable-perl 1.2.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | package Apache::Session::Browseable;
our $VERSION = '1.2.8';
print STDERR "Use a sub module of Apache::Session::Browseable such as Apache::Session::Browseable::File";
1;
__END__
=head1 NAME
Apache::Session::Browseable - Add index and search methods to Apache::Session
=head1 DESCRIPTION
Apache::Session::browseable provides some class methods to manipulate all
sessions and add the capability to index some fields to make research faster.
It has been written to increase performances of LemonLDAP::NG. Read the
chosen module documentation carefully to set the indexes.
=head1 AVAILABLE MODULES
=head2 SQL databases
=head3 PostgreSQL
=over
=item L<Apache::Session::Browseable::Postgres>
=item L<Apache::Session::Browseable::PgHstore>: uses "hstore" field
=item L<Apache::Session::Browseable::PjJSON>: uses "json/jsonb" field
=back
=head3 MySQL or MariaDB
=over
=item L<Apache::Session::Browseable::MySQL>: for MySQL and MariaDB
=item L<Apache::Session::Browseable::MySQLJSON>: for MySQL only, uses "json" field
=back
=head3 Other
=over
=item L<Apache::Session::Browseable::Informix>
=item L<Apache::Session::Browseable::Oracle>
=item L<Apache::Session::Browseable::SQLite>
=back
=head2 NoSQL
=over
=item L<Apache::Session::Browseable::Redis>
=back
=head1 SEE ALSO
L<Apache::Session>, L<http://lemonldap-ng.org>,
L<https://lemonldap-ng.org/documentation/2.0/performances#performance_test>
=head1 AUTHOR
Xavier Guimard, E<lt>x.guimard@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
=encoding utf8
Copyright (C):
=over
=item 2009-2017 by Xavier Guimard
=item 2013-2017 by Clément Oudot
=back
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.1 or,
at your option, any later version of Perl 5 you may have available.
=cut
|