PHPackages                             aheissenberger/laravel-memcachier - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. aheissenberger/laravel-memcachier

ActiveLibrary

aheissenberger/laravel-memcachier
=================================

Memcachier.com Cache Driver for Laravel 4

43543[1 PRs](https://github.com/aheissenberger/laravel-memcachier/pulls)PHP

Since Aug 4Pushed 11y ago2 watchersCompare

[ Source](https://github.com/aheissenberger/laravel-memcachier)[ Packagist](https://packagist.org/packages/aheissenberger/laravel-memcachier)[ RSS](/packages/aheissenberger-laravel-memcachier/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[Memcachier](http://memcachier.com/) Cache Driver for [Laravel 4](http://laravel.com/)
======================================================================================

[](#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
------------

[](#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
-------------

[](#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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/b3ef2f73d8f764a88e93f9240ae13a2375132e06f91435e34ee4c6d37425ed75?d=identicon)[aheissenberger](/maintainers/aheissenberger)

---

Top Contributors

[![aheissenberger](https://avatars.githubusercontent.com/u/200095?v=4)](https://github.com/aheissenberger "aheissenberger (21 commits)")

### Embed Badge

![Health badge](/badges/aheissenberger-laravel-memcachier/health.svg)

```
[![Health](https://phpackages.com/badges/aheissenberger-laravel-memcachier/health.svg)](https://phpackages.com/packages/aheissenberger-laravel-memcachier)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
