reddb-cli 0.1.2-next.49 → 0.1.2-next.52
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 +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -221,6 +221,25 @@ Validation on write. No parsing in your app.
|
|
|
221
221
|
|
|
222
222
|
---
|
|
223
223
|
|
|
224
|
+
## Backup & Recovery
|
|
225
|
+
|
|
226
|
+
Built-in backup scheduler, WAL archiving, Change Data Capture (CDC), and Point-in-Time Recovery framework:
|
|
227
|
+
|
|
228
|
+
```bash
|
|
229
|
+
# Poll real-time changes
|
|
230
|
+
curl 'localhost:8080/changes?since_lsn=0'
|
|
231
|
+
|
|
232
|
+
# Trigger manual backup
|
|
233
|
+
curl -X POST localhost:8080/backup/trigger
|
|
234
|
+
|
|
235
|
+
# Check backup status
|
|
236
|
+
curl localhost:8080/backup/status
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
Remote backends: S3, R2, DigitalOcean Spaces, GCS, Turso, Cloudflare D1, local filesystem.
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
224
243
|
## 3 Deployment Modes
|
|
225
244
|
|
|
226
245
|
| Mode | Think of it as... | Access via |
|