承接 kbra/cache 相关项目开发

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

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

kbra/cache

Composer 安装命令:

composer create-project kbra/cache

包简介

KBRA Cache

README 文档

README

A simple PHP cache library

Getting Started

Prerequisites

Installing

Install with composer:

composer require kbra/cache

Set the configuration based on your cache driver. Using Redis, your config might look something like this:

$settings = [
    'driver' => 'redis',
    'maxRetries' => 3,
    'config' => [
        'defaultTtl' => 900,
        'host' => 'cache.example.com',
        'port' => 6379,
        'database' => 11,
        'password' => 'SuperSecretPassword',
        'timeout' => 3,
    ],
];

$cacheService = new CacheService($settings);

Right now this library only properly handles connection errors from Redis

You may choose to connect your cache driver manually:

$cacheService->connect();

But if you don't, a connection will be attempted the first time it is needed.

To save data to the cache:

$cacheService->set('some-data', $data);

And to retrieve it from the cache:

$data = $cacheService->get('some-data');

You can pass some extra options when saving data to the cache. A unique cache key will be generated based on the name and options passed. For example, if you wanted to cache a database query with some parameters:

$query = "SELECT * FROM table WHERE thing = :thing";
$params = [':thing' => 'something'];
$result = $pdo->fetchAll($query, $params);

$cacheService->set($query, $result, $params);

And to get the cached result:

$result = $cacheService->get($query, $params);

You can also save some tags associated with the cache data, which can be used later to remove items from the cache:

$tags = [$userName, 'portfolio'];
$cacheService->set($query, $result, $params, $tags);

// clear ALL caches tagged with 'portfolio'
$cacheService->clearTags('portfolio');

Running the tests

composer test or phpunit

Built With

  • phpfastcache - A PHP high-performance backend cache system

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details

Acknowledgments

  • Kroll Bond Rating Agency, Inc.
  • Rubber ducks

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: Apache
  • 更新时间: 2018-11-29

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固