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
通过key
和 field
获取指定的 value * * @param key * @param failed * @return */ public static String hget(String key, String failed) { Jedis jedis = getJedis(); return (key, failed); }
版权声明:本文标题:SpringMVC整合Redis(包含java工具类) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1705094581h472976.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论