<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/cacheaware/home/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 24 Aug 2011 01:45:23 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/cacheaware/home/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v14 
+++ v15 
@@ -38,7 +38,7 @@
 #### The TopLink's *PersistenceProvider* ####
 Resolves TopLink's values holders (proxies) and transient entities, getting the most recent from the underlying database
 
-### The Oracle EclipseLink Persistence Provider Module ###
+### The EclipseLink Persistence Provider Module ###
 A EclipseLink **persistence-provider**, based on a EclipseLink's *session customizer* and a *PersistenceProvider* implementation.
 #### The EclipseLink's *session customizer* (EclipseLinkInterceptor) ####
 Notifies the **core** when a entity's state changes, causing all cached results where that entity took part to be invalidated.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Wed, 24 Aug 2011 01:45:23 -0000</pubDate><guid>https://sourceforge.net6c6f31db8fcf8343746ce8d1e5ae7ca4010e8826</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v13 
+++ v14 
@@ -10,22 +10,40 @@
 
 It's requires three kind on component for work:
 
-* A **core-handler** for acting as a controller of the core module. Currently a implemented by an Spring AoP aspect
-* A **persistence-provider**: for decide when and why a cache should expire caused by a entity's status change. Currently a implemented by and Hibernate interceptor
+* A **core-handler** for acting as a controller of the core module. Currently a implemented by an Spring AoP aspect or by Google Guice
+* A **persistence-provider**: for decide when and why a cache should expire caused by a entity's status change. Currently a implemented by and Hibernate interceptor, by a Oracle TopLink Session Customizer, or by a EclipseLink Session Customizer
 * A **cache-provider**: for holding cached items. You may choose between a HashMap, a Ehcache or a SpyMemcachedClient implementation
 
 ### The Spring AoP Core Handler Module ###
 A **core-handler** based on a Spring AoP aspect.
-It's intercepts all bean's methods annotated with *@CacheAwareFactory* and performs the caching with and *around-kind* aspect.
+It's intercepts all bean's methods annotated with *@CacheAwareFactory* and performs the caching with and an *around-kind* aspect.
+
+### The Google Guice Core Handler Module ###
+A **core-handler** based on a Google Guice module.
+It's intercepts all bean's methods annotated with *@CacheAwareFactory* and performs the caching with and *around-kind* interception.
 
 - - - - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.persistence* ######
 ### The Hibernate Persistence Provider Module ###
 A Hibernate **persistence-provider**, based on a Hibernate's *interceptor* and a *PersistenceProvider* implementation.
 #### The Hibernate's *interceptor* ####
 Notifies the **core** when a entity's state changes, causing all cached results where that entity took part to be invalidated.
 #### The Hibernate's *PersistenceProvider* ####
 Resolves Hibernate's proxies and transient entities, getting the most recent from the underlying database
+
+### The Oracle TopLink Persistence Provider Module ###
+A TopLink **persistence-provider**, based on a TopLink's *session customizer* and a *PersistenceProvider* implementation.
+#### The TopLink's *session customizer* (TopLinkInterceptor) ####
+Notifies the **core** when a entity's state changes, causing all cached results where that entity took part to be invalidated.
+#### The TopLink's *PersistenceProvider* ####
+Resolves TopLink's values holders (proxies) and transient entities, getting the most recent from the underlying database
+
+### The Oracle EclipseLink Persistence Provider Module ###
+A EclipseLink **persistence-provider**, based on a EclipseLink's *session customizer* and a *PersistenceProvider* implementation.
+#### The EclipseLink's *session customizer* (EclipseLinkInterceptor) ####
+Notifies the **core** when a entity's state changes, causing all cached results where that entity took part to be invalidated.
+#### The EclipseLink's *PersistenceProvider* ####
+Resolves EclipseLink's values holders (proxies) and transient entities, getting the most recent from the underlying database
 
 - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.cache* ######
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Wed, 24 Aug 2011 01:43:49 -0000</pubDate><guid>https://sourceforge.netabde8e2e7d768479aecfa4c2c0ab31b249420161</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v12 
+++ v13 
@@ -5,7 +5,7 @@
 - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.core* ######
 ### The Core Module ###
