2017 © Pedro Peláez
 

library phpfastcache

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

image

phpfastcache/phpfastcache

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  • Wednesday, July 25, 2018
  • by khoaofgod
  • Repository
  • 140 Watchers
  • 1790 Stars
  • 296,878 Installations
  • PHP
  • 70 Dependents
  • 8 Suggesters
  • 398 Forks
  • 0 Open issues
  • 100 Versions
  • 15 % Grown

The README.md

Total Downloads Latest Stable Version PHPSTAN Cache Interface Extended Coding Style Simple Cache Code Climate Scrutinizer Code Quality Build Status Semver compliant License Patreon, (*1)

:warning: Please note that the V9 is mostly a PHP 8 type aware update of Phpfastcache with some significant changes !

As the V9 is relatively not compatible with previous versions, please read carefully the migration guide to ensure you the smoothest migration possible. One of the biggest changes is the configuration system which is now an object that replace the primitive array that we used to implement back then. Also, please note that the V9 requires at least PHP 8 or higher to works properly., (*2)


Simple Yet Powerful PHP Caching Class

More information in Wiki The simplicity of abstraction: One class for many backend cache. You don't need to rewrite your code many times again., (*3)

Supported drivers at this day *

:bulb: Feel free to propose a driver by making a new Pull Request, they are welcome !, (*4)

Regular drivers High performances drivers Development drivers (Core) Cluster-Aggregated drivers (Core)
Apcu (Core)
_(APC support removed)_
Arangodb (Extension) Devnull FullReplicationCluster
Dynamodb (Extension) Cassandra
(PHP extension is no more maintained by Datastax, might be deprecated in v10)
Devrandom SemiReplicationCluster
Files (Core) CouchBasev3 (Core)_
(Will be deprecated as of v10)_
Memory
(Previously named Memstatic)
MasterSlaveReplicationCluster
Firestore (Extension) CouchBasev4 (Extension) RandomReplicationCluster
Leveldb (Core) Couchdb (Extension)
Memcache(d) (Core) Mongodb (Extension)
Solr (Extension) Predis (Core)
Sqlite (Core) Ravendb _(Extension)
Wincache (Core)
(Deprecated as of v9.2, will be removed as of v10)
Relay (By end of 2024)
Zend Disk Cache (Core) Redis/RedisCluster (Core)
Ssdb (Core)
Zend Memory Cache (Core)

* Driver descriptions available in DOCS/DRIVERS.md, (*5)

:new: As of v9.2 a new Couchbase extension has been released: Couchbasev4 Also a new driver extension has been added: Ravendb. The driver will be actively developed in the feature to allow better fine-grained configuration. This new extension is the beginning of a new era for Phpfastcache along with some others:\ Many drivers has been moved from the core to their own sub-repository as a standalone extension: Arangodb, Couchdb, Dynamodb, Firestore, Mongodb, Solr.\ They can be easily added through composer, ex: composer install phpfastcache/couchbasev4-extension However Couchbasev3 will stay in the core for compatibility reasons but will be deprecated., (*6)


Because caching does not mean weaken your code

Phpfastcache has been developed over the years with 3 main goals:, (*7)

  • Performance: We optimized and still optimize the code to provide you the lightest library as possible
  • Security: Because caching strategies can sometimes comes with unwanted vulnerabilities, we do our best to provide you a sage & strong library as possible
  • Portability: No matter what operating system you're working on, we did our best to provide you the most cross-platform code as possible

Rich Development API

Phpfastcache provides you a lot of useful APIs:, (*8)

Item API (ExtendedCacheItemInterface)

