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
9 Note: this module is deprecated, Prefer Apache::Session::Browseable
10
12 use Apache::Session::NoSQL;
13 tie %hash, 'Apache::Session::NoSQL', $id, {
14 Driver => 'Cassandra',
15
16 # or
17
18 Driver => 'Redis',
19 # optional: default to 127.0.0.1:6379
20 server => '10.1.1.1:6379',
21 };
22
24 This module is an implementation of Apache::Session. It uses a NoSQL
25 database to store datas.
26
28 Thomas Chemineau, <thomas.chemineau@gmail.com> Xavier Guimard,
29 <x.guimard@free.fr>
30
32 Copyright (C) 2010 by Thomas Chemineau, Xavier Guimard
33
34 This library is free software; you can redistribute it and/or modify it
35 under the same terms as Perl itself, either Perl version 5.10.0 or, at
36 your option, any later version of Perl 5 you may have available.
37
39 Apache::Session
40
41
42
43perl v5.36.0 2023-01-26 Apache::Session::NoSQL(3)