The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

    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']
            )
        );
    }

DESCRIPTION

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

AUTHOR

Tokuhiro Matsuno <tokuhirom@gmail.com>

SEE ALSO

Sledge, HTTP::Session

LICENSE

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