PHP code example of mozart / cache

1. Go to this page and download the library: Download mozart/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/ */

    

mozart / cache example snippets


$ curl -s http://getcomposer.org/installer | php
$ php composer.phar 

$ git clone https://github.com/FaizalPribadi/Cache.git /path/to/your-vendor/Cache


Mozart\Library\Cache\Cache;
use Mozart\Library\Cache\Driver\OpCache\Apc;
use Mozart\Library\Cache\Event\Status\CacheStatus;
use Mozart\Library\Cache\Compressed\CacheFlags;

$cache = new Cache(new Apc());
$status = new CacheStatus();

$cache->set('my.cache', 'im cache', CacheFlags::CACHE_LIFETIME );
$data = $cache->get('apc.cache');

if ($data) {
    $cache->remove($id);
    echo $status->getDropCache()->getStatus();
}


use Mozart\Library\Event\EventDispatcher;
use Mozart\Library\Cache\Event\DropCacheEvent;
use Mozart\Library\Cache\Event\CacheStatusEvent;

class DropListener
{

    public function onDropCacheEvent(DropCacheEvent $event)
    {
        $event->getCache()->getStatus();
        $event->stopPropagation();

        echo $event->getEvent();
    }
}

class DropCacheListenr
{
    protected $dispatcher;

    /**
     * @param EventDispatcher $dispatcher
     */
    public function __construct(EventDispatcher $dispatcher = null)
    {
        if (null === $dispatcher) {
            $dispatcher = new EventDispatcher();
            $this->dispatcher = $dispatcher;
        }

        $listener = new DropListener();
        $listener->onDropCacheEvent(new DropCacheEvent());
        $this->dispatcher->addListener(CacheStatusEvent::CACHE_DROP_EVENT, array($listener, 'onDropCacheEvent'));
    }

    public function send()
    {
        $dropCache = new DropCacheEvent();
        return $this->dispatcher->dispatch(CacheStatusEvent::CACHE_DROP_EVENT, $dropCache);
    }
}

$listener = new DropCacheListenr();
var_dump($listener->send());



//do something and customize this library