LaravelPackages.net
Acme Inc.
Toggle sidebar
aheissenberger/laravel-memcachier

Memcachier.com Cache Driver for Laravel 4

354
4
About aheissenberger/laravel-memcachier

aheissenberger/laravel-memcachier is a Laravel package for memcachier.com cache driver for laravel 4. It currently has 4 GitHub stars and 354 downloads on Packagist. Install it with composer require aheissenberger/laravel-memcachier. Discover more Laravel packages by aheissenberger or browse all Laravel packages to compare alternatives.

Last updated

Memcachier Cache Driver for Laravel 4

This is a replacement for the builtin CacheServiceProvider with support for Memcachier a managed hosted Memcache. As it replaces Memcached you can also use this driver to support sessions.

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require aheissenberger/laravel-memcachier

"require": {
    "laravel/framework": "4.1.*",
    "aheissenberger/laravel-memcachier": "dev-master"
}

Next, update Composer from Terminal

$ composer update

Once this operation completes, the final step is to add the service provider. Open app/config/app.php, and replace Illuminate\Cache\CacheServiceProvider with:

'Aheissenberger\MemcachierCache\CacheServiceProvider',

Configuration

Open app/config/cache.php and find the driver key and change to memcached.

Replace the existing memcached configuration with this lines with authentification details and server:

	'memcached' => array(
		'username' => 'un', 'password' => 'pw', 'servers' => '1.1.1.1.1', 'weight' => 100
	),

If the driver cannot find cache.memcached.username it will try to load cache.memcached.host'] and connects to this server. You can use this to simulate memcachier with your local memcached server. Multiple Servers are not supported!!!

	'memcached' => array(
		'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100
	),

enjoy

Star History Chart