2017 © Pedro Peláez
 

library memcached-sasl

Custom cache extension of memcached sasl for laravel5, support aliyun ocs.

image

ripples/memcached-sasl

Custom cache extension of memcached sasl for laravel5, support aliyun ocs.

  • Thursday, October 8, 2015
  • by Ripples
  • Repository
  • 1 Watchers
  • 2 Stars
  • 40 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Memcached SASL extension for Laravel5

This is a custom cache extension of memcached sasl for laravel5, especially for aliyun ocs., (*1)

Installation

This package can be installed through composer., (*2)

composer require ripples/memcached-sasl

Usage

In order to use the extension, the service provider must be registered., (*3)

// 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., (*4)

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', '')
            ]
        ],
    ]
]

LICENSE

MIT, (*5)

The Versions

08/10 2015

dev-master

9999999-dev https://github.com/JayvicWen/Memcached-sasl

Custom cache extension of memcached sasl for laravel5, support aliyun ocs.

  Sources   Download

MIT

The Requires

 

by Avatar Ripples

laravel memcached aliyun sasl ocs

08/10 2015

0.1.1

0.1.1.0 https://github.com/JayvicWen/Memcached-sasl

Custom cache extension of memcached sasl for laravel5, support aliyun ocs.

  Sources   Download

MIT

The Requires

 

by Avatar Ripples

laravel memcached aliyun sasl ocs

23/08 2015

0.1.0

0.1.0.0 https://github.com/JayvicWen/Memcached-sasl

Custom cache extension of memcached sasl for laravel5, support aliyun ocs.

  Sources   Download

The Requires

 

by Avatar Ripples

laravel memcached aliyun sasl ocs