AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / include / phpCache / ChangeLog
1 phpCache 1.4:
2         - added $CACHE_HAS["function"] which tells phpCache what functions it can and cant use.  This is for compatibility with php3.
3         - added cache_purge() and cache_purge_all()
4         - cache expire variables and cache variables now have the same scope.  You can now access normal variables from the cache_expire_if() and vice-versa.
5         - Backported to PHP3, added cache_output() for outputting to the cache output (since php3 does not have output buffering).
6         - Storing key/object inside of the cache meta data.  For future use.
7         - Added support for CACHE_MAX_FILENAME_LEN.  If a filename length is longer than CACHE_MAX_FILENAME_LEN, an md5 of it will be used instead.  This prevents fs max file length from occuring if the url is very long. 
8
9 phpCache 1.3:
10         - A few tweaks here and there.  Hi Becca!
11         - Cache time is now checked for a change.  If the cache time was changed, cache expires immediately (now you can get rid of those infinite caches without dynamic expressions or an rm :) ).
12         - Support for cache dir hashes.  Cache is now distributed over multiple dirs.  This will speed up sites that have thousands of cache pages.  GC was also redone.  If the GC probability is hit, it will be run on only ONE cache dir (not the entire structure!).  You should use gc.php if you want a complete cleanup, read the header for more information.
13         - phpCache no longer takes control of the output buffering, it just reads the existing content.  It should now be safe to let ob_start() use a different handler without any problems.
14         - Added KFC (Kentucky Fried Cache).  The name is cool eh?  It strips out various things that wont be needed once you get phpCache up and running.  See KentuckyFriedCache.pl for information.
15         
16 phpCache 1.2:
17         - Added support for conditional expires.  See expire_mtime.php and expire_every10s.php for examples.
18         - Added support for infinite caching (pass a cache time of 0).  Thanks to Heath Boutwell for the idea.
19
20 phpCache 1.1:
21         - Added support for caching headers.  cache_header().
22         - Added two new demos.  thumbnails.php and pager.php.
23         - Added support for cache_variable() that allows you to
24                 maintain a variable state between the cache and the
25                 uncached versions.  See pager.php
26         - Changed the default object key to use a md5sum of all the
27                 passed data.
28
29 phpCache 1.0:
30         Intial Release