Questions on the implementation #2
daveajones
started this conversation in
General
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 |
0 replies
|
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 |
0 replies
|
That's a really solid design John. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
All reactions