Redis 笔记(二)-Redis 安装及测试

一、什么是 Redis 中文网站

  • RedisRemote Dictionary Server ),即远程字典服务,是一个开源的使用 ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value,并提供多种语言的 API
  • Redis 开源,遵循 BSD 基于内存数据存储,被用于作为数据库、缓存、 消息中间件
  • 总结: redis 是一个内存型的数据库
  • Redis 能干什么?
    1、内存存储,持久化,内存存储是断电即失的,所以说持久化很重要( rdb , aof )
    2、效率高,用于高速缓存
    3、发布订阅系统
    4、地图信息分析
    5、计时器,浏览器,计数器

二、Redis 特点

  1. 多样数据类型
  2. 持久化
  3. 集群
  4. 事务

三、Redis 安装

  1. windows 安装
  • 下载安装包:地址
  • 将压缩包解压,打开文件夹,内容如下:
  • 开启 redis,双击运行服务: redis 默认服务端口:6379
  • 使用 redis 客户端连接 redisping 命令,显示 PONG ,表示连接成功
  • 测试:
    设置键值对:set myKey abc
    取出键值对:get myKey
127.0.0.1:6379> ping
PONG            # 连接成功
127.0.0.1:6379> set myKey abc        # 设置键值对
OK
127.0.0.1:6379> get myKey        # 取出键值对
"abc"

redis 推荐在 Linux 下进行开发

  1. Linux 安装
$ wget https://download.redis.io/releases/redis-6.2.5.tar.gz
$ tar xzf redis-6.2.5.tar.gz
$ cd redis-6.2.5
$ make
  • 下载安装包:redis-6.2.5.tar.gz
[root@VM-0-6-centos ~]# wget https://download.redis.io/releases/redis-6.2.5.tar.gz
  • 解压安装包:一般将下载程序放在 opt 目录下
[root@VM-0-6-centos ~]# mv redis-6.2.5.tar.gz /opt/
[root@VM-0-6-centos ~]# cd /opt
[root@VM-0-6-centos opt]# ls
containerd  redis-6.2.5.tar.gz
[root@VM-0-6-centos opt]# tar xzf redis-6.2.5.tar.gz
  • 查看 redis 文件
[root@VM-0-6-centos opt]# cd redis-6.2.5
[root@VM-0-6-centos redis-6.2.5]# ls
00-RELEASENOTES  CONDUCT       COPYING  INSTALL   MANIFESTO  redis.conf  runtest-cluster    runtest-sentinel  src    TLS.md
BUGS             CONTRIBUTING  deps     Makefile  README.md  runtest     runtest-moduleapi  sentinel.conf     tests  utils
  • 基本的环境安装 :yum install gcc-c++
[root@VM-0-6-centos redis-6.2.5]# yum install gcc-c++
  • 查看 gcc 版本号:gcc -v
[root@VM-0-6-centos redis-6.2.5]# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-redhat-linux
Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 8.4.1 20200928 (Red Hat 8.4.1-1) (GCC) 
  • 配置 redis 文件:make
[root@VM-0-6-centos redis-6.2.5]# make
  • 确认是否安装成功:make install
[root@VM-0-6-centos redis-6.2.5]# make install
cd src && make install
make[1]: Entering directory '/opt/redis-6.2.5/src'CC Makefile.depHint: It's a good idea to run 'make test' ;)INSTALL redis-serverINSTALL redis-benchmarkINSTALL redis-cli
make[1]: Leaving directory '/opt/redis-6.2.5/src'
  • redis 默认安装目录在 /usr/local/bin
[root@VM-0-6-centos bin]# ls
chardetect  cloud-init-per  easy_install      jsondiff   jsonpointer  redis-benchmark  redis-check-rdb  redis-sentinel
cloud-init  docker-compose  easy_install-3.6  jsonpatch  jsonschema   redis-check-aof  redis-cli        redis-server
  • 复制 redis 配置文件,到安装目录下 /usr/local/bin ,在这个目录下面,新建个配置目录,使用这个配置文件来启动 redis
