Windows下下Redis的安装使用教程的安装使用教程
本文主要为大家介绍缓存技术中的一种Redis的安装和使用,供大家参考,具体内容如下
一、下载一、下载Redis for windows
在网络中搜索Redis fow windows,就可以下载Redis的压缩包。解压包。
会发现其中有32位和64位的不同版本的包,根据需要,使用对应的压缩包即可。
二、解压二、解压
我使用的是redisbin_x64.zip的压缩包,将其解压到redis的文件夹中。
解压之后,会发现内容只有一些.exe的文件。到这里,redis就算做好了一半了。
三、配置三、配置
在redis下新建一个conf的文件夹,并创建 redis.conf 文本文件。将一下内容复制到配置文件中。
# Redis configuration file example
# 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.
# 是否以后台进程的形式运行,默认为no
daemonize no
# When run as a daemon, Redis write a pid file in /var/run/redis.pid by default.
# You can specify a custom pid file location here.
# 如果指定以后台形式执行,则需要指定一个pid文件
pidfile /var/run/redis.pid
# Accept connections on the specified port, default is 6379
#监听端口号
port 6379
# If you want you can bind a single interface, if the bind option is not
# specified all the interfaces will listen for connections.
# 绑定主机IP
# bind 127.0.0.1
# Close the connection after a client is idle for N seconds (0 to disable)
# 客户端空闲超时时间,设置为0,则没有超时。过了空闲时间,则会将客户端的连接关闭
timeout 300
# Set server verbosity to 'debug'
# it can be one of:
# debug (a lot of information, useful for development/testing)
# notice (moderately verbose, what you want in production probably)
# warning (only very important / critical messages are logged)
# 日志记录等级
loglevel debug
# Specify the log file name. Also 'stdout' can be used to force
# the demon to log on the standard output. Note that if you use standard
# output for logging but daemonize, logs will be sent to /dev/null
评论0
最新资源