feat(商城): 代码优化
parent
1ed26e59b0
commit
cf2c30b78d
@ -0,0 +1,28 @@
|
||||
package com.wayn.data.redis.constant;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author: waynaqua
|
||||
* @date: 2023/8/10 22:28
|
||||
*/
|
||||
@Getter
|
||||
public enum RedisKeyEnum {
|
||||
|
||||
ES_SYNC_CACHE(CacheConstants.CACHE_PREFIX + "es_sync_cache", 3600),
|
||||
CART_LOCK(CacheConstants.CACHE_PREFIX + "cart_lock:", 3600),
|
||||
;
|
||||
|
||||
private String key;
|
||||
private Integer expireSecond;
|
||||
|
||||
RedisKeyEnum(String key, Integer expireSecond) {
|
||||
this.key = key;
|
||||
this.expireSecond = expireSecond;
|
||||
}
|
||||
|
||||
public String getKey(Object param) {
|
||||
return this.getKey() + param;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue