net.dreamlu.mica.redis.cache.RedisCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mica-redis Show documentation
Show all versions of mica-redis Show documentation
An enhanced toolkit of Spring cloud to simplify development.
package net.dreamlu.mica.redis.cache;
/**
* redis常量
*
* @author BlackR
*/
public class RedisCommand {
public static final String BITCOUNT = "BITCOUNT";
/**
* redis 版本 7.0以上
*/
public enum BitMapModel {
/**
* BYTE
*/
BYTE,
/**
* BIT
*/
BIT,
}
}