You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/03/07 18:06:03 UTC

svn commit: r383930 - /incubator/roller/trunk/src/org/roller/presentation/cache/CacheManager.java

Author: agilliland
Date: Tue Mar  7 09:05:58 2006
New Revision: 383930

URL: http://svn.apache.org/viewcvs?rev=383930&view=rev
Log:
need to properly formulate cache key if we expect to get values.


Modified:
    incubator/roller/trunk/src/org/roller/presentation/cache/CacheManager.java

Modified: incubator/roller/trunk/src/org/roller/presentation/cache/CacheManager.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/presentation/cache/CacheManager.java?rev=383930&r1=383929&r2=383930&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/presentation/cache/CacheManager.java (original)
+++ incubator/roller/trunk/src/org/roller/presentation/cache/CacheManager.java Tue Mar  7 09:05:58 2006
@@ -404,7 +404,7 @@
      * Get the date of the last time the specified weblog was invalidated.
      */
     public static Date getLastExpiredDate(String weblogHandle) {
-        return (Date) lastExpiredCache.get(weblogHandle);
+        return (Date) lastExpiredCache.get("lastExpired:"+weblogHandle);
     }