# cache-file **Repository Path**: mirrors_yiisoft/cache-file ## Basic Information - **Project Name**: cache-file - **Description**: Yii Cache Library - File Handler - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Yii

Yii Cache Library - File Handler


[![Latest Stable Version](https://poser.pugx.org/yiisoft/cache-file/v)](https://packagist.org/packages/yiisoft/cache-file) [![Total Downloads](https://poser.pugx.org/yiisoft/cache-file/downloads)](https://packagist.org/packages/yiisoft/cache-file) [![Build status](https://github.com/yiisoft/cache-file/actions/workflows/build.yml/badge.svg)](https://github.com/yiisoft/cache-file/actions/workflows/build.yml) [![Code Coverage](https://codecov.io/gh/yiisoft/cache-file/branch/master/graph/badge.svg)](https://codecov.io/gh/yiisoft/cache-file) [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fyiisoft%2Fcache-file%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/cache-file/master) [![static analysis](https://github.com/yiisoft/cache-file/workflows/static%20analysis/badge.svg)](https://github.com/yiisoft/cache-file/actions?query=workflow%3A%22static+analysis%22) [![type-coverage](https://shepherd.dev/github/yiisoft/cache-file/coverage.svg)](https://shepherd.dev/github/yiisoft/cache-file) This package implements file-based [PSR-16](https://www.php-fig.org/psr/psr-16/) cache. ## Requirements - PHP 8.1 - 8.5. ## Installation The package could be installed with [Composer](https://getcomposer.org): ```shell 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: ```php $cache = new \Yiisoft\Cache\File\FileCache('/path/to/directory'); ``` ### Constructor parameters You can configure the cache by passing parameters to the constructor: ```php $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: ```php $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: ```php $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: ```php $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: ```php $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: ```php $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](https://www.php-fig.org/psr/psr-16/) interface. ```php $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: ```php $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](https://github.com/yiisoft/cache). ## Documentation - [Internals](docs/internals.md) If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for that. You may also check out other [Yii Community Resources](https://www.yiiframework.com/community). ## License The Yii Cache Library - File Handler is free software. It is released under the terms of the BSD License. Please see [`LICENSE`](./LICENSE.md) for more information. Maintained by [Yii Software](https://www.yiiframework.com/). ## Support the project [![Open Collective](https://img.shields.io/badge/Open%20Collective-sponsor-7eadf1?logo=open%20collective&logoColor=7eadf1&labelColor=555555)](https://opencollective.com/yiisoft) ## Follow updates [![Official website](https://img.shields.io/badge/Powered_by-Yii_Framework-green.svg?style=flat)](https://www.yiiframework.com/) [![Twitter](https://img.shields.io/badge/twitter-follow-1DA1F2?logo=twitter&logoColor=1DA1F2&labelColor=555555?style=flat)](https://twitter.com/yiiframework) [![Telegram](https://img.shields.io/badge/telegram-join-1DA1F2?style=flat&logo=telegram)](https://t.me/yii3en) [![Facebook](https://img.shields.io/badge/facebook-join-1DA1F2?style=flat&logo=facebook&logoColor=ffffff)](https://www.facebook.com/groups/yiitalk) [![Slack](https://img.shields.io/badge/slack-join-1DA1F2?style=flat&logo=slack)](https://yiiframework.com/go/slack)