| Method | Return | Description | |-------------------------------------------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------| | addTag($tagName) | ExtendedCacheItemInterface | Adds a tag | | addTags(array $tagNames) | ExtendedCacheItemInterface | Adds multiple tags | | append($data) | ExtendedCacheItemInterface | Appends data to a string or an array (push) | | decrement($step = 1) | ExtendedCacheItemInterface | Redundant joke... | | expiresAfter($ttl) | ExtendedCacheItemInterface | Allows you to extends the lifetime of an entry without altering its value (formerly known as touch()) | | expiresAt($expiration) | ExtendedCacheItemInterface | Sets the expiration time for this cache item (as a DateTimeInterface object) | | get() | mixed | The getter, obviously, returns your cache object | | getCreationDate() | \DatetimeInterface | Gets the creation date for this cache item (as a DateTimeInterface object) * | | getDataAsJsonString() | string | Return the data as a well-formatted json string | | getEncodedKey() | string | Returns the final and internal item identifier (key), generally used for debug purposes | | getExpirationDate() | ExtendedCacheItemInterface | Gets the expiration date as a Datetime object | | getKey() | string | Returns the item identifier (key) | | getLength() | int | Gets the data length if the data is a string, array, or objects that implement \Countable interface. | | getModificationDate() | \DatetimeInterface | Gets the modification date for this cache item (as a DateTimeInterface object) * | | getTags() | string[] | Gets the tags | | hasTag(string $tagName) | bool | Check if the cache item contain one specific tag | | hasTags(array $tagNames, int $strategy): bool | bool | Check if the cache item contain one or more specific tag with optional strategy (default to TAG_STRATEGY_ONE) | | isTagged(): bool | bool | Check if the cache item has at least one tag (v9.2) | | getTagsAsString($separator = ', ') | string | Gets the data as a string separated by $separator | | getTtl() | int | Gets the remaining Time To Live as an integer | | increment($step = 1) | ExtendedCacheItemInterface | To allow us to count on an integer item | | isEmpty() | bool | Checks if the data is empty or not despite the hit/miss status. | | isExpired() | bool | Checks if your cache entry is expired | | isHit() | bool | Checks if your cache entry exists and is still valid, it's the equivalent of isset() | | isNull() | bool | Checks if the data is null or not despite the hit/miss status. | | prepend($data) | ExtendedCacheItemInterface | Prepends data to a string or an array (unshift) | | removeTag($tagName) | ExtendedCacheItemInterface | Removes a tag | | removeTags(array $tagNames) | ExtendedCacheItemInterface | Removes multiple tags | | set($value) | ExtendedCacheItemInterface | The setter, for those who missed it, can be anything except resources or non-serializer object (ex: PDO objects, file pointers, etc). | | setCreationDate($expiration) | \DatetimeInterface | Sets the creation date for this cache item (as a DateTimeInterface object) * | | setEventManager($evtMngr) | ExtendedCacheItemInterface | Sets the event manager | | setExpirationDate() | ExtendedCacheItemInterface | Alias of expireAt() (for more code logic) | | setModificationDate($expiration) | \DatetimeInterface | Sets the modification date for this cache item (as a DateTimeInterface object) * | | setTags(array $tags) | ExtendedCacheItemInterface | Sets multiple tags | * Require configuration directive "itemDetailedDate" to be enabled, else a \LogicException will be thrown, (*9)

ItemPool API (ExtendedCacheItemPoolInterface)

Methods (By Alphabetic Order) Return Description
appendItemsByTag($tagName, $data) bool Appends items by a tag
appendItemsByTags(array $tagNames, $data) bool Appends items by one of multiple tag names
attachItem($item) void (Re-)attaches an item to the pool
clear() bool Allows you to completely empty the cache and restart from the beginning
commit() bool Persists any deferred cache items
decrementItemsByTag($tagName, $step = 1) bool Decrements items by a tag
decrementItemsByTags(array $tagNames, $step = 1) bool Decrements items by one of multiple tag names
deleteItem($key) bool Deletes an item
deleteItems(array $keys) bool Deletes one or more items
deleteItemsByTag($tagName) bool Deletes items by a tag
deleteItemsByTags(array $tagNames, int $strategy) bool Deletes items by one of multiple tag names
detachItem($item) void Detaches an item from the pool
getConfig() ConfigurationOption Returns the configuration object
getConfigOption($optionName); mixed Returns a configuration value by its key $optionName
getDefaultConfig() ConfigurationOption Returns the default configuration object (not altered by the object instance)
getDriverName() string Returns the current driver name (without the namespace)
getEventManager() EventManagerInterface Gets the event manager
getHelp() string Provides a very basic help for a specific driver
getInstanceId() string Returns the instance ID
getItem($key) ExtendedCacheItemInterface Retrieves an item and returns an empty item if not found
getItems(array $keys) ExtendedCacheItemInterface[] Retrieves one or more item and returns an array of items. As of v9.2 an internal improvement has been made to this method.
getAllItems(string $pattern = '') ExtendedCacheItemInterface[] (v9.2) Retrieves all cache items with a hard limit of 9999 items. Support limited to some drivers
getItemsAsJsonString(array $keys) string Returns A json string that represents an array of items
getItemsByTag($tagName, $strategy) ExtendedCacheItemInterface[] Returns items by a tag
getItemsByTags(array $tagNames, $strategy) ExtendedCacheItemInterface[] Returns items by one of multiple tag names
getItemsByTagsAsJsonString(array $tagNames, $strategy) string Returns A json string that represents an array of items corresponding
getStats() DriverStatistic Returns the cache statistics as an object, useful for checking disk space used by the cache etc.
hasEventManager() bool Check the event manager
hasItem($key) bool Tests if an item exists
incrementItemsByTag($tagName, $step = 1, $strategy) bool Increments items by a tag
incrementItemsByTags(array $tagNames, $step = 1, $strategy) bool Increments items by one of multiple tag names
isAttached($item) bool Verify if an item is (still) attached
prependItemsByTag($tagName, $data, $strategy) bool Prepends items by a tag
prependItemsByTags(array $tagNames, $data, $strategy) bool Prepends items by one of multiple tag names
save(CacheItemInterface $item) bool Persists a cache item immediately
saveDeferred(CacheItemInterface $item) bool Sets a cache item to be persisted later
saveMultiple(...$items) bool Persists multiple cache items immediately
setEventManager(EventManagerInterface $evtMngr) ExtendedCacheItemPoolInterface Sets the event manager

