Cache
Interfaces, Classes, Traits and Enums
- CacheStorage
- The interface of the cache storage driver.
- ApcuStorage
- Cache storage in the Alternative PHP Cache (APC) or APCu.
- BaseStorage
- The abstract implementation of the cache storage driver.
- Cache
- This class provides the API interface to the cache storage drivers.
- Exception
- Exception handler for the horde/Cache package.
- FileStorage
- Cache storage in the filesystem.
- HashtableStorage
- Cache storage using the Horde_HashTable interface.
- MemcacheStorage
- Cache storage on a memcache installation.
- MemoryoverlayStorage
- A memory overlay for a cache backend. Caches results in PHP memory for the
current access so the underlying cache backend is not continually hit.
- MemoryStorage
- Cache storage in PHP memory.
- MockStorage
- Cache storage in PHP memory.
- MongoStorage
- Cache storage in a MongoDB database.
- NullStorage
- Null cache storage driver.
- SessionStorage
- Cache storage in a PHP session.
- SqlStorage
- Cache storage in a SQL databsae.
- StackStorage
- Driver that loops through a given list of storage drivers to search for a
cached value. Allows for use of caching backends on top of persistent
backends.