PHP Classes

File: documentation/purge-cache-file.php

Recommend this page to a friend!
  Classes of Camilo Sperberg   Cache Manager   documentation/purge-cache-file.php   Download  
File: documentation/purge-cache-file.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Cache Manager
Manage cache containers to store and retrieve data
Author: By
Last change: Update of documentation/purge-cache-file.php
Date: 5 days ago
Size: 992 bytes
 

Contents

Class file image Download
<?php

$languageIds
= array('en_US', 'en_UK', 'nl_NL', 'es_ES', 'es_CL');

include(
'../cacheManager.class.php');

try {
   
$cache = new u4u\cacheManager('file', true, '/tmp/myCacheDirectory/');
   
$cache->throwExceptions(true);
} catch(
u4u\cacheException $e) {
    print(
'Exception caught! Message: "'.$e->getMessage().'"<br />');
} catch (
u4u\versionException $e) {
    die(
$e->getMessage());
}

try {
   
$deletedCount = $cache->purgeIdentifierCache('random-data');
    if (
$deletedCount > 0) {
        print(
'Deleted '.$deletedCount.' caches of type "random-data"');
    }
} catch (
u4u\cacheException $e) {
   
debug($e->getMessage());
}

$result = $cache->delete('languageMessages', $languageIds);
if (
$result === true ) {
    print(
'<br />Deleted cache languageMessages');
   
var_dump($result);
}

$result = $cache->purgeCache();
if (
$result === true) {
    print(
'<br />Purged entire cache');
   
var_dump($result);
}

echo
'<a href="create-cache-file.php">Create all file caches again</a>';