atyagi / elasticache-laravel
Elasticache Drivers for Laravel Cache and Session
Installs: 306 334
Dependents: 0
Suggesters: 0
Security: 0
Stars: 25
Watchers: 3
Forks: 10
Open Issues: 3
Requires
- php: >=5.4.0
- illuminate/contracts: 5.*
- illuminate/support: 5.*
Requires (Dev)
- mockery/mockery: dev-master
- phpunit/phpunit: 4.6.*
- satooshi/php-coveralls: dev-master
Suggests
- ext-memcached: Leverage the Memcached extension for Elasticache connections.
README
AWS Elasticache Session and Cache Drivers for Laravel (Memcached specifically)
Setup
This package requires the memcached extension for PHP. Please see this link for installation instructions.
With composer, simply add "atyagi/elasticache-laravel": "~2.1"
to your composer.json. (or "atyagi/elasticache-laravel": "~1.1"
for Laravel 4 installations)
Once composer update
is ran, add
'Atyagi\Elasticache\ElasticacheServiceProvider',
to the providers array in app/config.php
.
At this point, inside of app/session.php
and app/cache.php
, you can use elasticache
as a valid driver.
Versions
- 2.* represents all versions for Laravel 5
- 1.* represents all versions for Laravel 4
Configuration
All configuration lives within app/session.php
and app/cache.php
. The key ones are below:
session.php
- lifetime -- the session lifetime within the Memcached environment
- cookie -- this is the prefix for the session ID to prevent clashing
cache.php
Note: for Laravel 5, make sure to add this info to the stores array as follows:
'stores' => [ ... 'memcached' => [ 'driver' => 'memcached', 'servers' => [ [ 'host' => '<YOUR HOST>', 'port' => '<YOUR_PORT>', 'weight' => '<YOUR_WEIGHT>' ] ] ] ... ]