[root@VM-0-6-centos redis-6.2.5]# cp redis.conf /usr/local/bin/config
[root@VM-0-6-centos redis-6.2.5]# cd /usr/local/bin/config
[root@VM-0-6-centos config]# ls
redis.conf
  • redis 默认不是后台启动的,需要修改配置文件 redis.conf
daemonize yes        # 将配置文件 daemonize no  改为 daemonize yes
  • 通过指定的配置文件,启动 redis 服务:redis-server config/redis.conf
[root@VM-0-6-centos bin]# pwd
/usr/local/bin
[root@VM-0-6-centos bin]# redis-server config/redis.conf        # 通过自定义的配置文件启动
  • 通过 redis 客户端去连接 redis 服务:redis-cli -p [端口号]
[root@VM-0-6-centos bin]# redis-cli -p 6379        # 默认端口为 6379
127.0.0.1:6379>
  • 测试
[root@VM-0-6-centos bin]# redis-cli -p 6379        # 使用 redis 客户端进行连接
127.0.0.1:6379> ping
PONG
127.0.0.1:6379> set key aa        # 设置键值对
OK
127.0.0.1:6379> get key        # 获取键值对
"aa"
127.0.0.1:6379> set name yy
OK
127.0.0.1:6379> get name
"yy"
127.0.0.1:6379> keys *        # 查看所有 key
1) "name"
2) "key"
127.0.0.1:6379> 
  • 查看 redis 的进程是否开启
[root@VM-0-6-centos ~]# ps -ef|grep redis      # grep redis 获取和 redis 相关的进程  
root     1334563       1  0 17:44 ?        00:00:00 redis-server 127.0.0.1:6379
root     1335138 1321154  0 17:47 pts/1    00:00:00 redis-cli -p 6379
root     1336646 1336537  0 17:56 pts/3    00:00:00 grep --color=auto redis
  • 关闭 redis 服务:shutdown
127.0.0.1:6379> shutdown
not connected> exit
  • 再次查看进程是否存在
[root@VM-0-6-centos ~]# ps -ef|grep redis        # 进程已经关闭
root     1337290 1336537  0 18:00 pts/3    00:00:00 grep --color=auto redis

四、性能测试

  • redis-benchmark 是一个(自带)压力测试工具,命令可选参数:
Usage: redis-benchmark [-h <host>] [-p <port>] [-c <clients>] [-n <requests>] [-k <boolean>]-h <hostname>      Server hostname (default 127.0.0.1)        # 指定服务器主机名-p <port>          Server port (default 6379)        # 指定服务器端口-s <socket>        Server socket (overrides host and port)        # 指定服务器-a <password>      Password for Redis Auth--user <username>  Used to send ACL style 'AUTH username pass'. Needs -a.-c <clients>       Number of parallel connections (default 50)        # 指定并发连接数-n <requests>      Total number of requests (default 100000)        # 指定请求数-d <size>          Data size of SET/GET value in bytes (default 3)  # 以字节的形式指定 SET/GET 值的数据大小--dbnum <db>       SELECT the specified db number (default 0)--threads <num>    Enable multi-thread mode.--cluster          Enable cluster mode.--enable-tracking  Send CLIENT TRACKING on before starting benchmark.-k <boolean>       1=keep alive 0=reconnect (default 1)-r <keyspacelen>   Use random keys for SET/GET/INCR, random values for SADD,random members and scores for ZADD. # SET/GET/INCR 使用随机 key, SADD 使用随机值Using this option the benchmark will expand the string __rand_int__inside an argument with a 12 digits number in the specified rangefrom 0 to keyspacelen-1. The substitution changes every time a commandis executed. Default tests use this to hit random keys in thespecified range.-P <numreq>        Pipeline <numreq> requests. Default 1 (no pipeline). # 通过管道传输 <numreq> 请求-q                 Quiet. Just show query/sec values        # 强制退出 redis。仅显示 query/sec 值--precision        Number of decimal places to display in latency output (default 0)--csv              Output in CSV format          # 以 CSV 格式输出-l                 Loop. Run the tests forever        # 成循环,永久执行测试-t <tests>         Only run the comma separated list of tests. The testnames are the same as the ones produced as output.        # 仅运行以逗号分隔的测试命令列表。-I                 Idle mode. Just open N idle connections and wait.      # Idle 模式。仅打开 N 个 idle 连接并等待--help             Output this help and exit.--version          Output version and exit.
序号选项描述默认值
1-h指定服务器主机名127.0.0.1
2-p指定服务器端口6379
3-s指定服务器socket
4-c指定并发连接数50
5-n指定请求数10000
6-d以字节的形式指定 SET/GET 值的数据大小3
7-k1=keep alive 0=reconnect1
8-r SET/GET/INCR 使用随机 key, SADD 使用随机值
9-P通过管道传输 <numreq> 请求1
10-q强制退出 redis。仅显示 query/sec
11—csvCSV 格式输出
12-l生成循环,永久执行测试
13-t仅运行以逗号分隔的测试命令列表。
14-I Idle 模式。仅打开 Nidle 连接并等待。
  • 示例:测试 100 个并发,连接 100000 请求