:new: in V8: Multiple strategies ($strategy) are now supported for tagging: - TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE allows you to get cache item(s) by at least ONE of the specified matching tag(s). Default behavior. - TaggableCacheItemPoolInterface::TAG_STRATEGY_ALL allows you to get cache item(s) by ALL of the specified matching tag(s) (the cache item can have additional tag(s)) - TaggableCacheItemPoolInterface::TAG_STRATEGY_ONLY allows you to get cache item(s) by ONLY the specified matching tag(s) (the cache item cannot have additional tag(s)), (*10)

It also supports multiple calls, Tagging, Setup Folder for caching. Look at our examples folders for more information., (*11)

Phpfastcache versioning API

Phpfastcache provides a class that gives you basic information about your Phpfastcache installation - Get the API version (Item+Pool interface) with Phpfastcache\Api::GetVersion(); - Get the API changelog (Item+Pool interface) Phpfastcache\Api::getChangelog(); - Get the Phpfastcache version with Phpfastcache\Api::getPhpfastcacheVersion(); - Get the Phpfastcache changelog Phpfastcache\Api::getPhpfastcacheChangelog();, (*12)


Want to keep it simple ?

:sweat_smile: Good news, as of the V6, a Psr16 adapter is provided to keep the cache simplest using very basic getters/setters:, (*13)

  • get($key, $default = null);
  • set($key, $value, $ttl = null);
  • delete($key);
  • clear();
  • getMultiple($keys, $default = null);
  • setMultiple($values, $ttl = null);
  • deleteMultiple($keys);
  • has($key);

Basic usage:, (*14)

<?php

use Phpfastcache\Helper\Psr16Adapter;

$defaultDriver = 'Files';
$Psr16Adapter = new Psr16Adapter($defaultDriver);

if(!$Psr16Adapter->has('test-key')){
    // Setter action
    $data = 'lorem ipsum';
    $Psr16Adapter->set('test-key', 'lorem ipsum', 300);// 5 minutes
}else{
    // Getter action
    $data = $Psr16Adapter->get('test-key');
}


/**
* Do your stuff with $data
*/

Internally, the Psr16 adapter calls the Phpfastcache Api via the cache manager., (*15)


Introducing to events

:mega: As of the V6, Phpfastcache provides an event mechanism. You can subscribe to an event by passing a Closure to an active event:, (*16)

<?php

use Phpfastcache\EventManager;

/**
* Bind the event callback
*/
EventManager::getInstance()->onCacheGetItem(function(ExtendedCacheItemPoolInterface $itemPool, ExtendedCacheItemInterface $item){
    $item->set('[HACKED BY EVENT] ' . $item->get());
});

An event callback can get unbind but you MUST provide a name to the callback previously:, (*17)

<?php
use Phpfastcache\EventManager;

/**
* Bind the event callback
*/
EventManager::getInstance()->onCacheGetItem(function(ExtendedCacheItemPoolInterface $itemPool, ExtendedCacheItemInterface $item){
    $item->set('[HACKED BY EVENT] ' . $item->get());
}, 'myCallbackName');


/**
* Unbind the event callback
*/
EventManager::getInstance()->unbindEventCallback('onCacheGetItem', 'myCallbackName');

:new: As of the V8 you can simply subscribe to every event of Phpfastcache., (*18)

More information about the implementation and the events are available on the Wiki, (*19)


Introducing new helpers

