2017-25 © Pedro Peláez
 

library simplecache

Manage a simple cache backed by a MySQL database

image

battis/simplecache

Manage a simple cache backed by a MySQL database

  • Friday, June 2, 2017
  • by battis
  • Repository
  • 2 Watchers
  • 0 Stars
  • 201 Installations
  • PHP
  • 7 Dependents
  • 0 Suggesters
  • 0 Forks
  • 2 Open issues
  • 8 Versions
  • 1 % Grown

The README.md

SimpleCache

Latest Version Scrutinizer Code Quality Code Coverage Build Status, (*1)

Manage a simple cache backed by a MySQL database, (*2)

Install

In your composer.json add:, (*3)

"require": {
  "battis/simplecache": "1.*"
}

Use

Create a cache:, (*4)

$mysqli = new mysqli('localhost', 'bob', 's00pers3kr3t', 'app-db'); // or whatever your credentials are
$cache = new \Battis\SimpleCache($mysqli);

Basic workflow using cached data (check the cache and used cached data if there, otherwise build data and cache it for next time):, (*5)

$data = $cache->getCache('foo');
if ($data === false) {

  // ... lots and lots of work to create $data from scratch

  $cache->setCache('foo', $data); // cache for next use
}

Full API documentation is available in /docs., (*6)

The Versions

02/06 2017

dev-develop

dev-develop

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

The Development Requires

by Seth Battis

01/06 2017

dev-master

9999999-dev

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

The Development Requires

by Seth Battis

17/12 2015

v1.2.2

1.2.2.0

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

by Seth Battis

05/12 2015

v1.2.1

1.2.1.0

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

by Seth Battis

05/10 2015

v1.2

1.2.0.0

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

by Seth Battis

13/08 2015

v1.1

1.1.0.0

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

by Seth Battis

12/08 2015

v1.0.1

1.0.1.0

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

by Seth Battis

01/08 2015

v1.0

1.0.0.0

Manage a simple cache backed by a MySQL database

  Sources   Download

LGPL-3.0

by Seth Battis