1Apache::Session::NoSQL(U3s)er Contributed Perl DocumentatAipoanche::Session::NoSQL(3)
2
3
4
6 Apache::Session::NoSQL - An implementation of Apache::Session module
7 for NoSQL databases
8
10 use Apache::Session::NoSQL;
11 tie %hash, 'Apache::Session::NoSQL', $id, {
12 Driver => 'Cassandra',
13
14 # or
15
16 Driver => 'Redis',
17 # optional: default to 127.0.0.1:6379
18 server => '10.1.1.1:6379',
19 };
20
22 This module is an implementation of Apache::Session. It uses a NoSQL
23 database to store datas.
24
26 Thomas Chemineau, <thomas.chemineau@gmail.com> Xavier Guimard,
27 <x.guimard@free.fr>
28
30 Copyright (C) 2010 by Thomas Chemineau, Xavier Guimard
31
32 This library is free software; you can redistribute it and/or modify it
33 under the same terms as Perl itself, either Perl version 5.10.0 or, at
34 your option, any later version of Perl 5 you may have available.
35
37 Apache::Session
38
39
40
41perl v5.32.1 2021-01-26 Apache::Session::NoSQL(3)