All Downloads are FREE. Search and download functionalities are using the official Maven repository.

grails.plugins.redis.MemoizeHashField.groovy Maven / Gradle / Ivy

Go to download

This Plugin provides access to Redis and various utilities(service, annotations, etc) for caching.

The newest version!
package grails.plugins.redis

import java.lang.annotation.ElementType
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import java.lang.annotation.Target
import org.codehaus.groovy.transform.GroovyASTTransformationClass

/**
 */
@Retention(RetentionPolicy.SOURCE)
@Target([ElementType.METHOD])
@GroovyASTTransformationClass(['grails.plugins.redis.ast.MemoizeHashFieldASTTransformation'])
@interface MemoizeHashField {
    String key() default '';
    String member() default '';
    String expire() default '';
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy