随笔分类 -  Redis

摘要:本地安装 Redis Redis 安装:https://www.cnblogs.com/oukele/p/11373052.html 项目结构: SpringBootRedis 工程项目结构如下: controller - Controller 层 dao - 数据操作层 model - 实体层 s 阅读全文
posted @ 2019-08-20 00:30 追梦滴小蜗牛 阅读(4311) 评论(0) 推荐(0) 编辑
摘要:1、Redis 的 Java API Java 中 使用 Redis 工具,要先去 maven 仓库中,下载 jedis jar包 jedis 依赖 <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId 阅读全文
posted @ 2019-01-09 20:56 追梦滴小蜗牛 阅读(665) 评论(0) 推荐(0) 编辑
摘要:这只是一个简单的例子。。 pom.xml SpringConfig类 Car类 CarDao类 Main类(测试类) 测试结果: 1 Car{id=1, name='宝马', speed=34.3} 示例源码下载:https://github.com/oukele/Spring-Jedis 阅读全文
posted @ 2018-12-25 19:49 追梦滴小蜗牛 阅读(483) 评论(0) 推荐(0) 编辑
摘要:Redis 数据结构 --链表(linked-list) 阅读全文
posted @ 2018-12-25 16:51 追梦滴小蜗牛 阅读(548) 评论(0) 推荐(0) 编辑
摘要:Redis 数据结构 -- 哈希 hash 是 一个 String 类型的field 和 value 的映射表 hash 的键值 对在内存中的一种无序的状态 角色hash 结构 参考地址:http://redisdoc.com/ 阅读全文
posted @ 2018-12-25 10:52 追梦滴小蜗牛 阅读(2013) 评论(0) 推荐(0) 编辑
摘要:Redis 的简单运算 参考地址:http://redisdoc.com/ 阅读全文
posted @ 2018-12-25 10:16 追梦滴小蜗牛 阅读(691) 评论(0) 推荐(0) 编辑
摘要:字符串是 Redis 最基本的数据结构,它将以一个键 和一个值 储存在 Redis 内部。 字符串的一些基本命令 Redis 中文文档参考地址:http://redisdoc.com/ 阅读全文
posted @ 2018-12-25 08:29 追梦滴小蜗牛 阅读(299) 评论(0) 推荐(0) 编辑
摘要:下载Redis压缩包。地址:https://github.com/MicrosoftArchive/redis/releases 下载完成后,双击运行安装程序。 点击 Next 。 点击 Next 等待完成安装,然后点击 finish (完成) 然后,打开cmd 窗口命令 输入 redis-cli 阅读全文
posted @ 2018-12-24 07:52 追梦滴小蜗牛 阅读(157) 评论(0) 推荐(1) 编辑