摘要:
五、Java操作Redis Redis 的 Java 客户端很多,官方推荐的有三种: Jedis Lettuce Redisson Spring 对 Redis 客户端进行了整合,提供了 Spring Data Redis,在Spring Boot项目中还提供了对应的Starter,即 spring 阅读全文
摘要:
四、Redis常用命令 更多命令可以参考Redis中文网:https://www.redis.net.cn 4.1、字符串String操作命令 Redis 中字符串类型常用命令如下 SET key value 设置指定key GET key 获取指定key的值 SETEX key seconds v 阅读全文
摘要:
三、Redis数据类型 3.1、介绍 Redis存储的是key-value结构的数据,其中key是字符串类型,value有5种常用的数据类型 字符串 string 哈希 hash 列表 list 集合 set 有序集合 sorted set / zset 3.2、Redis 5种常用数据类型 字符串 阅读全文
摘要:
二、Redis入门 2.1、Redis下载与安装 Redis安装包分为windows版和Linux版: Windows版下载地址:https://github.com/microsoftarchive/redis/releases Linux版下载地址: https://download.redis 阅读全文
摘要:
一、Redis概念和作用 1.1、Redis概念 Redis是一款==非关系型数据库==,Redis存储的数据是在==内存==中的,它可以用作数据库、缓存和消息中间件 官网 https://redis.io 概念特点 存取的速度快,因为存储的数据是在内存中的。 Redis是一个基于内存的key-va 阅读全文