org.crazycake.shiro.IRedisManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shiro-redis Show documentation
Show all versions of shiro-redis Show documentation
shiro only provide the support of ehcache and concurrentHashMap. Here is an implement of redis cache can be used by shiro. Hope it will help you!
package org.crazycake.shiro;
import java.util.Set;
/**
* redisManager interface
*
**/
public interface IRedisManager {
/**
* get value from redis
* @param key
* @return
*/
byte[] get(byte[] key);
/**
* set
* @param key
* @param value
* @return
*/
byte[] set(byte[] key, byte[] value, int expire);
/**
* del
* @param key
*/
void del(byte[] key);
/**
* size
*/
Long dbSize(byte[] pattern);
/**
* keys
* @param pattern
* @return
*/
Set keys(byte[] pattern);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy