2017 © Pedro Peláez
 

library memcache

Memcache module for Laravel 4

image

igormatkovic/memcache

Memcache module for Laravel 4

  • Thursday, October 9, 2014
  • by igormatkovic
  • Repository
  • 2 Watchers
  • 4 Stars
  • 7,204 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 1 Open issues
  • 11 Versions
  • 2 % Grown

The README.md

Laravel 4 Memcache support

========, (*1)

SetUp Application

Add the package to your composer.json and run composer update., (*2)

"igormatkovic/memcache": "dev-master"

Add the memcache service provider in app/config/app.php:, (*3)

'Igormatkovic\Memcache\MemcacheServiceProvider',

You may now update your app/config/session.php config file to use memcache, (*4)

    'driver' => 'memcache',

OR..., (*5)

Add this to your app/start/global.php (Cache only), (*6)

use Illuminate\Cache\Repository;
use Igormatkovic\Memcache\MemcacheStore;
use Igormatkovic\Memcache\MemcacheConnector;

Cache::extend('memcache', function($app) {
    $servers = Config::get('cache.memcached'); 
    $prefix = Config::get('cache.prefix'); 

    $memcache = (new MemcacheConnector())->connect($servers);

    return new Repository(new MemcacheStore($memcache, $prefix));
});

Update your driver app/config/cache.php, (*7)

    'driver' => 'memcache',

Unit test view phpunit, (*8)

    phpunit

Notice: This memcache driver uses the same config as Memcached, (*9)

This addon was build because of the Webtatic repo lacking Memcache Support :/, (*10)

The Versions

09/10 2014

dev-master

9999999-dev

Memcache module for Laravel 4

  Sources   Download

The Requires

 

The Development Requires

09/10 2014

1.7.2

1.7.2.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

The Development Requires

09/10 2014

1.7.1

1.7.1.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

The Development Requires

09/10 2014

1.7

1.7.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

The Development Requires

18/07 2014

1.6

1.6.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

The Development Requires

07/07 2014

1.5

1.5.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

The Development Requires

02/07 2014

1.4

1.4.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

02/07 2014

1.3

1.3.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

02/07 2014

1.2

1.2.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

02/07 2014

1.0

1.0.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires

 

02/07 2014

1.1

1.1.0.0

Memcache module for Laravel 4

  Sources   Download

The Requires