1. Go to this page and download the library: Download openclassrooms/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/ */
openclassrooms / cache example snippets
OpenClassrooms\Cache\Cache\Cache;
//do things
$cacheProvider = new ArrayCache();
$cache = new Cache($cacheProvider);
// Default builder, build a cache using ArrayCache Provider
$cache = new CacheBuilderImpl()->build();
// Using a CacheProvider
$cache = new CacheBuilderImpl()
->withCacheProvider($redisCache)
->build();
// Optional default lifetime
$cache = new CacheBuilderImpl()
->withCacheProvider($redisCache)
->withDefaultLifetime(300)
->build();