@fedify/redis 0.1.0-dev.4 → 0.1.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
<!-- deno-fmt-ignore-file -->
|
|
2
2
|
|
|
3
|
-
@fedify/redis
|
|
4
|
-
|
|
3
|
+
@fedify/redis: Redis drivers for Fedify
|
|
4
|
+
=======================================
|
|
5
5
|
|
|
6
6
|
[![JSR][JSR badge]][JSR]
|
|
7
7
|
[![npm][npm badge]][npm]
|
|
8
8
|
[![GitHub Actions][GitHub Actions badge]][GitHub Actions]
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
This package provides [Fedify]'s [`KvStore`] and [`MessageQueue`]
|
|
11
|
+
implementations for Redis:
|
|
12
|
+
|
|
13
|
+
- [`RedisKvStore`]
|
|
14
|
+
- [`RedisMessageQueue`]
|
|
11
15
|
|
|
12
16
|
[JSR]: https://jsr.io/@fedify/redis
|
|
13
17
|
[JSR badge]: https://jsr.io/badges/@fedify/redis
|
|
@@ -15,3 +19,16 @@ Redis drivers for Fedify.
|
|
|
15
19
|
[npm badge]: https://img.shields.io/npm/v/@fedify/redis?logo=npm
|
|
16
20
|
[GitHub Actions]: https://github.com/dahlia/fedify-redis/actions/workflows/main.yaml
|
|
17
21
|
[GitHub Actions badge]: https://github.com/dahlia/fedify-redis/actions/workflows/main.yaml/badge.svg
|
|
22
|
+
[Fedify]: https://fedify.dev/
|
|
23
|
+
[`KvStore`]: https://jsr.io/@fedify/fedify/doc/federation/~/KvStore
|
|
24
|
+
[`MessageQueue`]: https://jsr.io/@fedify/fedify/doc/federation/~/MessageQueue
|
|
25
|
+
[`RedisKvStore`]: https://jsr.io/@fedify/redis/doc/kv/~/RedisKvStore
|
|
26
|
+
[`RedisMessageQueue`]: https://jsr.io/@fedify/redis/doc/kv/~/RedisMessageQueue
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Changelog
|
|
30
|
+
---------
|
|
31
|
+
|
|
32
|
+
### Version 0.1.0
|
|
33
|
+
|
|
34
|
+
To be released.
|