Questions on the implementation #2
Replies: 3 comments
-
Yes, each deployment is a Cloudflare Worker script, the logs are stored in Durable Objects, Cloudflare's lowest-level transactional storage primitive. I could see using KV in the future to help out on serving API requests - it's great for things that are mostly reads Started an architecture doc |
Beta Was this translation helpful? Give feedback.
-
A side benefit of using Durable Objects (DOs) for data storage in this project, is that there is no admin backend api to this storage. All reads/writes have to go through workers, and hence folks can see every access point in the public codebase here |
Beta Was this translation helpful? Give feedback.
-
That's a really solid design John. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Is this using CF workers and storing the data in CF's distributed key/value db?
Beta Was this translation helpful? Give feedback.
All reactions