Coder Social home page Coder Social logo

php-cache-psr16's Introduction

chillerlan/php-cache

A psr/simple-cache implementation for PHP 7+.

version license Travis Coverage Scrunitizer Packagist downloads PayPal donate

Features:

Requirements

Documentation

Installation using composer

You can simply clone the repo and run composer install in the root directory. In case you want to include it elsewhere, just add the following to your composer.json:

{
	"require": {
		"php": ">=7.0.3",
		"chillerlan/php-cache": "dev-master"
	}
}

Manual installation

Download the desired version of the package from master or release and extract the contents to your project folder.After that:

  • run composer install to install the required dependencies and generate /vendor/autoload.php.
  • if you use a custom autoloader, point the namespace chillerlan\SimpleCache to the folder src of the package

Profit!

Usage

Just invoke a Cache instance with the desired CacheDriverInterface like so:

// Redis
$redis = new Redis();
$redis->pconnect('127.0.0.1', 6379);
		
$cacheDriver = new RedisDriver($redis);

// Memcached
$memcached = new Memcached('test');
$memcached->addServer('localhost', 11211);

$cacheDriver = new MemcachedDriver($memcached);

// File
$cacheDriver = new FileCacheDriver(__DIR__.'/../.cache');

// Session
$cacheDriver = new SessionCacheDriver('_session_cache');

// Memory
$cacheDriver = new MemoryCacheDriver;

// load the cache instance
$cache = new Cache($cacheDriver);

Methods

See: Psr\SimpleCache\CacheInterface

$cache->get(string $key, $default = null); // -> mixed
$cache->set(string $key, $value, int $ttl = null):bool
$cache->delete(string $key):bool
$cache->has(string $key):bool
$cache->clear():bool
$cache->getMultiple(array $keys, $default = null):array // -> mixed[]
$cache->setMultiple(array $values, int $ttl = null):bool
$cache->deleteMultiple(array $keys):bool

Disclaimer!

I don't take responsibility for molten memory modules, bloated hard disks, self-induced DoS, broken screens etc. Use at your own risk! ๐Ÿ™ˆ

php-cache-psr16's People

Contributors

codemasher avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.