-Its' the central module of the framework.
+It's the central module of the framework.
 It's in charge of analyzing the code inside of a *@CacheAwareFactory* method, caching its result and deciding when and why expire this cache for reflect recent changes on them.
 
 It's requires three kind on component for work:
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 19 Aug 2011 03:53:40 -0000</pubDate><guid>https://sourceforge.netd709f1f26bf9e2683a5518e543d2fce285c73458</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v11 
+++ v12 
@@ -1,5 +1,5 @@
 # CacheAware Framework #
-A simple cache framework for Java. 
+A simple self-refreshing cache framework for Java
 *Simple... yes, ordinary I don't think so!* Check [How It Works].
 
 - - - - - - - - - - - - - - - - - - -
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 19 Aug 2011 03:53:18 -0000</pubDate><guid>https://sourceforge.net19aec29d00da1d9bb2ade89ec7beffeb86acca43</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v10 
+++ v11 
@@ -30,5 +30,6 @@
 - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.cache* ######
 ### The Ehcache Cache Provider Module ###
-This module lets you use the Ehcache framework as a *CacheProvider* for the ### The SpyMemcached Cache Provider Module ###
+This module lets you use the Ehcache framework as a *CacheProvider* for the **core**
+### The SpyMemcached Cache Provider Module ###
 This module lets you use your Memcached servers (if you have any) as a *CacheProvider* for the **core**
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 19 Aug 2011 03:49:18 -0000</pubDate><guid>https://sourceforge.net5768eeec7d594c7fe2de3f7553102c52d1f70741</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v9 
+++ v10 
@@ -12,22 +12,23 @@
 
 * A **core-handler** for acting as a controller of the core module. Currently a implemented by an Spring AoP aspect
 * A **persistence-provider**: for decide when and why a cache should expire caused by a entity's status change. Currently a implemented by and Hibernate interceptor
-* A **cache-provider**: for holding cached items. You may choose between a HashMap or a SpyMemcachedClient implementation
-
+* A **cache-provider**: for holding cached items. You may choose between a HashMap, a Ehcache or a SpyMemcachedClient implementation
+
 ### The Spring AoP Core Handler Module ###
 A **core-handler** based on a Spring AoP aspect.
 It's intercepts all bean's methods annotated with *@CacheAwareFactory* and performs the caching with and *around-kind* aspect.
 
 - - - - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.persistence* ######
 ### The Hibernate Persistence Provider Module ###
 A Hibernate **persistence-provider**, based on a Hibernate's *interceptor* and a *PersistenceProvider* implementation.
 #### The Hibernate's *interceptor* ####
 Notifies the **core** when a entity's state changes, causing all cached results where that entity took part to be invalidated.
 #### The Hibernate's *PersistenceProvider* ####
 Resolves Hibernate's proxies and transient entities, getting the most recent from the underlying database
 
 - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.cache* ######
-### The SpyMemcached Cache Provider Module ###
-This module lets you use your Memcached servers (if you have any) as *CacheProvider* for the **core**
+### The Ehcache Cache Provider Module ###
+This module lets you use the Ehcache framework as a *CacheProvider* for the ### The SpyMemcached Cache Provider Module ###
+This module lets you use your Memcached servers (if you have any) as a *CacheProvider* for the **core**
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 19 Aug 2011 03:48:17 -0000</pubDate><guid>https://sourceforge.nete16a4e32969400b43d23b28031d57ce3d1de743b</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -1,21 +1,22 @@
 # CacheAware Framework #
-A simple cache framework for Java
-
+A simple cache framework for Java. 
+*Simple... yes, ordinary I don't think so!* Check [How It Works].
+
 - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.core* ######
 ### The Core Module ###
 Its' the central module of the framework.
