-
-
Notifications
You must be signed in to change notification settings - Fork 9
Questions on the implementation #2
daveajones
started this conversation in
General
Is this using CF workers and storing the data in CF's distributed key/value db?
All reactions
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
All reactions
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
All reactions
0 replies
That's a really solid design John.
All reactions
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment