Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

BrightLocal/Cache

 
 

Repository files navigation

Cache

A simple cache library. Implements different adapters that you can use and change easily by a manager or similar.

Build Status Scrutinizer Quality Score Code Coverage

Latest Stable Version Total Downloads

Installation

With Composer

It is best installed it through packagist by including desarrolla2/cache in your project composer.json require:

    "require": {
        // ...
        "desarrolla2/cache":  "dev-master"
    }

Without Composer

You can also download it from [Github] (https://github.com/desarrolla2/Cache), but no autoloader is provided so you'll need to register it with your own PSR-0 compatible autoloader.

Usage

<?php

use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\NotCache;

$cache = new Cache(new NotCache());

$cache->set('key', 'myKeyValue', 3600);

// later ...

echo $cache->get('key');

Adapters

NotCache

Use it if you will not implement any cache adapter is an adapter that will serve to fool the test environments.

File

Use it if you will you have dont have other cache system available in your system or if you like to do your code more portable.

<?php
    
use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\File;

$cacheDir = '/tmp';
$adapter = new File($cacheDir);
$adapter->setOption('ttl', 3600);
$cache = new Cache($adapter);

Apc

Use it if you will you have APC cache available in your system.

<?php
    
use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\Apc;

$adapter = new Apc();
$adapter->setOption('ttl', 3600);
$cache = new Cache($adapter);

Memory

This is the fastest cache type, since the elements are stored in memory. Cache Memory such is very volatile and is removed when the process terminates. Also it is not shared between different processes.

Memory cache have a option "limit", that limit the max items in cache.

<?php
    
use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\Memory;

$adapter = new Memory();
$adapter->setOption('ttl', 3600);
$adapter->setOption('limit', 200);
$cache = new Cache($adapter);

Mongo

Use it if you will you have mongodb available in your system.

<?php
    
use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\Mongo;

$server = 'mongodb://localhost:27017';
$adapter = new Mongo($server);
$adapter->setOption('ttl', 3600);
$cache = new Cache($adapter);

MySQL

Use it if you will you have mysqlnd available in your system.

<?php

use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\MySQL;

$adapter = new MySQL('localhost', 'user', 'pass', 'port');
$adapter->setOption('ttl', 3600);
$cache = new Cache($adapter);

Redis

Use it if you will you have redis available in your system.

<?php

use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\Redis;

$adapter = new Redis();
$adapter->setOption('ttl', 3600);
$cache = new Cache($adapter);

Memcache

Use it if you will you have memcache available in your system.

<?php

use Desarrolla2\Cache\Cache;
use Desarrolla2\Cache\Adapter\MemCache;

$adapter = new MemCache();
$adapter->setOption('ttl', 3600);
$cache = new Cache($adapter);

Coming soon

This library implements other adapters as soon as possible, feel free to send new adapters if you think it appropriate.

This can be a list of pending tasks.

  • Cleaning cache
  • MemcachedAdapter
  • Other Adapters

Contact

You can contact with me on @desarrolla2.

About

A simple cache library. Implements different adapters that you can use and change easily by a manager or similar.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%