https://github.com/yiisoft/cache-wincache
Yii Cache Library - WinCache Handler
https://github.com/yiisoft/cache-wincache
cache cache-storage hacktoberfest psr-16 wincache yii3
Last synced: 8 months ago
JSON representation
Yii Cache Library - WinCache Handler
- Host: GitHub
- URL: https://github.com/yiisoft/cache-wincache
- Owner: yiisoft
- License: bsd-3-clause
- Created: 2019-05-02T12:39:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-16T06:53:12.000Z (about 2 years ago)
- Last Synced: 2024-05-22T16:23:27.882Z (about 2 years ago)
- Topics: cache, cache-storage, hacktoberfest, psr-16, wincache, yii3
- Language: PHP
- Homepage: https://www.yiiframework.com/
- Size: 96.7 KB
- Stars: 17
- Watchers: 19
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
Yii Cache Library - WinCache Handler
[](https://packagist.org/packages/yiisoft/cache-wincache)
[](https://packagist.org/packages/yiisoft/cache-wincache)
[](https://github.com/yiisoft/cache-wincache/actions?query=workflow%3Abuild)
[](https://codecov.io/gh/yiisoft/cache-wincache)
[](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/cache-wincache/master)
[](https://github.com/yiisoft/cache-wincache/actions?query=workflow%3A%22static+analysis%22)
[](https://shepherd.dev/github/yiisoft/cache-wincache)
This package uses the PHP [Windows Cache](https://sourceforge.net/projects/wincache/)
(see also [Windows Cache for PHP](https://www.php.net/manual/book.wincache.php)) extension and implements
[PSR-16](https://www.php-fig.org/psr/psr-16/) cache.
## Requirements
- PHP 7.4.
- `WinCache` PHP extension.
## Installation
The package could be installed with [Composer](https://getcomposer.org):
```shell
composer require yiisoft/cache-wincache
```
## 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\WinCache\WinCache();
$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 - WinCache 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
[](https://opencollective.com/yiisoft)
## Follow updates
[](https://www.yiiframework.com/)
[](https://twitter.com/yiiframework)
[](https://t.me/yii3en)
[](https://www.facebook.com/groups/yiitalk)
[](https://yiiframework.com/go/slack)