org.hibernate.cache.redis.jedis.JedisPipelinedCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-redis Show documentation
Show all versions of hibernate-redis Show documentation
Hibernate second level cache with Redis
package org.hibernate.cache.redis.jedis;
import redis.clients.jedis.Pipeline;
/**
* Execute method using Redis {@link redis.clients.jedis.Pipeline}
*
* @author [email protected]
* @since 2013. 11. 16. 오후 1:46
*/
public interface JedisPipelinedCallback {
/**
* execute using Redis Pipeline.
*
* @param pipeline Jedis Pipeline
*/
void execute(final Pipeline pipeline);
}