php cache's tag archives

PHP cache: data cache

Posted under Article, Development, PHP on Monday, 13 July 2009 by
There is an idea: CACHE FOR CASH. Can be seen CACHE (cache) to reduce the server stress and reduce hardware costs and improve performance are of great significance. From the scope of the cache divided, there are two general caching: page-level cache and data cache class. This is a...
PHP cache: data cache

Cache output and objects

Posted under Development, Open Source, PHP on Sunday, 12 July 2009 by
 This class can be used to cache the output of PHP scripts in files. It checks if a given cache file exists and is updated. If it is updated, it outputs the cached content. Otherwise it starts capturing the output of the current script. When the script is done outputting the content to be...
Cache output and objects

Content cache class

Posted under Article, Development, PHP on Sunday, 12 July 2009 by
This class can be used to cache content in files. It checks whether a given cache file exists. If it exists and is not expired, the class returns the cache file contents. If it has expired, the class removes the cache file. If the cache file does not exist, the class can create a new cache...
Content cache class