承接 millennium/phpcache 相关项目开发

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

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

millennium/phpcache

最新稳定版本:v2.0.1

Composer 安装命令:

composer require millennium/phpcache

包简介

Implemented PHP Cache Drivers (memcache, array or sample files)

README 文档

README

Implements Cache Drivers (apc, memcache, xcache and sample files)

SensioLabs Insight Travis CI Scrutinizer CI
SensioLabsInsight Build Status Scrutinizer Code Quality Code Coverage Build Status

Dependency Status Latest Stable Version Total Downloads Latest Unstable Version License

Requirements:

  • "php": ">=5.3.0"

Suggest

  • "php-apc": "*"
  • "php-memcache": "*"

Features:

  • Maybe some refactoring and optimizing
  • Adding more Unit Tests

Installation and configuration:

Install with Composer, run:

composer require millennium/phpcache

Usage examples:

<?php

require './vendor/autoload.php';

use Millennium\Cache\Cache;
use Millennium\Cache\Drivers\MemcacheDriver;

$test = array('1','2','3');

$driverTest1 = new Cache(new MemcacheDriver(array()));
$driverTest1->store("test", $test);
var_dump($driverTest1->fetch("test"));

Contributions

Contributions to PHPCache are welcome via pull requests.

License

PHPCache was created by Zlatko Hristov and released under the MIT License.

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-22