Memcached-based session backend for dancer
version 0.202
This module implements a session engine based on the Memcache \s-1API\s0. Session are stored as memcache objects via a list of Memcached servers.
The setting session should be set to \*(C`memcached\*(C' in order to use this session engine in a Dancer application.
A mandatory setting is needed as well: \*(C`memcached_servers\*(C', which should contain a comma-separated list of reachable memecached servers (can be either address:port or sockets).
Here is an example configuration that uses this session engine
session: "memcached" memcached_servers: "10.0.1.31:11211,10.0.1.32:11211,10.0.1.33:11211,/var/sock/memcached"
This module depends on Cache::Memcached.
See Dancer::Session for details about session usage in route handlers.
Alexis Sukrieh <[email protected]>
This software is copyright (c) 2011 by Alexis Sukrieh.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.