Skip to content

onoi/cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cache

Build Status Code Coverage Scrutinizer Code Quality Latest Stable Version Packagist download count Dependency Status

A minimalistic cache adapter interface that was part of the Semantic MediaWiki code base and is now being deployed as independent library.

  • Support for MediaWiki's BagOStuff cache interface
  • Support for the Doctrine cache interface
  • Support for the Zend cache (ZF2) interface
  • Provides a FixedInMemoryLruCache array LRU cache without any external cache provider dependency
  • Provides a CompositeCache to combine different cache instances and allow access through hierarchical iteration on a first-come first-served basis

Requirements

PHP 5.3 / HHVM 3.3 or later

Installation

The recommended installation method for this library is by either adding the dependency to your composer.json.

{
	"require": {
		"onoi/cache": "~1.1"
	}
}

Usage

use Onoi\Cache\Cache;

class Foo {

	private $cache = null;

	public function __constructor( Cache $cache ) {
		$this->cache = $cache;
	}

	public function doSomething( $id ) {

		if ( $this->cache->contains( $id ) ) {
			// do something
		}
	}
}
$cacheFactory = new CacheFactory();

$instance = new Foo( $cacheFactory->newFixedInMemoryLruCache( 500 ) );
$instance->doSomething( 'bar' );

or

$compositeCache = $cacheFactory->newCompositeCache( array(
	$cacheFactory->newFixedInMemoryLruCache( 500 ),
	$cacheFactory->newDoctrineCache( new \Doctrine\Common\Cache\RedisCache() ),
	$cacheFactory->newMediaWikiCache( new \SqlBagOStuf() )
) );

$instance = new Foo( $compositeCache );
$instance->doSomething( 'bar' );

Contribution and support

If you want to contribute work to the project please subscribe to the developers mailing list and have a look at the contribution guidelinee. A list of people who have made contributions in the past can be found here.

Tests

The library provides unit tests that covers the core-functionality normally run by the continues integration platform. Tests can also be executed manually using the composer phpunit command from the root directory.

Release notes

  • 1.2.0 (2015-06-02)

  • Added Cache::getName

  • Removed deprecated FixedInMemoryCache

  • 1.1.0 (2015-03-29)

  • Added NullCache

  • Added ZendCache

  • Renamed FixedInMemoryCache to FixedInMemoryLruCache

  • 1.0.0 (2015-01-16)

  • Initial release

License

GNU General Public License 2.0 or later.