You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**[Pegboard](packages/services/pegboard/)**: Actor orchestrator
49
50
-**[Guard](packages/core/guard/)**: Proxy for routing traffic to Rivet Actors
50
-
-**[Gasoline](packages/common/gasoline/)**: Core durable execution engine that powers Rivet
51
+
-**[Chirp](packages/common/chirp-workflow/)**: Core workflow engine that powers Rivet
51
52
52
53
## Get Started
53
54
@@ -59,7 +60,7 @@ Get started with Rivet by following a quickstart guide:
59
60
60
61
## Features
61
62
62
-
Rivet Actors provide everything you need to build fast, scalable, and real-time applications without the complexity.
63
+
Rivet Actors are a primitive of RivetKit provide everything you need to build fast, scalable, and real-time applications without the complexity. Rivet Engine is the core of self-hosting and is used for orchestrating actors at scale.
63
64
64
65
-**Long-Lived, Stateful Compute**: Like AWS Lambda but with memory and no timeouts
65
66
-**Blazing-Fast Reads & Writes**: State stored on same machine as compute
@@ -68,6 +69,13 @@ Rivet Actors provide everything you need to build fast, scalable, and real-time
68
69
-**Infinitely Scalable**: Auto-scale from zero to millions without configuration
69
70
-**Fault Tolerant**: Automatic error handling and recovery built-in
70
71
72
+
## BYO DB (Bring Your Own Database)
73
+
The Rivet Engine supports:
74
+
75
+
-**PostgreSQL**: For production deployments
76
+
-**FoundationDB**: For enterprise-scale distributed systems
77
+
-**Filesystem**: For single-node deployments
78
+
71
79
## Examples
72
80
73
81
- AI Agent — [GitHub](https://github.com/rivet-gg/rivetkit/tree/main/examples/ai-agent) · [StackBlitz](https://stackblitz.com/github/rivet-gg/rivetkit/tree/main/examples/ai-agent)
Copy file name to clipboardExpand all lines: site/scripts/generateReadme.mjs
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,21 @@ const RIVET_QUICKSTART = `Get started with Rivet by following a quickstart guide
18
18
// Content chunks
19
19
constRIVET_FEATURES_CONTENT=`## Features
20
20
21
-
Rivet Actors provide everything you need to build fast, scalable, and real-time applications without the complexity.
21
+
Rivet Actors are a primitive of RivetKit provide everything you need to build fast, scalable, and real-time applications without the complexity. Rivet Engine is the core of self-hosting and is used for orchestrating actors at scale.
22
22
23
23
- **Long-Lived, Stateful Compute**: Like AWS Lambda but with memory and no timeouts
24
24
- **Blazing-Fast Reads & Writes**: State stored on same machine as compute
25
25
- **Realtime, Made Simple**: Built-in WebSockets and SSE support
26
26
- **Store Data Near Your Users**: Deploy to the edge for low-latency access
27
27
- **Infinitely Scalable**: Auto-scale from zero to millions without configuration
28
-
- **Fault Tolerant**: Automatic error handling and recovery built-in`;
28
+
- **Fault Tolerant**: Automatic error handling and recovery built-in
29
+
30
+
## BYO DB (Bring Your Own Database)
31
+
The Rivet Engine supports:
32
+
33
+
- **PostgreSQL**: For production deployments
34
+
- **FoundationDB**: For enterprise-scale distributed systems
0 commit comments