定制 angelxmoreno/cakephp-simplecache-bridge 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

angelxmoreno/cakephp-simplecache-bridge

Composer 安装命令:

composer require angelxmoreno/cakephp-simplecache-bridge

包简介

A bridge to convert CakePHP Cache to SimpleCache (PSR16)

README 文档

README

A bridge to convert CakePHP Cache to SimpleCache (PSR16)

Build Status Codacy Badge Maintainability Test Coverage License Minimum PHP Version

Why build this?

In a few of my CakePHP apps I make use of 3rd party libraries that require a PSR-16 compatible cache engine. This bridge allows me to reuse the Cache Engines and Cache configs already available within my CakePHP application and eliminates the need of having to build 2 different sets of Cache management libraries.

Isn't this already in CakePHP 3.7 ?

No. CakePHP 3.7 brings with it a PSR-16 CacheEngine; meaning you will be able to decorate a PSR-16 object to implement Cake\Cache\CacheEngine methods. What this bridge offers is the ability to go from a Cake\Cache\CacheEngine to PSR-16, not the other way around.

The new SimpleCacheEngine class ( in CakePHP 3.7 ) implements PSR 16 interface and decorates/wraps CacheEngine classes.

Thanks Admad for the clarification.

Examples

Cache::config('short', [
    'className' => 'File',
    'duration' => '+1 hours',
    'path' => CACHE,
    'prefix' => 'cake_short_'
]);

$cache = new Bridge('short');

//setting cache data
$cache->set('some_key', 'some value');

//getting cache data with a default
$value = $cache->get('some_key', 'some default');

//overriding the Cache engine's TTL with an int
$cache->set('some_key', 'some value', 300); //cached for 300 seconds instead of `+1 hours`

//overriding the Cache engine's TTL with a `\DateTimeInterval` ( as per the SimpleCache Interface )
$interval = new \DateTimeInterval('P1Y'); // an interval of 1 year
$cache->set('some_key', 'some value', $interval); //cached for 1 year instead of `+1 hours`

Requirements

  • PHP >=5.6
  • CakePHP >=3.0

Installation

You can install this library using composer.

The recommended way to install as a composer package:

composer require angelxmoreno/cakephp-simplecache-bridge

Setup

Once you have a cahe configuration defined, you simple have to pass the config name when creating an instance of the Bridge like so:

Cache::config('short', [
    'className' => 'File',
    'duration' => '+1 hours',
    'path' => CACHE,
    'prefix' => 'cake_short_'
]);

$cache = new Bridge('short');

Reporting Issues

If you have a problem with this library please open an issue on GitHub.

License

This code is offered under an MIT license.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-09-15

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固