continuing new cache integration

This commit is contained in:
JT Smith 2009-09-24 23:51:29 -05:00
parent 5dcb58a42a
commit 880ee82009
4 changed files with 44 additions and 0 deletions

View file

@ -7,6 +7,18 @@ upgrading from one version to the next, or even between multiple
versions. Be sure to heed the warnings contained herein as they will
save you many hours of grief.
8.0.0
--------------------------------------------------------------------
* WebGUI 8 is not API compatible with WebGUI 7. If you have custom
code, chances are you'll need to update it to make it work with
WebGUI 8.
* WebGUI now requires memcached.
* WebGUI now requires the following Perl Modules:
- Memcached::libmemcached (0.3102)
7.8.0
--------------------------------------------------------------------

View file

@ -4,3 +4,12 @@ WebGUI 8 Migration Guide
The information contained herein documents the API changes that have occurred in the WebGUI 8 development effort and how to migrate your code to accomodate the new APIs.
WebGUI::Cache
=============
WebGUI::Cache has been completely rewritten. If you were using the cache API in the past, you'll need to update your code to reflect the changes. NOTE: you can get a cached reference to the cache object from WebGUI::Session, which will be substantially faster than instantiating the object yourself.
my $cache = $session->cache;