PHP code example of db1-fpp / laravel-elasticache
1. Go to this page and download the library: Download db1-fpp/laravel-elasticache library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
db1-fpp / laravel-elasticache example snippets
Db1Fpp\Providers\ElastiCacheServiceProvider::class
$app->register(Db1Fpp\Providers\ElastiCacheLumenServiceProvider::class);
// config/cache.php
[
//... others cache config
'elasticache' => [
'default' => [
'mode' => env('MEMCACHED_CACHE_MODE', 'dynamic'),
'nodes' => [
[
'host' => env('MEMCACHED_CACHE_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_CACHE_PORT', 11211),
'weight' => env('MEMCACHED_CACHE_WEIGHT', 100)
]
]
],
'sessions' => [
'mode' => env('MEMCACHED_SESSION_MODE', 'dynamic'),
'nodes' => [
[
'host' => env('MEMCACHED_SESSION_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_SESSION_PORT', 11211),
'weight' => env('MEMCACHED_SESSION_WEIGHT', 100)
]
]
]
]
]
/*
* config/cache.php
*
* Other stores before here...
*/
'elasticache' => [
'driver' => 'elasticache'
'connection' => 'default'
]
/*
* config/session.php
*/
'driver' => 'elasticache'
// ...other sessions configs here
'elasticache_connection' => 'sessions'