ioredis 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
ioredis 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
ioredis 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 MIT
操作系统 跨平台
软件类型 开源软件
开源组织
地区 国产
投 递 者 Luin
适用人群 未知
收录时间 2018-04-12

软件简介

ioredis 是一个用于 Node.js/io.js 的 Redis 客户端,强健、功能强大且全面。

要求 Redis >= 2.6.12 ,Node.js >= 0.10.16)

具有以下特性

  • 功能完备。支持 Cluster, Sentinel, Pipelining,以及 Lua scripting & Pub/Sub(同时支持二进制消息)

  • 高性能

  • 友好的 API,支持使用 Node callbacks 以及 Bluebird promises

  • 抽象 Lua 脚本,可定义自定义命令

  • 支持二进制数据

  • 支持 TLS

  • 支持离线队列和准备检查

  • 支持 ES6 类型,例如 Map and Set

  • 支持 GEO 命令(Redis 3.2 Unstable)

  • 完善的错误处理策略

示例代码 - 基本用法

var Redis = require('ioredis');
var redis = new Redis();
redis.set('foo', 'bar');
redis.get('foo', function (err, result) {
  console.log(result);
});
// Or using a promise if the last argument isn't a function
redis.get('foo').then(function (result) {
  console.log(result);
});
// Arguments to commands are flattened, so the following are the same:
redis.sadd('set', 1, 3, 5, 7);
redis.sadd('set', [1, 3, 5, 7]);
// All arguments are passed directly to the redis server:
redis.set('key', 100, 'EX', 10);
展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击引领话题📣 发布并加入讨论🔥
发表了资讯
02/28 11:09

国人独立开发的开源 Redis 客户端 ioredis 被 Redis 公司收购

ioredis 作者 @Luin 宣布该项目已被 Redis 公司收购。ioredis 是一个用于 Node.js 的 Redis 客户端,健壮、性能好、功能强大且全面。 目前 ioredis 在 GitHub 的开源地址已迁移至 Redis 公司旗下:https://github.com/redis/ioredis 两年前,ioredis 超过 redis 成为了 Node.js 最流行的 Redis 客户端。当时 ioredis 作者还感叹 redis 历经诸多波折终被 Redis 官方收购。 @Luin 曾表示 ioredis 是自己独立从零开发的项目,创建初...

53
13
发表了资讯
2022/08/31 11:35

ioredis 成为最流行的 Node.js Redis 库

ioredis 作者 @Luin 表示,他开发的 ioredis 超过 redis 成为了 Node.js 最流行的 Redis 客户端,这个里程碑用了整整 7 年的时间。 ioredis 是一个用于 Node.js 的 Redis 客户端,健壮、性能好、功能强大且全面。 @Luin 介绍了一些背景,下文引用自他的原话: 2014 年底的时候我开始使用 Node.js 开发后端程序。为了连接 Redis ,所以研究了下市面上的 Redis 客户端库。当时最流行的库 redis 是由 Uber 的首席架构师 Matt Ranne...

5
3
没有更多内容
加载失败,请刷新页面
点击加载更多
加载中
下一页
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
0 评论
16 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部