# 测试:100个并发连接 100000请求
[root@VM-0-6-centos bin]# redis-benchmark -h localhost -p 6379 -c 100 -n 100000
====== SET ======                                                   100000 requests completed in 2.60 seconds    # 对100000个测试请求写入测试100 parallel clients      # 100个并发客户端3 bytes payload      # 每次3字节写入keep alive: 1      # 只有一台服务器来处理这些请求,单机性能host configuration "save": 3600 1 300 100 60 10000host configuration "appendonly": nomulti-thread: noLatency by percentile distribution:
0.000% <= 0.623 milliseconds (cumulative count 1)
50.000% <= 1.735 milliseconds (cumulative count 50412)
75.000% <= 2.111 milliseconds (cumulative count 75215)
87.500% <= 2.535 milliseconds (cumulative count 87554)
93.750% <= 2.943 milliseconds (cumulative count 93767)
96.875% <= 3.687 milliseconds (cumulative count 96875)
98.438% <= 4.511 milliseconds (cumulative count 98450)
99.219% <= 5.079 milliseconds (cumulative count 99220)
99.609% <= 5.567 milliseconds (cumulative count 99611)
99.805% <= 6.135 milliseconds (cumulative count 99807)
99.902% <= 7.343 milliseconds (cumulative count 99903)
99.951% <= 21.663 milliseconds (cumulative count 99953)
99.976% <= 21.983 milliseconds (cumulative count 99977)
99.988% <= 22.095 milliseconds (cumulative count 99988)
99.994% <= 22.159 milliseconds (cumulative count 99995)
99.997% <= 22.175 milliseconds (cumulative count 99997)
99.998% <= 22.207 milliseconds (cumulative count 99999)
99.999% <= 22.223 milliseconds (cumulative count 100000)
100.000% <= 22.223 milliseconds (cumulative count 100000)
……
Summary:throughput summary: 38402.46 requests per second        # 每秒处理 38402.46 个请求latency summary (msec):avg       min       p50       p95       p99       max1.858     0.616     1.735     3.111     4.911    22.223


喜欢的朋友记得点赞、收藏、关注哦!!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/66595.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

H2数据库在单元测试中的应用

H2数据库特征 用比较简洁的话来介绍h2数据库&#xff0c;就是一款轻量级的内存数据库&#xff0c;支持标准的SQL语法和JDBC API&#xff0c;工业领域中&#xff0c;一般会使用h2来进行单元测试。 这里贴一下h2数据库的主要特征 Very fast database engineOpen sourceWritten…

