一,Redis介绍
远程字典服务,一个开源的,键值对形式的在线服务框架,值支持多数据结构,本文介绍windows下Redis的安装,配置相关,官网默认下载的是Linux系统,格式为gz,该系统下的安装配置相关基本以命令为主
二,Redis下载
目前在维护的版本可参考 https://github.com/tporadowski/redis ,最新版本为5.0.14.1,可下载免安装版ZIP格式
三,Redis安装-解压
四,Redis配置
1,进入redis解压目录,找到redis.windows.conf文件
2,打开redis.windows.conf文件,配置挺多,只列出一般配置,其他参数可默认
#需要访问数据库的IP,默认本机
bind 127.0.0.1
#监听的端口
port 6379
#当客户端闲置多长秒后关闭连接,如果指定为 0 ,表示关闭该功能
timeout 0
五,Redis启动和关闭(通过terminal操作)
1,普通启动服务
#进入目录
cd Redis目录
#启动服务
redis-server.exe redis.windows.conf
2,开机启动服务
#进入目录
cd Redis目录
#注册服务
redis-server.exe --service-install redis.windows.conf --loglevel verbose
#启动,关闭,卸载服务
redis-server.exe --service-start
redis-server.exe --service-stop
redis-server.exe --service-uninstall
3,重命名服务
#进入目录
cd Redis目录
#重命名服务
redis-server.exe --service-install redis.windows.conf --Service-name RedisServer2 --loglevel verbose
六,Redis连接
1,通过命令行(确认服务已启动)
#进入目录
cd Redis目录
#启动服务
redis-server.exe redis.windows.conf
#连接服务
redis-cli.exe
#退出
exit
2,通过图形化客户端RESP
七,Redis使用
1,springboot项目中的application.yml文件配置
# redis
redis:
# Redis数据库db索引(默认为0,即数据存储在db0)
database: 0
# Redis服务器地址
host: 127.0.0.1
# Redis服务器连接端口
port: 6379
# Redis服务器连接密码(默认为空)
password:
# 连接超时时间(毫秒)
timeout: 10s
lettuce:
pool:
# 连接池最大连接数(使用负值表示没有限制)
max-active: 10
# 连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1ms
# 连接池中的最大空闲连接
max-idle: 10
# 连接池中的最小空闲连接
min-idle: 0
2,创建Redis的工具类文章来源:https://www.toymoban.com/news/detail-693023.html
@Component
public class RedisUtils {
@Autowired
public RedisTemplate redisTemplate;
//保存基本对象
public <T> void setCacheObject(final String key, final T value)
{
redisTemplate.opsForValue().set(key, value);
}
//取出基本对象
public <T> T getCacheObject(final String key)
{
ValueOperations<String, T> operation = redisTemplate.opsForValue();
return operation.get(key);
}
}
//删除基本对象
public boolean deleteObject(final String key)
{
return redisTemplate.delete(key);
}
3,通过ConfigurableListableBeanFactory的getBean方法取得RedisUtils工具类进行操作,键是自己定义的,这里举例为test为键文章来源地址https://www.toymoban.com/news/detail-693023.html
//保存数据
redisUtils.setCacheObject("test", "test01");
//取出数据
String cache = redisUtils.getCacheObject("test");
//删除数据
redisUtils.deleteObject("test");
到了这里,关于Windows下Redis的安装和配置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!