↓ Skip to Content

sodaware.github.com / vault

A lightweight cache for PHP

Licence
FreeBSD
Source
http://github.com/sodaware/vault/
Download zip   Download tar.gz

vault is is very lightweight cache framework that is designed to be easily integrated with other frameworks (such as Tonic). It’s only one file, and currently supports APC caching. Future versions will include support for memcached and flat files.

Installing

Vault can either be installed per-project by downloading a copy from GitHub, or using PEAR.

PEAR Installation

pear channel-discover pear.sodaware.net
pear install sodaware/vault

Using vault

    include 'vault.php';
    
    // Setup vault with APC
    Vault::setup('APC');
    
    // Store something
    Vault::store('my_key', 'hello, world');
    
    // Output it
    echo Vault::fetch('my_key');
    
    // Clear the cache
    Vault::clear();

Supported cache types

The following cache types are currently supported:

↑ Back to Top