PHP code example of bru2s / cache-service-provider
1. Go to this page and download the library: Download bru2s/cache-service-provider 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/ */
bru2s / cache-service-provider example snippets
use Silex\Application;
use Bru2s\Silex\CacheServiceProvider;
$app = new Application();
$app['config'] = [
'cache' => [
'adapter' => 'Memcache',
'host' => '127.0.0.1',
'port' => 11211,
'connectable' => true // If not need of one connection put FALSE (in Filesystem must be FALSE)
]
];
$app->register(new CacheServiceProvider());
$app['cache']->save('your-key', 'your-data');
$data = $app['cache']->fetch('your-key');
echo $data; // your-data