org.codehaus.groovy.grails.web.mapping
[Java] Class UrlCreatorCache
java.lang.Object
org.codehaus.groovy.grails.web.mapping.UrlCreatorCache
@SuppressWarnings({ "unchecked", "rawtypes" })
public class UrlCreatorCache
extends java.lang.Object
Implements caching layer for UrlCreator
The "weight" of the cache is the estimated number of characters all cache entries will consume in memory.
The estimate is not accurate. It's just used as a hard limit for limiting the cache size.
You can tune the maximum weight of the cache by setting "grails.urlcreator.cache.maxsize" in Config.groovy.
The default value is 160000 .
- Authors:
- Lari Hotari
- Since:
- 1.3.5
Methods inherited from class java.lang.Object
|
java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
UrlCreatorCache
public UrlCreatorCache(int maxSize)
-
clear
public void clear()
-
createKey
public UrlCreatorCache.ReverseMappingKey createKey(java.lang.String controller, java.lang.String action, java.lang.String pluginName, java.util.Map params)
-
lookup
public UrlCreator lookup(UrlCreatorCache.ReverseMappingKey key)
-
putAndDecorate
public UrlCreator putAndDecorate(UrlCreatorCache.ReverseMappingKey key, UrlCreator delegate)
-
Groovy Documentation