Implements \Drupal\Core\Cache\CacheBackendInterface::set().
Overrides MemoryBackend::set
public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()) {
$this
->increaseCounter(__FUNCTION__, $cid);
parent::set($cid, $data, $expire, $tags);
}