implements Phalcon\Cache\FrontendInterface
Source on GitHub
Discards any kind of frontend data input. This frontend does not have expiration time or any other options
<?php
//Create a None Cache
$frontCache = new \Phalcon\Cache\Frontend\None();
// Create the component that will cache "Data" to a "Memcached" backend
// Memcached connection settings
$cache = new \Phalcon\Cache\Backend\Memcache($frontCache, array(
"host" => "localhost",
"port" => "11211"
));
// This Frontend al