apollopy/laravel-memcached

This package is abandoned and no longer maintained. No replacement package was suggested.

Memcached for Laravel 5.1, with persistent connection and sasl authentication support, compatible with aliyun osc.

1.3.0 2017-04-26 07:23 UTC

This package is auto-updated.

Last update: 2020-01-29 03:13:16 UTC


README

Memcached for Laravel, with persistent connection and sasl authentication support, compatible with aliyun osc.

Installation

This service provider must be replace.

// config/app.php

'providers' => [
    // Illuminate\Cache\CacheServiceProvider::class,
    ApolloPY\Memcached\CacheServiceProvider::class,
]

edit the cache config

// config/cache.php

'memcached' => [
    'driver'  => 'memcached',
    'servers' => [
        [
            'host' => '127.0.0.1',
            'port' => 11211,
            'weight' => 100,
        ],
    ],
    'persistent_id' => 'you persistent id',
    'username' => 'you username',
    'password' => 'you password',
    'options'       => [ // optional
        Memcached::OPT_COMPRESSION     => false,
        Memcached::OPT_BINARY_PROTOCOL => true,
        ...
    ],
    'check_version' => false, // optional, default true
],