The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Apache::Session::NoSQL - An implementation of Apache::Session module for NoSQL databases

Note: this module is deprecated, Prefer Apache::Session::Browseable

SYNOPSIS

use Apache::Session::NoSQL;
tie %hash, 'Apache::Session::NoSQL', $id, {
  Driver => 'Cassandra',
  
  # or
  
  Driver => 'Redis',
  # optional: default to 127.0.0.1:6379
  server => '10.1.1.1:6379',
};

DESCRIPTION

This module is an implementation of Apache::Session. It uses a NoSQL database to store datas.

AUTHOR

Thomas Chemineau, <thomas.chemineau@gmail.com> Xavier Guimard, <x.guimard@free.fr>

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Thomas Chemineau, Xavier Guimard

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.0 or, at your option, any later version of Perl 5 you may have available.

SEE ALSO

Apache::Session