grails-cache
grails-cache copied to clipboard
Grails Cache Plugin
The latest documentation available here is for 4.0.x http://grails-plugins.github.io/grails-cache/
I have an application stuck on 2.3.x. It seems that all of the old documentation (before 3.0) has been deleted (or at least not linked from the main docs site...
I have some cache conditions where the value can only be cached if the value is not null. Apparently there is now way to do it in version 4, since...
This issue is related to https://github.com/grails-plugins/grails-cache/issues/49. grails -v _Grails Version: 3.3.7 Groovy Version: 2.4.15 JVM Version: 1.8.0_222_ The following service method will give the stacktrace below. Issue is with how...
The GrailsConcurrentLinkedMapCache.put method is as follows: public void put(Object key, Object value) { this.store.put(key, toStoreValue(value)); } If I configure the cache to not allow null entries, calling the above with...
Consider a method annotated with grails.plugin.cache.Cacheable. testgsp.PanelsRefresher ` @Cacheable(value="gabiTest") public Integer gabiTest() { log.info("Gabi is testing") return 5 }` Consider an aspect that should be executed when gabiTest method is...
Hi! I'm on a project still using Grails 2.4, which seems to only be compatible with version 1 of this plugin. I'm on the documentation page, but I only see...
Given a simple service class annotated with [`@CurrentTenant`](http://gorm.grails.org/6.1.x/api/grails/gorm/multitenancy/CurrentTenant.html): ```groovy @CurrentTenant @Transactional(readOnly = true) class MultiTenantCachingService { @Cacheable('test') def serviceMethod() { } } ``` Calling `serviceMethod()` throws the following exception: ```...
Please add a simple "time to live" functionality, e.g. using Java Timer would be more than enough. Thank you.
@Cacheable(value="token",key = { 1000 }) def getToken(){ this.updateToken() } @CachePut(value="token",key = {1000}) def updateToken(){ // some code get a result ******* // some code get a result return result; }...