Redis
文章平均质量分 53
Redis知识体系
Lucky扬
这个作者很懒,什么都没留下…
展开
-
Redis实战(四):Springboot整合Redis
一、引入依赖由于 Springboot 2 使用 lettuce 作为默认的连接 Redis 的客户端程序,redis lettuce pool 需要 commons-pool2 依赖,因此需要引入。<!-- Redis --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redi原创 2022-02-10 15:28:37 · 1421 阅读 · 0 评论 -
Redis实战(三):Redis常用命令
目录一、启动服务二、进入客户端三、输入密码四、设置缓存五、获取缓存六、删除缓存七、关闭Redis八、查看是否存活九、清空数据库十、切换数据库十一、删除当前数据库的所有数据十二、删除所有数据库的所有数据十三、清屏一、启动服务./bin/redis-server ./redis.conf二、进入客户端./redis-cli三、输入密码auth pwd四、设置缓存set key value五、获取缓存# 查询指定原创 2022-02-09 17:49:11 · 1024 阅读 · 0 评论 -
Redis实战(二):Redis核心配置文件
目录一、启动方式二、工作目录三、绑定接口四、密码五、端口号六、pid文件一、启动方式Redis的启动方式分为守护线程启动和非守护线程启动。# By default Redis does not run as a daemon. Use 'yes' if you need it.# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.daemonize yes原创 2022-02-09 16:56:31 · 926 阅读 · 0 评论 -
Redis实战(一):CentOS安装Redis
目录一、安装gcc环境1.查看gcc版本2.安装gcc环境二、安装Redis1.下载2.上传3.解压4.编译5.安装6.bin目录下的可执行文件7.修改核心配置文件8.启动Redis9.查看Redis是否启动成功10.关闭Redis11.执行客户端12.测试连接是否正常一、安装gcc环境Redis是C语言开发的,安装Redis需要先对官网下载的源码进行编译,编译依赖gcc环境,因此,在安装Redis之前,需要先安装gcc环境。...原创 2022-01-05 22:05:24 · 1000 阅读 · 0 评论