Skip to content

Yii Cache Library - WinCache Handler

License

Notifications You must be signed in to change notification settings

yiisoft/cache-wincache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

dd769e4 · May 25, 2024

History

74 Commits
Feb 24, 2023
May 16, 2024
Dec 26, 2020
Sep 7, 2021
Jan 11, 2022
Jan 28, 2022
Aug 13, 2019
Nov 29, 2020
Mar 31, 2023
May 16, 2024
May 16, 2024
May 16, 2024
May 16, 2024
Jan 11, 2022
Dec 26, 2020
Dec 28, 2020

Yii

Yii Cache Library - WinCache Handler


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

This package uses the PHP Windows Cache (see also Windows Cache for PHP) extension and implements PSR-16 cache.

Requirements

  • PHP 7.4.
  • WinCache PHP extension.

Installation

The package could be installed with Composer:

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 interface.

$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:

$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 - WinCache 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