Tuesday, May 22, 2012

SuperCache

PHP Scripts - SuperCache - CodeCanyon

SuperCache his title this type of PHPScripts/DatabaseAbstractions This time I will review,made by ser-html, PHPScripts/DatabaseAbstractions is sold at a price of $6 in CodeCanyon.
SuperCache - CodeCanyon Item for Sale
APC // PHP API // cache // memcache //
Created 16 August 12
Last Update 16 August 12
Software Version PHP 5.3, jQuery
Files Included PHP
More Info...SuperCache ..

Changelog

  • V 1 .0
    • Release version
  • V 1 .1
    • Splitted file cache in 2 seperate caching types. Session caching used a lot of resources.
    • Fixed compression bug with memcache
    • Update guestbook example (small update bug).

What is SuperCache

SuperCache is an easy caching API for every project you might need. These classes reduces server load by using cache. There are three types of caching APC , Memcache and FILE /SESSION cache. APC and Memcache uses the PHP Modules so make sure you install them first before using it. File cache doesn’t need anything special.

Features

  • PHP 5 .3+: We used the latest php techniques including namespaces.
  • OO written: We used OO techniques to make it easy adaptable and making it easy to add new caching methods.
  • Compression support: GZIP compression on the data is possible.

Three Cache Types

APC APC is a single server caching mechanism which allow you to cache data. APC also does opcode caching so your php doesn’t have to compile every time. (http://www.php.net/manual/en/book.apc.php) Memcache Memcache is a multi server caching mechanism which allow you to cache data. Memcache is a daemon that runs on your server which makes it possible to connect to it from everywhere you like. Also memcache is not bound to PHP . (http://www.php.net/manual/en/book.memcache.php) File File caching keeps the cache inside the session and rewrites it to the filesystem so we can pick it up again when a user reconnects to the website

How to use

require_once("SuperCache/CacheFactory.php"); $cache = SuperCacheCacheFactory::create("APC"); // use APC, Memcache, File (case-sensitive) $cache->insert($key, $data, $lifetime, $compress); $cache->update($key, $data, $lifetime, $compress); $cache->set($key, $data, $lifetime, $compress); $cache->remove($key); $cache->fetch($key); $cache->exists($key); $cache->clearCache(); $cache = null; $cache = SuperCacheCache::getInstance(); // return Apc cache or the one that was made with factory

No comments:

Post a Comment