通俗易懂之线性回归时序预测PyTorch实践

线性回归&#xff08;Linear Regression&#xff09;是机器学习中最基本且广泛应用的算法之一。它不仅作为入门学习的经典案例&#xff0c;也是许多复杂模型的基础。本文将全面介绍线性回归的原理、应用&#xff0c;并通过一段PyTorch代码进行实践演示&#xff0c;帮助读者深入…

MATLAB深度学习实战文字识别

文章目录 前言视频演示效果1.DB文字定位环境配置安装教程与资源说明1.1 DB概述1.2 DB算法原理1.2.1 整体框架1.2.2 特征提取网络Resnet1.2.3 自适应阈值1.2.4 文字区域标注生成1.2.5 DB文字定位模型训练 2.CRNN文字识别2.1 CRNN概述2.2 CRNN原理2.2.1 CRNN网络架构实现2.2.2 CN…

和为0的四元组-蛮力枚举(C语言实现)

目录 一、问题描述 二、蛮力枚举思路 1.初始化&#xff1a; 2.遍历所有可能的四元组&#xff1a; 3.检查和&#xff1a; 4.避免重复&#xff1a; 5.更新计数器&#xff1a; 三、代码实现 四、运行结果 五、 算法复杂度分析 一、问题描述 给定一个整数数组 nums&…

SpringBoot日常:集成Kafka

文章目录 1、pom.xml文件2、application.yml3、生产者配置类4、消费者配置类5、消息订阅6、生产者发送消息7、测试发送消息 本章内容主要介绍如何在springboot项目对kafka进行整合&#xff0c;最终能达到的效果就是能够在项目中通过配置相关的kafka配置&#xff0c;就能进行消息…

【实用技能】如何使用 .NET C# 中的 Azure Key Vault 中的 PFX 证书对 PDF 文档进行签名

TX Text Control 是一款功能类似于 MS Word 的文字处理控件&#xff0c;包括文档创建、编辑、打印、邮件合并、格式转换、拆分合并、导入导出、批量生成等功能。广泛应用于企业文档管理&#xff0c;网站内容发布&#xff0c;电子病历中病案模板创建、病历书写、修改历史、连续打…

33.3K 的Freqtrade:开启加密货币自动化交易之旅

“ 如何更高效、智能地进行交易成为众多投资者关注的焦点。” Freqtrade 是一款用 Python 编写的免费开源加密货币交易机器人。它就像一位不知疲倦的智能交易助手&#xff0c;能够连接到众多主流加密货币交易所&#xff0c;如 Binance、Bitmart、Bybit 等&#xff08;支…

Mac M2基于MySQL 8.4.3搭建(伪)主从集群

前置准备工作 安装MySQL 8.4.3 参考博主之前的文档&#xff0c;在本地Mac安装好MySQL&#xff1a;Mac M2 Pro安装MySQL 8.4.3安装目录&#xff1a;/usr/local/mysql&#xff0c;安装好的MySQL都处于运行状态&#xff0c;需要先停止MySQL服务最快的方式&#xff1a;系统设置 …

事务的回滚与失效行为

