2017 © Pedro Peláez
 

library cache

Eskirex Cache Component

image

eskirex/cache

Eskirex Cache Component

  • Monday, July 23, 2018
  • by eskirex
  • Repository
  • 1 Watchers
  • 1 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Eskirex Cache Component

Hello. This is Cache component., (*1)

Examples

<?php
    use Eskirex\Component\Cache\VariableCache;

    require __DIR__ . '/vendor/autoload.php';

    $cacheNode1 = new VariableCache('foo_bar_baz');

    $cacheNode1->set('foo', [
        'bar' => 'baz'
    ]);

    print_r($cacheNode1->get('foo'));
    // Array
    // (
    //     [bar] => baz
    // )


    $cacheNode2 = new VariableCache('foo_bar_baz');

    print_r($cacheNode2->get('foo'));
    // Array
    // (
    //     [bar] => baz
    // )

License

MIT, (*2)

The Versions

23/07 2018

dev-master

9999999-dev http://www.eskirex.com

Eskirex Cache Component

  Sources   Download

MIT

The Requires

 

by Avatar eskirex

20/12 2017

1.0.0

1.0.0.0 http://www.eskirex.com

Eskirex Cache Component

  Sources   Download

MIT

The Requires

 

by Avatar eskirex