An open API service indexing awesome lists of open source software.

https://github.com/gueff/cachix

A simple PHP Caching Class working with files
https://github.com/gueff/cachix

cache caching php

Last synced: about 1 year ago
JSON representation

A simple PHP Caching Class working with files

Awesome Lists containing this project

README

          

# Cachix
A simple PHP Caching Class working with files

## Requirements
- PHP >= 7.4
- Linux commands `rm`, `find` and `grep` to be executable via PHP's `shell_exec` command

## Installation
create the composer.json file with following content:
~~~
{
"require": {
"gueff/cachix":"1.0.2"
}
}
~~~

run installation
~~~
$ composer install
~~~

## Usage

~~~php
true,
'sCacheDir' => '/tmp/',
'iDeleteAfterMinutes' => 10,
'sBinRemove' => '/bin/rm',
'sBinFind' => '/usr/bin/find',
'sBinGrep' => '/bin/grep'
));

// build a Cache-Key
$sKey = 'myCacheKey.Token';

// autodelete cachefiles
// which contain the string ".Token" in key-names
\Cachix::autoDeleteCache('.Token');

// first time saving data to cache...
if (empty(\Cachix::getCache($sKey)))
{
// Data to be cached
$aData = ['foo' => 'bar'];

\Cachix::saveCache(
$sKey,
$aData
);
}
// ...or read from existing Cache
else
{
$aData = \Cachix::getCache($sKey);
}
~~~