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);
}