All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zc.smartcity.redis.enums.ExistEnum Maven / Gradle / Ivy

The newest version!
package com.zc.smartcity.redis.enums;

/**
 * 

* ExistEnum *

* * @author: hejianhui * @see ExistEnum * @since JDK1.8 */ public enum ExistEnum { /** * NX -- Only set the key if it does not already exist. * XX -- Only set the key if it already exist. * NX --有此参数时只能 set 不存在的key,如果给已经存在的key set 值则不生效, * XX -- 此参数只能设置已经存在的key 的值,不存在的不生效 * */ NX,XX }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy