yiisoft/cache-file 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

yiisoft/cache-file

Composer 安装命令:

composer require yiisoft/cache-file

包简介

Yii Caching Library - File Handler

README 文档

README

Yii

Yii Cache Library - File Handler


Latest Stable Version Total Downloads Build status Code Coverage Mutation testing badge static analysis type-coverage

This package implements file-based PSR-16 cache.

Requirements

  • PHP 8.1 - 8.5.

Installation

The package could be installed with Composer:

composer require yiisoft/cache-file

Configuration

When creating an instance of \Yiisoft\Cache\File\FileCache, you must specify the path to the base directory in which the cache files will be stored:

$cache = new \Yiisoft\Cache\File\FileCache('/path/to/directory');

Constructor parameters

You can configure the cache by passing parameters to the constructor:

$cache = new \Yiisoft\Cache\File\FileCache(
    cachePath: '/path/to/directory',
    directoryMode: 0777,        // Permission for new directories (default: 0775)
    fileSuffix: '.cache',       // Cache file suffix (default: '.bin')
    fileMode: 0644,             // Permission for new cache files (default: null)
    directoryLevel: 2,          // Sub-directory levels (default: 1)
    gcProbability: 100,         // GC probability in parts per million (default: 10)
);

Directory mode

Change the permission to be set for newly created directories:

$cache = new \Yiisoft\Cache\File\FileCache('/path/to/directory', 0777); // default is 0775

This value will be used by PHP chmod() function. No umask will be applied. Defaults to 0775, meaning the directory is read-writable by an owner and group, but read-only for other users.

File suffix

Change the suffix of the cache files:

$cache = new \Yiisoft\Cache\File\FileCache(
    cachePath: '/path/to/directory',
    fileSuffix: '.cache', // default is '.bin'
);

File mode

Change the permission to be set for newly created cache files:

$cache = new \Yiisoft\Cache\File\FileCache(
    cachePath: '/path/to/directory',
    fileMode: 0644, // default is null
);

This value will be used by PHP chmod() function. No umask will be applied. If not set, the permission will be determined by the current environment.

Directory level

Change the level of sub-directories to store cache files:

$cache = new \Yiisoft\Cache\File\FileCache(
    cachePath: '/path/to/directory',
    directoryLevel: 2, // default is 1
);

If the system has huge number of cache files (e.g. one million), you may use a bigger value (usually no bigger than 3). Using sub-directories is mainly to ensure the file system is not over burdened with a single directory having too many files.

GC probability

Change the probability of performing garbage collection when storing a piece of data in the cache:

$cache = new \Yiisoft\Cache\File\FileCache(
    cachePath: '/path/to/directory',
    gcProbability: 100, // default is 10
);

The probability (parts per million) that garbage collection (GC) should be performed when storing a piece of data in the cache. Defaults to 10, meaning 0.001% chance. This number should be between 0 and 1000000. A value 0 means no GC will be performed at all.

General usage

The package does not contain any additional functionality for interacting with the cache, except those defined in the PSR-16 interface.

$cache = new \Yiisoft\Cache\File\FileCache('/path/to/directory');
$parameters = ['user_id' => 42];
$key = 'demo';

// try retrieving $data from cache
$data = $cache->get($key);

if ($data === null) {
    // $data is not found in cache, calculate it from scratch
    $data = calculateData($parameters);
    
    // store $data in cache for an hour so that it can be retrieved next time
    $cache->set($key, $data, 3600);
}

// $data is available here

In order to delete value you can use:

$cache->delete($key);
// Or all cache
$cache->clear();

To work with values in a more efficient manner, batch operations should be used:

  • getMultiple()
  • setMultiple()
  • deleteMultiple()

This package can be used as a cache handler for the Yii Caching Library.

Documentation

If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.

License

The Yii Cache Library - File Handler is free software. It is released under the terms of the BSD License. Please see LICENSE for more information.

Maintained by Yii Software.

Support the project

Open Collective

Follow updates

Official website Twitter Telegram Facebook Slack

yiisoft/cache-file 适用场景与选型建议

yiisoft/cache-file 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 702.28k 次下载、GitHub Stars 达 13, 最近一次更新时间为 2019 年 08 月 13 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「framework」 「file」 「cache」 「yii」 「psr-16」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 yiisoft/cache-file 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 yiisoft/cache-file 我们能提供哪些服务?
定制开发 / 二次开发

基于 yiisoft/cache-file 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 702.28k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 13
  • 点击次数: 26
  • 依赖项目数: 21
  • 推荐数: 2

GitHub 信息

  • Stars: 13
  • Watchers: 16
  • Forks: 12
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2019-08-13