Element index for package Cotonti
[ a ]
[ b ]
[ c ]
[ d ]
[ e ]
[ f ]
[ g ]
[ i ]
[ m ]
[ p ]
[ r ]
[ s ]
[ t ]
[ u ]
[ w ]
[ x ]
[ _ ]
a
- APC_driver
- in file cache.php, class APC_driver
Accelerated PHP Cache driver implementation. This should be used as default cacher on APC-enabled hosts.
b
- bind
- in file cache.php, method Cache::bind()
Binds an event to automatic cache field invalidation
- bind_array
- in file cache.php, method Cache::bind_array()
Binds multiple cache fields to events, all represented as an associative array
c
- $compressed
- in file cache.php, variable Memcache_driver::$compressed
Compression flag
- Cache
- in file cache.php, class Cache
Multi-layer universal cache controller for Cotonti
- cache.php
- procedural page cache.php
- Cache_driver
- in file cache.php, class Cache_driver
Abstract class containing code common for all cache drivers
- clear
- in file cache.php, method MySQL_cache::clear()
- clear
- in file cache.php, method Page_cache::clear()
Removes an item and all contained items and cache files
- clear
- in file cache.php, method Cache_driver::clear()
Clears all cache entries served by current driver
- clear
- in file cache.php, method eAccelerator_driver::clear()
- clear
- in file cache.php, method Xcache_driver::clear()
- clear
- in file cache.php, method File_cache::clear()
- clear
- in file cache.php, method Memcache_driver::clear()
- clear
- in file cache.php, method Cache::clear()
Clears all cache entries
- clear
- in file cache.php, method APC_driver::clear()
- clear_realm
- in file cache.php, method Cache::clear_realm()
Clears cache in specific realm
- COT_CACHE_TYPE_ALL
- in file cache.php, constant COT_CACHE_TYPE_ALL
Default cache type, uneffective
- COT_CACHE_TYPE_DB
- in file cache.php, constant COT_CACHE_TYPE_DB
Database cache type
- COT_CACHE_TYPE_DISK
- in file cache.php, constant COT_CACHE_TYPE_DISK
Disk cache type
- COT_CACHE_TYPE_MEMORY
- in file cache.php, constant COT_CACHE_TYPE_MEMORY
Shared memory cache type
- COT_CACHE_TYPE_PAGE
- in file cache.php, constant COT_CACHE_TYPE_PAGE
Page cache type
- COT_DEFAULT_REALM
- in file cache.php, constant COT_DEFAULT_REALM
Default cache realm
- COT_DEFAULT_TTL
- in file cache.php, constant COT_DEFAULT_TTL
Default time to live for temporary cache objects
f
- File_cache
- in file cache.php, class File_cache
A persistent cache using local file system tree. It does not use multilevel structure or lexicograph search, so it may slow down when your cache grows very big.
g
- get
- in file cache.php, method APC_driver::get()
- get
- in file cache.php, method Memcache_driver::get()
- get
- in file cache.php, method MySQL_cache::get()
- get
- in file cache.php, method Xcache_driver::get()
- get
- in file cache.php, method eAccelerator_driver::get()
- get
- in file cache.php, method File_cache::get()
Gets an object directly from disk
- get
- in file cache.php, method Cache_driver::get()
Returns value of cached image
- get_all
- in file cache.php, method Db_cache_driver::get_all()
Loads all variables from a specified realm(s) into the global scope
- get_all
- in file cache.php, method MySQL_cache::get_all()
- get_info
- in file cache.php, method APC_driver::get_info()
- get_info
- in file cache.php, method Xcache_driver::get_info()
- get_info
- in file cache.php, method Temporary_cache_driver::get_info()
Returns information about memory usage if available.
- get_info
- in file cache.php, method Cache::get_info()
Returns information about memory driver usage
- get_info
- in file cache.php, method Memcache_driver::get_info()
- get_info
- in file cache.php, method eAccelerator_driver::get_info()
- get_ini_size
- in file cache.php, method Temporary_cache_driver::get_ini_size()
Gets a size limit from php.ini
m
- $mem
- in file cache.php, variable Cache::$mem
Mutable top-layer shared memory driver.
- $memcache
- in file cache.php, variable Memcache_driver::$memcache
PHP Memcache instance
- Memcache_driver
- in file cache.php, class Memcache_driver
Memcache distributed persistent cache driver implementation. Give it a higher priority if a cluster of webservers is used and Memcached is running via TCP/IP between them.
- MySQL_cache
- in file cache.php, class MySQL_cache
A very popular caching solution using MySQL as a storage. It is quite slow compared to File_cache but may be considered more reliable.
p
- $page
- in file cache.php, variable Cache::$page
Page cache driver.
- Page_cache
- in file cache.php, class Page_cache
A cache that stores entire page outputs. Disk-based.
r
- $removed_data
- in file cache.php, variable Writeback_cache_driver::$removed_data
Keys that are to be removed
- read
- in file cache.php, method Page_cache::read()
Reads the page cache object from disk and sends it to output.
- remove
- in file cache.php, method Writeback_cache_driver::remove()
Removes cache image of the object from the database
- remove
- in file cache.php, method APC_driver::remove()
- remove
- in file cache.php, method Memcache_driver::remove()
- remove
- in file cache.php, method Cache_driver::remove()
Removes object image from cache
- remove
- in file cache.php, method eAccelerator_driver::remove()
- remove
- in file cache.php, method File_cache::remove()
Removes cache image of the object from disk
- remove
- in file cache.php, method Xcache_driver::remove()
- remove_now
- in file cache.php, method MySQL_cache::remove_now()
- remove_now
- in file cache.php, method Writeback_cache_driver::remove_now()
Removes item immediately, avoiding writeback.
s
- sed_cache_clear
- in file cache.php, function sed_cache_clear()
Clears cache item
- sed_cache_clearall
- in file cache.php, function sed_cache_clearall()
Clears cache completely
- sed_cache_clearhtml
- in file cache.php, function sed_cache_clearhtml()
Clears HTML-cache
- sed_cache_get
- in file cache.php, function sed_cache_get()
Fetches cache value
- sed_cache_getall
- in file cache.php, function sed_cache_getall()
Get all cache data and import it into global scope
- sed_cache_store
- in file cache.php, function sed_cache_store()
Puts an item into cache
- Static_cache_driver
- in file cache.php, class Static_cache_driver
Static cache is used to store large amounts of rarely modified data
- store
- in file cache.php, method Static_cache_driver::store()
Stores data as object image in cache
- store
- in file cache.php, method Writeback_cache_driver::store()
Stores data as object image in cache
- store
- in file cache.php, method Xcache_driver::store()
- store
- in file cache.php, method eAccelerator_driver::store()
- store
- in file cache.php, method APC_driver::store()
- store
- in file cache.php, method Dynamic_cache_driver::store()
Stores data as object image in cache
- store
- in file cache.php, method File_cache::store()
Stores disk cache entry
- store
- in file cache.php, method Memcache_driver::store()
- store_now
- in file cache.php, method Writeback_cache_driver::store_now()
Writes item to cache immediately, avoiding writeback.
- store_now
- in file cache.php, method MySQL_cache::store_now()
Writes item to cache immediately, avoiding writeback.
t
- Temporary_cache_driver
- in file cache.php, class Temporary_cache_driver
Temporary cache driver is fast in-memory cache. It usually works faster and provides automatic garbage collection, but it doesn't save data if PHP stops whatsoever.
- trigger
- in file cache.php, method Cache::trigger()
Invalidates cache cells which were binded to the event.
u
- unbind
- in file cache.php, method Cache::unbind()
Removes event/cache bindings
x
- Xcache_driver
- in file cache.php, class Xcache_driver
XCache variable cache driver. It should be used on hosts that use XCache for PHP acceleration and variable cache.
|
|