diff --git a/readme.md b/readme.md index 59a324f..221d216 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,9 @@ #UNICACHE -__An agnostic universal total PHP caching framework__ +__An agnostic universal caching framework for PHP, Node/JS, Python__ + +python,node implementations in progress.. + ###Contents @@ -10,12 +13,13 @@ __An agnostic universal total PHP caching framework__ * [ChangeLog](#changelog) * [Notes](#notes) + ###How to Use -This is a caching framework for PHP applications that is universal and agnostic and total. +This is a caching framework for applications that is universal and agnostic and total. This means that one can use it easily in her web applications that use any given framework or not use any framework at all. -_Total_ means that the whole requested page is being cached, but one can use the cache classes and factories to cache specifiec parts of the requested page also. +_Total_ means that the whole requested page is being cached (if used as such), but one can use the cache classes and factories to cache specifiec parts of the requested page also. The framework is configured by a config file which easily gets together all parameters, like type of caching, time to live, post-cache user defined filtering and per-page user defined cache disable. @@ -31,9 +35,11 @@ A demo is included with the package. One simply adds an include directive and ba ###TODO +^ add node/js, python implementations * add support for Redis * add support for xCache + ###ChangeLog @@ -43,6 +49,7 @@ part of the code is based on code from: http://www.rooftopsolutions.nl/blog/107 *UNICACHE* is also part of PHP classes http://www.phpclasses.org/package/7530-PHP-Cache-data-in-files-APC-or-Memcached.html + *URL* [Nikos Web Development](http://nikos-web-development.netai.net/ "Nikos Web Development") *URL* [UNICACHE blog post](http://nikos-web-development.netai.net/blog/unicache-universal-caching-framework-for-php/ "UNICACHE blog post") *URL* [WorkingClassCode](http://workingclasscode.uphero.com/ "Working Class Code") diff --git a/src/js/todo.txt b/src/js/todo.txt new file mode 100644 index 0000000..4d94406 --- /dev/null +++ b/src/js/todo.txt @@ -0,0 +1 @@ +todo \ No newline at end of file diff --git a/src/cache-this.php b/src/php/cache-this.php similarity index 100% rename from src/cache-this.php rename to src/php/cache-this.php diff --git a/src/unicache-apccache.class.php b/src/php/unicache-apccache.class.php similarity index 100% rename from src/unicache-apccache.class.php rename to src/php/unicache-apccache.class.php diff --git a/src/unicache-cache.class.php b/src/php/unicache-cache.class.php similarity index 100% rename from src/unicache-cache.class.php rename to src/php/unicache-cache.class.php diff --git a/src/unicache-config.php b/src/php/unicache-config.php similarity index 100% rename from src/unicache-config.php rename to src/php/unicache-config.php diff --git a/src/unicache-factory.class.php b/src/php/unicache-factory.class.php similarity index 100% rename from src/unicache-factory.class.php rename to src/php/unicache-factory.class.php diff --git a/src/unicache-filecache.class.php b/src/php/unicache-filecache.class.php similarity index 100% rename from src/unicache-filecache.class.php rename to src/php/unicache-filecache.class.php diff --git a/src/unicache-memcachedcache.class.php b/src/php/unicache-memcachedcache.class.php similarity index 100% rename from src/unicache-memcachedcache.class.php rename to src/php/unicache-memcachedcache.class.php diff --git a/src/python/todo.txt b/src/python/todo.txt new file mode 100644 index 0000000..4d94406 --- /dev/null +++ b/src/python/todo.txt @@ -0,0 +1 @@ +todo \ No newline at end of file