
Sledge::HTTPSession - HTTP::Session to Sledge bindings

package Your::Pages;
use Sledge::HTTPSession;
use HTTP::Session::State::Cookie;
use HTTP::Session::State::Store::Memcached;
use Cache::Memcached;
sub create_session_state {
HTTP::Session::State::Cookie->new();
}
sub create_session_store {
HTTP::Session::Store::Memcached->new(
memd => Cache::Memcached->new(
servers => ['127.0.0.1:11211']
)
);
}

Sledge::HTTPSession is HTTP::Session to Sledge bindings.

Tokuhiro Matsuno <tokuhirom@gmail.com>


This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.