Windows系统服务器中安装Redis服务
2021-07-15 06:12
标签:alt man 结构 int 分享 hash -- 消息中间件 tac 关于Redis的介绍,网上、Redist官网(https://redis.io/)及Redis中文官网(http://www.redis.cn/)就有很多,已经很详细,以下就是来自其中文官网的对Redis的详细介绍: Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,如 字符串(strings), 散列(hashes), 列表(lists), 集合(sets), 有序集合(sorted sets) 与范围查询, bitmaps, hyperloglogs 和 地理空间(geospatial) 索引半径查询。 Redis 内置了 复制(replication),LUA脚本(Lua scripting), LRU驱动事件(LRU eviction),事务(transactions) 和不同级别的 磁盘持久化(persistence), 并通过 Redis哨兵(Sentinel)和自动 分区(Cluster)提供高可用性(high availability)。 Windows系统服务器中安装Redis服务的简单步骤如下: 1、下载: redis官方下载地址:https://redis.io/download,redis 64位下载地址:https://github.com/ServiceStack/redis-windows,本人测试使用的是redis-64.3.0.503版本。 2、下载解压后如下: 3,启动redis: 4、测试,成功安装: 按照下图所示进行相应操作,即可测试是否安装成功。 5、将redis加入到windows的服务中(注意:service和loglevel前都是两个-): redis-server.exe --service-install redis.windows.conf --loglevel verbose 6、还需要手动启动Redis服务: 接下来就可以在项目中连接Redis服务,并很好的将Redis运用到项目中了。 Windows系统服务器中安装Redis服务 标签:alt man 结构 int 分享 hash -- 消息中间件 tac 原文地址:https://www.cnblogs.com/sharing1986687846/p/9523640.html
上一篇:常用DOM API总结
文章标题:Windows系统服务器中安装Redis服务
文章链接:http://soscw.com/index.php/essay/105440.html