PHPackages                             withgod/laravel-extended-memcachedstore - 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. withgod/laravel-extended-memcachedstore

ActiveLibrary

withgod/laravel-extended-memcachedstore
=======================================

extended memcached store.

0.0.4(6y ago)01.7kMITPHPPHP ^7.2

Since Feb 20Pushed 6y ago1 watchersCompare

[ Source](https://github.com/withgod/laravel-extended-memcachedstore)[ Packagist](https://packagist.org/packages/withgod/laravel-extended-memcachedstore)[ RSS](/packages/withgod-laravel-extended-memcachedstore/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (5)Used By (0)

laravel extended memcached store
================================

[](#laravel-extended-memcached-store)

about
-----

[](#about)

loose implementation of improved logging memcachedstore

install
-------

[](#install)

### composer cli

[](#composer-cli)

```
composer require withgod/laravel-extended-memcachedstore

```

### composer.json

[](#composerjson)

```
"repositories": [
    {
        "type": "vcs",
        "url": "git@github.com:withgod/laravel-extended-memcachedstore.git"
    }
]
"require": {
    "withgod/laravel-extended-memcachedstore": "@dev"
}

```

config
------

[](#config)

### .env

[](#env)

```
CACHE_DRIVER=ememcached

```

### config/cache.php

[](#configcachephp)

same as memcached.

```
        'ememcached' => [
            'driver' => 'ememcached',
            'persistent_id' => env('MEMCACHED_PERSISTENT_ID', 'memcached'),
            'options' => [
                Memcached::OPT_DISTRIBUTION => Memcached::DISTRIBUTION_CONSISTENT,
                Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
                //Memcached::OPT_SERIALIZER => Memcached::SERIALIZER_IGBINARY,
                //Memcached::OPT_BINARY_PROTOCOL => true,
                //Memcached::OPT_TCP_NODELAY => true, # https://github.com/php-memcached-dev/php-memcached/issues/400
            ],
            'servers' => [
                [
                    'host' => env('MEMCACHED_HOST', 'memcached'),
                    'port' => env('MEMCACHED_PORT', 11211),
                    'weight' => 100,
                ],
            ],
        ],

```

### log

[](#log)

```
root@70c0910de41e:/var/tmp/app# tail -f ./storage/logs/laravel.log
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000387        put     laravel_cache:memc-bench-0000000000000
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000394        put     laravel_cache:memc-bench-5e4ee17950208
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000217        put     laravel_cache:memc-bench-5e4ee17950722
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000258        put     laravel_cache:memc-bench-5e4ee17954f6b
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000165        get     laravel_cache:memc-bench-5e4ee17950208
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000254        put     laravel_cache:memc-bench-5e4ee1795578a
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000252        add     laravel_cache:memc-bench-add-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000656        add     laravel_cache:memc-bench-add-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.002009        putMany laravel_cache:memc-bench-putmany-5e4ee17955ba5-0,laravel_cache:memc-bench-putmany-5e4ee17955ba5-1,laravel_cache:memc-bench-putmany-5e4ee17955ba5-2,laravel_cache:memc-bench-putmany-5e4ee17955ba5-3,laravel_cache:memc-bench-putmany-5e4ee17955ba5-4,laravel_cache:memc-bench-putmany-5e4ee17955ba5-5,laravel_cache:memc-bench-putmany-5e4ee17955ba5-6,laravel_cache:memc-bench-putmany-5e4ee17955ba5-7,laravel_cache:memc-bench-putmany-5e4ee17955ba5-8,laravel_cache:memc-bench-putmany-5e4ee17955ba5-9
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000300        many    laravel_cache:memc-bench-putmany-5e4ee17955ba5-0,laravel_cache:memc-bench-putmany-5e4ee17955ba5-1,laravel_cache:memc-bench-putmany-5e4ee17955ba5-2,laravel_cache:memc-bench-putmany-5e4ee17955ba5-3,laravel_cache:memc-bench-putmany-5e4ee17955ba5-4,laravel_cache:memc-bench-putmany-5e4ee17955ba5-5,laravel_cache:memc-bench-putmany-5e4ee17955ba5-6,laravel_cache:memc-bench-putmany-5e4ee17955ba5-7,laravel_cache:memc-bench-putmany-5e4ee17955ba5-8,laravel_cache:memc-bench-putmany-5e4ee17955ba5-9
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000334        put     laravel_cache:memc-bench-increment-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000185        increment       laravel_cache:memc-bench-increment-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000260        increment       laravel_cache:memc-bench-increment-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000242        increment       laravel_cache:memc-bench-increment-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000222        get     laravel_cache:memc-bench-increment-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000284        put     laravel_cache:memc-bench-decrement-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000262        decrement       laravel_cache:memc-bench-decrement-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000191        decrement       laravel_cache:memc-bench-decrement-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000172        decrement       laravel_cache:memc-bench-decrement-5e4ee17955ba5
[2020-02-20 19:43:53] local.DEBUG: http://localhost:8080/memcached      0.000262        get     laravel_cache:memc-bench-decrement-5e4ee17955ba5```

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

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.

###  Release Activity

Cadence

Every ~6 days

Total

4

Last Release

2255d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/110075?v=4)[takumi](/maintainers/withgod)[@withgod](https://github.com/withgod)

---

Top Contributors

[![withgod](https://avatars.githubusercontent.com/u/110075?v=4)](https://github.com/withgod "withgod (8 commits)")

---

Tags

laravellibrarylaravel-plugin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/withgod-laravel-extended-memcachedstore/health.svg)

```
[![Health](https://phpackages.com/badges/withgod-laravel-extended-memcachedstore/health.svg)](https://phpackages.com/packages/withgod-laravel-extended-memcachedstore)
```

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k16.4M48](/packages/lab404-laravel-impersonate)[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[carsdotcom/laravel-json-schema

Json Schema validation for Laravel projects

1036.7k3](/packages/carsdotcom-laravel-json-schema)

PHPackages © 2026

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