A caching library implementing PSR-6 and PSR-16 interfaces
Go to file
Timothy Warren d1d1085d10
Gitea - aviat/banker/master There was a failure building this commit Подробиці
Update header comments
2018-11-15 16:38:36 -05:00
build Remove Memcache, improve test coverage, fix bugs 2018-11-15 16:37:50 -05:00
src Update header comments 2018-11-15 16:38:36 -05:00
tests Update header comments 2018-11-15 16:38:36 -05:00
.editorconfig First commit 2016-08-31 12:18:46 -04:00
.gitignore First commit 2016-08-31 12:18:46 -04:00
.gitlab-ci.yml Make sure we can connect to memcached 2017-03-01 12:04:01 -05:00
CHANGELOG.md Remove Memcache, improve test coverage, fix bugs 2018-11-15 16:37:50 -05:00
Jenkinsfile Jenkins CI setup, try eight 2018-10-12 10:53:48 -04:00
README.md Remove Memcache, improve test coverage, fix bugs 2018-11-15 16:37:50 -05:00
RoboFile.php PHP 7 or bust! 2016-10-19 09:57:06 -04:00
composer.json Remove Memcache, improve test coverage, fix bugs 2018-11-15 16:37:50 -05:00
phpdoc.dist.xml First commit 2016-08-31 12:18:46 -04:00
phpunit.xml First commit 2016-08-31 12:18:46 -04:00

README.md

Banker

A Caching library implementing the PSR-6 interface for several common cache backends

build status coverage report

Cache Backends

  • Apcu
  • Memcached
  • Redis
  • Null - no persistence

Basic Usage

<?php
// Create the pool
// $config is the configuration array
// $logger is an optional psr/log compatible logger
$pool = new Aviat\Banker\Pool($config, $logger);

// Grab an item from the cache
$item = $pool->getItem('foo');

// Was there a cache hit?
if ( ! $item->isHit())
{
	// ... Generation of value to cache
	$item->set($value);
	$item->save();
}
else
{
	$value = $item->get();
}

Configuration / Connection array

The config array passed to the Pool class constructor determines which server to connect to. Regardless of the backend, the basic structure is like so:

<?php
$config = [
	'driver' => 'null', // null, apcu, redis, memcached
	'connection' => [
		// Optional (For some drivers):
		// driver setup, see below for the structure for each
		// driver
	],
	'options' => [
		// Optional:
		// Set additional driver-specific options, like persistence for
		// Memcached, or a prefix for Redis keys
	]
];

Below are the connection arrays for each backend:

Memcached:

<?php
$config['connection'] = [
	'host' => 'localhost', // hostname or socket
	'port' => 11211,       // Port needs to be 0 if socket
	'persistent' => false, // Use persistent connection
];

Redis: See Predis documentation. An empty array will connect to localhost on port 6379.

Null, Apcu: No connection parameters