admin 管理员组

文章数量: 887021


2024年1月13日发(作者:餐饮培训课程)

*

减去指定的值 * * @param key * @param integer * @return */ public static Long decrBy(String key, long integer) { Jedis jedis = getJedis(); return (key, integer); } /** *

通过key获取value值的长度 * * @param key * @return */ public static Long strLen(String key) { Jedis jedis = getJedis(); return (key); } /** *

通过key给field设置指定的值,如果key不存在则先创建,如果field已经存在,返回0 * * @param key * @param field * @param value * @return */ public static Long hsetnx(String key, String field, String value) { Jedis jedis = getJedis(); return (key, field, value); } /** *

通过key给field设置指定的值,如果key不存在,则先创建 * * @param key * @param field * @param value * @return */ public static Long hset(String key, String field, String value) { Jedis jedis = getJedis(); return (key, field, value); } /** *

通过key同时设置 hash的多个field * * @param key * @param hash * @return */ public static String hmset(String key, Map hash) { Jedis jedis = getJedis(); return (key, hash); } /** *

通过key

和 field

获取指定的 value * * @param key * @param failed * @return */ public static String hget(String key, String failed) { Jedis jedis = getJedis(); return (key, failed); }


本文标签: 指定 存在 获取 餐饮 课程