:books: As of the V6, Phpfastcache provides some helpers to make your code easier., (*20)

May more will come in the future, feel free to contribute !, (*21)


Introducing aggregated cluster support

Check out the WIKI to learn how to implement aggregated cache clustering feature., (*22)


As Fast To Implement As Opening a Beer

:thumbsup: Step 1: Include phpFastCache in your project with composer:

composer require phpfastcache/phpfastcache

:construction: Step 2: Setup your website code to implement the phpFastCache calls (with Composer)

<?php
use Phpfastcache\CacheManager;
use Phpfastcache\Config\ConfigurationOption;

// Setup File Path on your config files
// Please note that as of the V6.1 the "path" config 
// can also be used for Unix sockets (Redis, Memcache, etc)
CacheManager::setDefaultConfig(new ConfigurationOption([
    'path' => '/var/www/phpfastcache.com/dev/tmp', // or in windows "C:/tmp/"
]));

// In your class, function, you can call the Cache
$InstanceCache = CacheManager::getInstance('files');

/**
 * Try to get $products from Caching First
 * product_page is "identity keyword";
 */
$key = "product_page";
$CachedString = $InstanceCache->getItem($key);

$your_product_data = [
    'First product',
    'Second product',
    'Third product'
     /* ... */
];

if (!$CachedString->isHit()) {
    $CachedString->set($your_product_data)->expiresAfter(5);//in seconds, also accepts Datetime
    $InstanceCache->save($CachedString); // Save the cache item just like you do with doctrine and entities

    echo 'FIRST LOAD // WROTE OBJECT TO CACHE // RELOAD THE PAGE AND SEE // ';
    echo $CachedString->get();

} else {
    echo 'READ FROM CACHE // ';
    echo $CachedString->get()[0];// Will print 'First product'
}

/**
 * use your products here or return them;
 */
echo implode('<br />', $CachedString->get());// Will echo your product list

:zap: Step 3: Enjoy ! Your website is now faster than lightning !

For curious developers, there is a lot of other examples available here., (*23)

:boom: Phpfastcache support

Found an issue or have an idea ? Come here and let us know !, (*24)

The Versions

25/07 2018

dev-master

9999999-dev https://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

23/07 2018

7.0.2

7.0.2.0 https://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

22/06 2018

7.0.1

7.0.1.0 https://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

08/06 2018

v6.x-dev

6.9999999.9999999.9999999-dev http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

08/06 2018

6.1.3

6.1.3.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

31/05 2018

v5.x-dev

5.9999999.9999999.9999999-dev http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

27/05 2018

7.0.0

7.0.0.0 https://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

15/05 2018

7.0.0-RC4

7.0.0.0-RC4 http://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

09/05 2018

7.0.0-RC3

7.0.0.0-RC3 http://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

08/05 2018

7.0.0-RC2

7.0.0.0-RC2 http://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

29/04 2018

v7.x-dev

7.9999999.9999999.9999999-dev http://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

08/04 2018

7.0.0-rc

7.0.0.0-RC http://www.phpfastcache.com

PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend abstract couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

07/04 2018

dev-final

dev-final http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

23/03 2018

6.1.2

6.1.2.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

17/03 2018

7.0.0-beta3

7.0.0.0-beta3 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

04/03 2018

7.0.0-beta2

7.0.0.0-beta2 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

01/03 2018

6.1.1

6.1.1.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

01/03 2018

5.0.21

5.0.21.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

30/01 2018

5.0.20

5.0.20.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

30/01 2018

6.1.0

6.1.0.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

30/01 2018

7.0.0-beta

7.0.0.0-beta http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

15/12 2017

7.0.0-alpha3

7.0.0.0-alpha3 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

15/12 2017

6.0.8

6.0.8.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

10/11 2017

6.0.7

6.0.7.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

10/11 2017

7.0.0-alpha2

7.0.0.0-alpha2 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

10/11 2017

5.0.19

5.0.19.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

24/10 2017

v4.x-dev

4.9999999.9999999.9999999-dev http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

19/10 2017

6.0.6

6.0.6.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

18/10 2017

7.0.0-alpha

7.0.0.0-alpha http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

03/09 2017

6.0.5

6.0.5.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

06/08 2017

5.0.18

5.0.18.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

31/07 2017

5.0.17

5.0.17.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

31/07 2017

6.0.4

6.0.4.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

14/07 2017

6.0.3

6.0.3.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

25/06 2017

6.0.2

6.0.2.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

19/05 2017

