承接 igormatkovic/memcache 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

igormatkovic/memcache

最新稳定版本:1.7.2

Composer 安装命令:

composer require igormatkovic/memcache

包简介

Memcache module for Laravel 4

README 文档

README

========

SetUp Application

Add the package to your composer.json and run composer update.

"igormatkovic/memcache": "dev-master"

Add the memcache service provider in app/config/app.php:

'Igormatkovic\Memcache\MemcacheServiceProvider',

You may now update your app/config/session.php config file to use memcache

	'driver' => 'memcache',

OR...

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

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

	'driver' => 'memcache',

Unit test view phpunit

	phpunit

Notice: This memcache driver uses the same config as Memcached

This addon was build because of the Webtatic repo lacking Memcache Support :/

统计信息

  • 总下载量: 8.71k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 2
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2014-07-02