Apache::Session 1.88 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Apache::Session 1.88 (Default branch)
# 1  
Old 12-31-2008
Apache::Session 1.88 (Default branch)

Apache::Session is a persistence framework whose purpose is to provide session management to Web developers. It is designed to work with Apache and mod_perl, but it does not depend on them and will work with any Web server. This module provides a set of classes that give the developer maximum functionality. Session data can be stored in a database, flat files, or shared memory. License: Perl License Changes:
Apache::Session::Generate::MD5::validate will untaint data. MIN_PERL_VERSION is used in Makefile.PL. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Red Hat

Apache Load Balaning sticky session issue

Few doubts in apache load balancing - I want to clear my doubts about apache load balancing.i have configured apache load balancing for two application servers. 1. When we set load balancing for two application servers then for one connection to application server we will get one jsession id... (5 Replies)
Discussion started by: ganesh_gore
5 Replies
Login or Register to Ask a Question
Jifty::Web::Session::ApacheSession(3pm) 		User Contributed Perl Documentation		   Jifty::Web::Session::ApacheSession(3pm)

NAME
Jifty::Web::Session::ApacheSession - Jifty Sessions based on Apache::Session SYNOPSIS
In your etc/config.yml, using the Apache::Session::File backend: framework: Web: SessionClass: Jifty::Web::Session::ApacheSession SessionBackend: File SessionOptions: Directory: /tmp/sessions LockDirectory: /var/lock/sessions Or with Apache::Session::Memorycached backend: framework: Web: SessionClass: Jifty::Web::Session::ApacheSession SessionBackend: Memorycached SessionOptions: { servers: [ '127.0.0.1:11211' ] } new Returns a new, empty session handler, subclassing Jifty::Web::Session. id Returns the session's id if it has been loaded, or "undef" otherwise. create Creates a new session. load [ID] Load up the current session from the given "ID", or the appropriate cookie (see "cookie_name" in Jifty::Web::Session) otherwise. If both of those fail, creates a session in memory. get KEY [TYPE] See "get" in Jifty::Web::Session. set KEY => VALUE, [TYPE] See "set" in Jifty::Web::Session. remove KEY, [TYPE] See "remove" in Jifty::Web::Session. remove_all See "remove_all" in Jifty::Web::Session. continuations See "continuations" in Jifty::Web::Session. perl v5.14.2 2010-09-25 Jifty::Web::Session::ApacheSession(3pm)