Redis:修订间差异
(创建页面,内容为“Redis是一个开源的键值数据库。 ==简介== ===时间轴=== *2009年5月10日,Redis最初版本 *2015年4月1日,发布Redis 3.0 *2018年10月17日…”) |
无编辑摘要 |
||
第16行: | 第16行: | ||
===安装=== | ===安装=== | ||
====liunx==== | |||
Ubuntu上可以使用apt命令安装 Redis: | |||
<syntaxhighlight lang="bash" > | |||
# 更新Ubuntu包 | |||
sudo apt update | |||
# 安装Redis | |||
sudo apt install redis-server | |||
# 查看Redis版本 | |||
redis-server --version | |||
</syntaxhighlight> | |||
====Windows==== | |||
官方没提供Windows的安装包,有2种安装方法。 | |||
1.Windows的[[WSL]]可以直接运行Linux程序,所以可以在WSL中安装Redis,然后在Windows中使用。以下为在WSL中的Ubuntu系统安装Redis: | |||
<syntaxhighlight lang="bash" > | |||
# 进入WSL的Ubuntu终端 | |||
sudo apt update | |||
sudo apt install redis-server | |||
</syntaxhighlight> | |||
2.使用其他用户分发的Redis的windows程序。 | |||
*MicrosoftArchive(目前3.2.100,已停止更新):https://github.com/MicrosoftArchive/redis/releases | |||
*tporadowski:https://github.com/tporadowski/redis/releases | |||
==资源== | ==资源== | ||
第28行: | 第53行: | ||
===相关文章=== | ===相关文章=== | ||
*[https://zh.wikipedia.org/wiki/Redis 维基百科:Redis] | *[https://zh.wikipedia.org/wiki/Redis 维基百科:Redis] | ||
[[分类:数据库]] |
2021年6月27日 (日) 17:39的版本
Redis是一个开源的键值数据库。
简介
时间轴
- 2009年5月10日,Redis最初版本
- 2015年4月1日,发布Redis 3.0
- 2018年10月17日,发布Redis 5.0
- 2020年4月30日,发布Redis 6.0
- 2021年6月1日,发布Redis 6.2.4
安装
liunx
Ubuntu上可以使用apt命令安装 Redis:
# 更新Ubuntu包
sudo apt update
# 安装Redis
sudo apt install redis-server
# 查看Redis版本
redis-server --version
Windows
官方没提供Windows的安装包,有2种安装方法。
1.Windows的WSL可以直接运行Linux程序,所以可以在WSL中安装Redis,然后在Windows中使用。以下为在WSL中的Ubuntu系统安装Redis:
# 进入WSL的Ubuntu终端
sudo apt update
sudo apt install redis-server
2.使用其他用户分发的Redis的windows程序。
- MicrosoftArchive(目前3.2.100,已停止更新):https://github.com/MicrosoftArchive/redis/releases
- tporadowski:https://github.com/tporadowski/redis/releases
资源
官网
- Redis 官网:https://redis.io/
- Redis 文档:https://redis.io/documentation
- GitHub:https://github.com/redis/redis