storetype.java
来自「memcached JAVA客户端API,应用广泛,运行比较稳定。」· Java 代码 · 共 21 行
JAVA
21 行
package net.spy.memcached.ops;/** * The type of storage operation to perform. */public enum StoreType { /** * Unconditionally store a value in the cache. */ set, /** * Store a value in the cache iff there is not already something stored * for the given key. */ add, /** * Store a value in the cache iff there is already something stored for * the given key. */ replace}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?