Disk

Implements the CacheInteface using as the hard disk as the cache backend.

__construct

__construct($path)
$path:Directory to store the cache files - default /tmp/dalmp_cache.

Constants

define('DALMP_CACHE_DIR', '/tmp/dalmp/cache/');

Defines where to store the cache when using ‘dir’ cache type.

This means that if no $path is passed as an argument to the __construct before using the default value will try to get a path from the DALMP_CACHE_DIR constant if set.

Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
<?php

 require_once 'dalmp.php';

 $cache = new DALMP\Cache\Disk('/tmp/my_cache_path')

 $cache->set('mykey', 'xpto', 300);

 $cache->get('mykey');

 $cache->stats();

See also

Cache Examples.

Thanks Navicat for supporting Open Source projects.

Navicat



A great amount of time has been spent creating, crafting and maintaining this software, please consider donating.

Donating helps ensure continued support, development and availability.

dalmp


comments powered by Disqus