创建一张测试表 AccountMapper public interface AccountMapper {Update("update account set balance #{balance} where username #{username}")int updateUserBalance(Param("username") String username, Param("balance") Integer bal…

【C语言】_字符数组与常量字符串

目录 1. 常量字符串的不可变性 2. 关于常量字符串的打印 3. 关于字符数组与常量字符串的内存分布 1. 常量字符串的不可变性 char arr[10] "abcdef";// 字符数组char* p2 arr;char* p3 "abcdef"; // 常量字符串 尝试对常量字符串进行修改&#xff…

【GUI-pyqt5】QCommandLinkButton类

1. 描述 命令链接的Windows Vista引入的新控件他的用途类似于单选按钮的用途&#xff0c;因为他用于在一组互斥选项之间进行选择命令链接按钮不应单独使用&#xff0c;而应作为向导和对话框中单选按钮替代选项外观通常类似于平面按钮的外观&#xff0c;但除了普通按钮文本外&a…

69.基于SpringBoot + Vue实现的前后端分离-家乡特色推荐系统(项目 + 论文PPT)

项目介绍 在Internet高速发展的今天&#xff0c;我们生活的各个领域都涉及到计算机的应用&#xff0c;其中包括家乡特色推荐的网络应用&#xff0c;在外国家乡特色推荐系统已经是很普遍的方式&#xff0c;不过国内的管理网站可能还处于起步阶段。家乡特色推荐系统采用java技术&…

HCIE-day10-ISIS

ISIS ISIS&#xff08;Intermediate System-to-Intermediate System&#xff09;中间系统到中间系统&#xff0c;属于IGP&#xff08;内部网关协议&#xff09;&#xff1b;是一种链路状态协议&#xff0c;使用最短路径优先SPF算法进行路由计算&#xff0c;与ospf协议有很多相…

图像处理|膨胀操作

在图像处理领域&#xff0c;形态学操作是一种基于图像形状的操作&#xff0c;用于分析和处理图像中对象的几何结构。**膨胀操作&#xff08;Dilation&#xff09;**是形态学操作的一种&#xff0c;它能够扩展图像中白色区域&#xff08;前景&#xff09;或减少黑色区域&#xf…

【机器学习】量子机器学习:当量子计算遇上人工智能,颠覆即将来临?

我的个人主页 我的领域&#xff1a;人工智能篇&#xff0c;希望能帮助到大家&#xff01;&#xff01;&#xff01;&#x1f44d;点赞 收藏❤ 在当今科技飞速发展的时代&#xff0c;量子计算与人工智能宛如两颗璀璨的星辰&#xff0c;各自在不同的苍穹闪耀&#xff0c;正以前…

Sprint Boot教程之五十:Spring Boot JpaRepository 示例

Spring Boot JpaRepository 示例 Spring Boot建立在 Spring 之上&#xff0c;包含 Spring 的所有功能。由于其快速的生产就绪环境&#xff0c;使开发人员能够直接专注于逻辑&#xff0c;而不必费力配置和设置&#xff0c;因此如今它正成为开发人员的最爱。Spring Boot 是一个基…

腾讯云AI代码助手编程挑战赛-桌面壁纸随机更换

作品简介 用于更换壁纸缓缓心情&#xff0c;或者选择困难症&#xff0c;每一个图片都想用来做壁纸&#xff0c;并且节约了手工时间&#xff0c;所以根据这个需求来创建的这款应用工具&#xff0c;使用的是腾讯云AI代码助手来生成的所有代码&#xff0c;使用方便&#xff0c;快…

说说你对作用域链的理解

一、作用域 作用域&#xff0c;即变量&#xff08;变量作用域又称上下文&#xff09;和函数生效&#xff08;能被访问&#xff09;的区域或集合 换句话说&#xff0c;作用域决定了代码区块中变量和其他资源的可见性 举个例子 function myFunction() {let inVariable "…

SpringBootWeb 登录认证(day12)

登录功能 基本信息 请求参数 参数格式&#xff1a;application/json 请求数据样例&#xff1a; 响应数据 参数格式&#xff1a;application/json 响应数据样例&#xff1a; Slf4j RestController public class LoginController {Autowiredpriva…

ASP.NET Core 实现微服务 - Consul 配置中心

这一次我们继续介绍微服务相关组件配置中心的使用方法。本来打算介绍下携程开源的重型配置中心框架 apollo 但是体系实在是太过于庞大&#xff0c;还是让我爱不起来。因为前面我们已经介绍了使用Consul 做为服务注册发现的组件 &#xff0c;那么干脆继续使用 Consul 来作为配置…