phpe/ccache

Class for caching content

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:HTML

v1.0 2015-02-16 14:56 UTC

This package is not auto-updated.

Last update: 2024-05-29 06:11:34 UTC


README

About

A very light and simple class that caches content.

PHP 5 >= 5.3.0

Introduction

Create an object of CCache like $cache = new \phpe\cache\CCache($aPath);

Then you can create a cache file with $cache->Put('nameOfFile', 'contentInFile');

When you want to get the content of a cache file, call $cache->Get('nameOfFile');

You can also prune an item with $cache->Prune('nameOfFile'); or prune all items with $cache->PruneAll('nameOfFile');

Using anax-mvc

Make it apart of $Di like:

$di->setShared('cache', function() { $cache = new \phpe\cache\CCache('path to dir'); return $cache; });

Then can you, depenending where in the code you want to reach CLog, reach the class whit either $app or $di; $app->cache->Put('file', 'hello'); or $this->di->cache->Put('file', 'hello');

Scrutinizer Code Quality Code Coverage Build Status