PHP code example of ride / lib-cache
1. Go to this page and download the library: Download ride/lib-cache library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ride / lib-cache example snippets
use ride\library\cache\pool\DirectoryCachePool;
use ride\library\system\System;
function foo(System $system) {
// cache initialization
$cacheDirectory = $system->getFileSystem()->getFile('/path/to/cache');
$cachePool = new DirectoryCachePool($cacheDirectory);
// cache usage
$cacheItem = $cachePool->get('item.cache.key');
if (!$cacheItem->isValid()) {
// some value generation logic
// ...
// store value to the cache
$cacheItem->setValue($value); //
use ride\library\cache\pool\CachePool;
function bar(CachePool $cachePool) {
$cacheItem = $cachePool->create('item.cache.key');
$cacheItem->setValue('some cache value');
$cachePool->set($cacheItem);
}