previewtechs/simple-cache

Simple cache library for PHP built on top of PSR-16.

v1.1 2017-11-13 19:35 UTC

This package is auto-updated.

Last update: 2024-04-06 08:40:14 UTC


README

PHP Cache library built by PSR-16 simple cache interface

You can find implementations of the specification by looking for packages providing the psr/simple-cache-implementation virtual package.

Installation

  • Run this command: composer require previewtechs/simple-cache:dev-master

Usages

  • Create a file named test.php in your root directory and add these following codes:
<?php

require "vendor/autoload.php";

$cache = new Memcached();
$cache->addServers([
    ['localhost', 11211, 1]
]);

$cache = new Previewtechs\SimpleCache\Memcached($cache);

// Set Cache key.
$data = [
    'sample' => 'data',
    'another' => 'data'
];

$cache->set('your_custom_key', $data);

// Check cached key exists or not.
$cache->has('your_custom_key');

// Get Cached key data.
$cache->get('your_custom_key');
  • then run php test.php

For Documentations

psr/simple-cache-implementation