PHP code example of eskirex / cache

1. Go to this page and download the library: Download eskirex/cache library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

eskirex / cache example snippets



    use Eskirex\Component\Cache\VariableCache;
    
    
    $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
    // )