ripples / memcached-sasl
Custom cache extension of memcached sasl for laravel5, support aliyun ocs.
0.1.1
2015-10-08 07:45 UTC
Requires
- php: >=5.4.0
- illuminate/support: 5.0.*|5.1.*
This package is not auto-updated.
Last update: 2024-11-09 16:37:39 UTC
README
This is a custom cache extension of memcached sasl for laravel5, especially for aliyun ocs.
Installation
This package can be installed through composer
.
composer require ripples/memcached-sasl
Usage
In order to use the extension, the service provider must be registered.
// bootstrap/app.php $app->register(Ripples\Memcached\MemcachedSaslServiceProvider::class);
Finally, add a store to you config file cache.php
and update cache driver to memcached_sasl
.
return [ 'default' => 'memcached_sasl', 'stores' => [ 'memcached_sasl' => [ 'driver' => 'memcached_sasl', 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 'port' => env('MEMCACHED_PORT', 11211), 'weight' => 100 ] ], 'auth' => [ 'username' => env('MEMCACHED_USERNAME', ''), 'password' => env('MEMCACHED_PASSWORD', '') ] ], ] ]