package com.kidgrow.redis.constant;
/**
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
*
* @Description: Redis工具类常量
* @Project:
* @CreateDate: Created in 2020/2/4 16:05
* @Author: liuke
*/
public class RedisToolsConstant {
private RedisToolsConstant() {
throw new IllegalStateException("Utility class");
}
/**
* single Redis
*/
public final static int SINGLE = 1 ;
/**
* Redis cluster
*/
public final static int CLUSTER = 2 ;
}