-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.json
More file actions
41 lines (41 loc) · 1.32 KB
/
Copy pathdocs.json
File metadata and controls
41 lines (41 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://docs.page/schema.json",
"name": "rate-queue",
"description": "Rate limit and queue async work in Node.js. In-memory or Redis-backed for multiple servers.",
"anchors": [
{ "title": "GitHub", "icon": "github", "href": "https://github.com/taukirsheikh/rate-queue" },
{ "title": "npm", "icon": "npm", "href": "https://www.npmjs.com/package/rate-queue" }
],
"sidebar": [
{
"group": "Getting started",
"pages": [
{ "title": "Introduction", "href": "/" },
{ "title": "Installation", "href": "/installation" },
{ "title": "Quick start", "href": "/quick-start" }
]
},
{
"group": "Usage",
"pages": [
{ "title": "Concurrency & rate limits", "href": "/usage/concurrency" },
{ "title": "Priority & wrapping", "href": "/usage/priority" },
{ "title": "Retry & cancellation", "href": "/usage/retry-cancel" }
]
},
{
"group": "Redis (distributed)",
"pages": [
{ "title": "When to use Redis", "href": "/redis/intro" },
{ "title": "Setup & connection", "href": "/redis/setup" },
{ "title": "When Redis is down", "href": "/redis/fallback" }
]
},
{
"group": "Reference",
"pages": [
{ "title": "API overview", "href": "/reference/api" }
]
}
]
}