Changeset 22012

Show
Ignore:
Timestamp:
10/24/08 08:44:57 (5 years ago)
Author:
tokuhirom
Message:

better documentation

Location:
lang/perl/HTTP-Session/trunk/lib/HTTP/Session
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/HTTP-Session/trunk/lib/HTTP/Session/State/MobileAttributeID.pm

    r21940 r22012  
    5858 
    5959    HTTP::Session->new( 
    60         state => HTTP::Session::State::MobileAttributeID->new(), 
     60        state => HTTP::Session::State::MobileAttributeID->new( 
     61            mobile_attribute => HTTP::MobileAttribute->new($r), 
     62        ), 
    6163        store => ..., 
    6264        request => ..., 
  • lang/perl/HTTP-Session/trunk/lib/HTTP/Session/Store/Memcached.pm

    r21839 r22012  
    4949 
    5050    HTTP::Session->new( 
    51         store => HTTP::Session::Store::Memcached->new(), 
     51        store => HTTP::Session::Store::Memcached->new( 
     52            memd => Cache::Memcached->new(servers => ['127.0.0.1:11211']), 
     53        ), 
    5254        state => ..., 
    5355        request => ..., 
  • lang/perl/HTTP-Session/trunk/lib/HTTP/Session/Store/Test.pm

    r22011 r22012  
    3939=head1 NAME 
    4040 
    41 HTTP::Session::Store::Test - store session data on memory for debugging 
     41HTTP::Session::Store::Test - store session data on memory for testing 
    4242 
    4343=head1 SYNOPSIS 
     
    5555=head1 DESCRIPTION 
    5656 
    57 store session data on memory 
     57store session data on memory for testing 
    5858 
    5959=head1 CONFIGURATION