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
*
* @create 2018-02-13 23:58
**/
public interface IRedisManager {
/**
* get value from redis
* @param key
* @return
*/
public byte[] get(byte[] key);
/**
* set
* @param key
* @param value
* @return
*/
public byte[] set(byte[] key, byte[] value);
/**
* set
* @param key
* @param value
* @param expire
* @return
*/
public byte[] set(byte[] key, byte[] value, int expire);
/**
* del
* @param key
*/
public void del(byte[] key);
/**
* size
*/
public Long dbSize();
/**
* keys
* @param pattern
* @return
*/
public Set keys(byte[] pattern);
/**
* expire time
* @return
*/
public int getExpire();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy