2017 © Pedro Peláez
 

library laravel-memcached

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

image

apollopy/laravel-memcached

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

  • Tuesday, May 2, 2017
  • by apollopy
  • Repository
  • 1 Watchers
  • 3 Stars
  • 344 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 7 % Grown

The README.md

laravel-memcached

Memcached for Laravel, with persistent connection and sasl authentication support, compatible with aliyun osc., (*1)

Installation

This service provider must be replace., (*2)

// config/app.php

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

edit the cache config, (*3)

// 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
],

The Versions

02/05 2017

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

 

by Avatar apollopy

laravel memcached

26/04 2017

1.3.0

1.3.0.0

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

  Sources   Download

MIT

The Requires

 

by Avatar apollopy

laravel memcached

29/03 2017

1.2.1

1.2.1.0

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

  Sources   Download

MIT

The Requires

 

by Avatar apollopy

laravel memcached

14/12 2016

1.2.0

1.2.0.0

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

  Sources   Download

MIT

The Requires

 

by Avatar apollopy

laravel memcached

19/02 2016

1.1.0

1.1.0.0

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

  Sources   Download

MIT

The Requires

 

by Avatar apollopy

laravel memcached

20/01 2016

1.0.0

1.0.0.0

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

  Sources   Download

The Requires

 

by Avatar apollopy

laravel memcached