Redis
Redis drivers for Fedify
Install / Use
/learn @fedify-dev/RedisREADME
<!-- deno-fmt-ignore-file -->
@fedify/redis: Redis drivers for Fedify
[!IMPORTANT] This repository is obsolete and has been archived in favor of the monorepo fedify-dev/fedify.
This package provides Fedify's KvStore and MessageQueue
implementations for Redis:
import { createFederation } from "@fedify/fedify";
import { RedisKvStore, RedisMessageQueue } from "@fedify/redis";
import { Redis } from "ioredis";
const federation = createFederation({
kv: new RedisKvStore(new Redis()),
queue: new RedisMessageQueue(() => new Redis()),
});
Installation
Deno
deno add @fedify/redis
Node.js
npm install @fedify/redis
Bun
bun add @fedify/redis
Changelog
Version 0.5.0
To be released.
Version 0.4.0
Released on March 28, 2025.
-
Added
RedisMessageQueue.enqueueMany()method for efficiently enqueueing multiple messages in a single transaction. -
Updated @js-temporal/polyfill to 0.5.0 for Node.js and Bun. On Deno, there is no change because the polyfill is not used.
Version 0.3.0
Released on October 4, 2024.
- Polling is now more efficient.
- Renamed
RedisMessageQueueOptions.loopIntervaloption topollIntervaloption.
Version 0.2.0
Released on September 26, 2024.
- Let
RedisMessageQueuefollow up the latestMessageQueueinterface, which was updated in Fedify 1.0.0. - Added some example code.
Version 0.1.1
Released on June 22, 2024.
- Exported
@fedify/redis/mqmodule.
Version 0.1.0
Initial release. Released on June 22, 2024.