-It's in charge of analyzing the code inside of a @CacheAwareFactory method, caching its result and deciding when and why expire this cache for reflect recent changes on them.
+It's in charge of analyzing the code inside of a *@CacheAwareFactory* method, caching its result and deciding when and why expire this cache for reflect recent changes on them.
 
 It's requires three kind on component for work:
 
 * A **core-handler** for acting as a controller of the core module. Currently a implemented by an Spring AoP aspect
 * A **persistence-provider**: for decide when and why a cache should expire caused by a entity's status change. Currently a implemented by and Hibernate interceptor
 * A **cache-provider**: for holding cached items. You may choose between a HashMap or a SpyMemcachedClient implementation
 
 ### The Spring AoP Core Handler Module ###
 A **core-handler** based on a Spring AoP aspect.
-It's intercepts all bean's methods annotated with @CacheAwareFactory and performs the caching with and *around-kind* aspect.
+It's intercepts all bean's methods annotated with *@CacheAwareFactory* and performs the caching with and *around-kind* aspect.
 
 - - - - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.persistence* ######
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Sat, 13 Aug 2011 02:18:00 -0000</pubDate><guid>https://sourceforge.net810953bd97d224ae79d4d3307b792fe9661c2baf</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 12 Aug 2011 16:59:14 -0000</pubDate><guid>https://sourceforge.netcc5952c4e7aae3a173fb99cce2810ac6aa1c55b2</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -1,26 +1,32 @@
-* an asterisk starts an unordered list
-* and this is another item in the list
-+ or you can also use the + character
-- or the - character
-
 # CacheAware Framework #
 A simple cache framework for Java
 
+- - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.core* ######
 ### The Core Module ###
-Its' the central module of the framework. It's in charge of analyzing the code inside of a @CacheAwareFactory method, caching its result and deciding when and why expire this cache for reflect recent changes on them.
+Its' the central module of the framework.
+It's in charge of analyzing the code inside of a @CacheAwareFactory method, caching its result and deciding when and why expire this cache for reflect recent changes on them.
 
 It's requires three kind on component for work:
-1. A **core-handler** for acting as a controller of the core module. Currently a implemented by an Spring AoP aspect
-+ A **persistence-provider**: for decide when and why a cache should expire caused by a entity's status change. Currently a implemented by and Hibernate interceptor
-+ A **cache-provider**: for holding cached items. You may choose between a HashMap or a SpyMemcachedClient implementation
+
+* A **core-handler** for acting as a controller of the core module. Currently a implemented by an Spring AoP aspect
+* A **persistence-provider**: for decide when and why a cache should expire caused by a entity's status change. Currently a implemented by and Hibernate interceptor
+* A **cache-provider**: for holding cached items. You may choose between a HashMap or a SpyMemcachedClient implementation
 
 ### The Spring AoP Core Handler Module ###
 A **core-handler** based on a Spring AoP aspect.
 It's intercepts all bean's methods annotated with @CacheAwareFactory and performs the caching with and *around-kind* aspect.
 
+- - - - - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.persistence* ######
 ### The Hibernate Persistence Provider Module ###
-
+A Hibernate **persistence-provider**, based on a Hibernate's *interceptor* and a *PersistenceProvider* implementation.
+#### The Hibernate's *interceptor* ####
+Notifies the **core** when a entity's state changes, causing all cached results where that entity took part to be invalidated.
+#### The Hibernate's *PersistenceProvider* ####
+Resolves Hibernate's proxies and transient entities, getting the most recent from the underlying database
+
+- - - - - - - - - - - - - - - - - - - -
 ###### *net.sf.cacheaware.cache* ######
 ### The SpyMemcached Cache Provider Module ###
+This module lets you use your Memcached servers (if you have any) as *CacheProvider* for the **core**
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 12 Aug 2011 16:56:53 -0000</pubDate><guid>https://sourceforge.netd23482c8e606449d4eb59b2f80a179e544067e12</guid></item><item><title>WikiPage Home modified by GMazzo</title><link>https://sourceforge.net/p/cacheaware/home/Home/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -1,3 +1,8 @@
+* an asterisk starts an unordered list
+* and this is another item in the list
++ or you can also use the + character
+- or the - character
+
 # CacheAware Framework #
 A simple cache framework for Java
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GMazzo</dc:creator><pubDate>Fri, 12 Aug 2011 16:44:01 -0000</pubDate><guid>https://sourceforge.netef58f2b28c5b03bd8ef21e3085895bd5ddb66c3e</guid></item></channel></rss>