6.0.1

6.0.1.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

30/04 2017

6.0.0

6.0.0.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

25/04 2017

6.0.0-rc4

6.0.0.0-RC4 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

13/04 2017

5.0.16

5.0.16.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

25/03 2017

6.x-dev

6.9999999.9999999.9999999-dev http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

16/03 2017

6.0.0-rc3

6.0.0.0-RC3 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

12/02 2017

6.0.0-rc2

6.0.0.0-RC2 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend couchdb cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

04/02 2017

5.0.15

5.0.15.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

25/01 2017

6.0.0-rc1

6.0.0.0-RC1 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend cassandra apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

24/01 2017

4.3.18

4.3.18.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

05/01 2017

5.0.14

5.0.14.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

04/01 2017

6.0.0-beta2

6.0.0.0-beta2 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

01/01 2017

5.0.13

5.0.13.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

21/12 2016

6.0.0-beta1

6.0.0.0-beta1 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

13/12 2016

5.0.12

5.0.12.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

19/11 2016

5.0.11

5.0.11.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

12/11 2016

6.0.0-alpha2

6.0.0.0-alpha2 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

17/09 2016

5.0.10

5.0.10.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

17/09 2016

6.0.0-alpha

6.0.0.0-alpha http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

21/08 2016

5.0.9

5.0.9.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

04/08 2016

5.0.8

5.0.8.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class zend apcu couchbase xcache ssdb zend server leveldb zend disk cache zend memory cache zend data cache

30/07 2016

5.0.7

5.0.7.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

30/07 2016

5.0.6

5.0.6.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

11/07 2016

5.0.5

5.0.5.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handle a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

09/07 2016

5.0.4

5.0.4.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handle a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

06/07 2016

5.0.3

5.0.3.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handle a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

04/07 2016

5.0.2

5.0.2.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handle a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

02/07 2016

5.0.1

5.0.1.0 http://www.phpfastcache.com

PHP Cache Class - Reduce your database call using cache system. PhpFastCache handle a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.

  Sources   Download

MIT

The Requires

 

mongodb cache redis memcache predis apc caching memcached cookie wincache mysql cache php cache files cache pdo cache cache class apcu couchbase xcache ssdb leveldb

01/07 2016

5.0.0

5.0.0.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

26/06 2016

5.0.0-rc3

5.0.0.0-RC3 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

18/06 2016

5.0.0-rc2

5.0.0.0-RC2 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

06/06 2016

5.0.0-rc1

5.0.0.0-RC1 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

27/05 2016

5.0.0-beta2

5.0.0.0-beta2 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

19/05 2016

5.0.0-beta1

5.0.0.0-beta1 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

18/05 2016

4.3.17

4.3.17.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

16/05 2016

5.0.0-alpha2

5.0.0.0-alpha2 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

15/05 2016

5.0.0-alpha1

5.0.0.0-alpha1 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

14/04 2016

4.3.16

4.3.16.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

12/04 2016

4.3.15

4.3.15.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

26/03 2016

4.3.14

4.3.14.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

24/03 2016

4.3.13

4.3.13.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

24/03 2016

4.3.12

4.3.12.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

03/03 2016

4.3.11

4.3.11.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

03/03 2016

4.3.10

4.3.10.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

03/03 2016

4.3

4.3.0.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

03/03 2016

4.3.9

4.3.9.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

28/02 2016

4.3.8

4.3.8.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

26/02 2016

4.3.7

4.3.7.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

21/02 2016

4.3.6

4.3.6.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

21/02 2016

4.3.5

4.3.5.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

14/02 2016

4.3.4

4.3.4.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

14/02 2016

4.3.3

4.3.3.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

13/02 2016

4.3.2

4.3.2.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

13/02 2016

4.3.1

4.3.1.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

12/02 2016

4.2.4

4.2.4.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

11/02 2016

4.2.3

4.2.3.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

10/02 2016

4.2.2

4.2.2.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

10/02 2016

4.2.1

4.2.1.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

10/02 2016

4.1.1

4.1.1.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

10/02 2016

4.1

4.1.0.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

09/02 2016

4.0.18

4.0.18.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

09/02 2016

4.0.17

4.0.17.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

08/02 2016

4.0.16

4.0.16.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

08/02 2016

4.0.15

4.0.15.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class

08/02 2016

4.0.14

4.0.14.0 http://www.phpfastcache.com

PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cache redis memcache predis apc caching memcached apc cache cookie wincache mysql cache php cache files cache pdo cache cache class