photon/session-memcached

Memcached session backend.

v1.0.5 2016-06-08 12:00 UTC

This package is auto-updated.

Last update: 2024-04-10 18:53:37 UTC


README

Build Status

Memcached backend for session storage

Quick start

  1. Add the module in your project

    composer require "photon/session-memcached:dev-master"

or for a specific version

composer require "photon/session-memcached:1.0.0"
  1. Define a MongoDB connection in your project configuration

    'databases' => array( 'session-db' => array( 'engine' => '\photon\db\Memcached', 'host' => array('localhost:11211'), 'id' => 'myapp', ), ),

  2. Define the session storage backend in your project configuration, and some others session parameters

    'session_storage' => '\photon\session\storage\Memcached', 'session_cookie_domain' => 'www.example.com', 'session_cookie_path' => '/', 'session_timeout' => 4 * 3600,

  3. Define the configuration of the MongoDB Session module in your project configuration

    'session_memcached' => array( 'database' => 'session-db', ),

  4. Enjoy !