Karthik Ganeshram
Karthik Ganeshram
By default, `spin` does not allow writing to the file system but `bartholomew` tries to cache in the list of files to make it faster and the message appears because...
@itowlson, the scope of caching currently is to only make it more efficient by reading a singular file instead of reading a bunch of different files on each request. We...
@itowlson, I think I have addressed all the comments and I think this is ready for another round of review.
We can't test it on the cloud yet. You are correct in the source of performance improvements, by keeping a copy of rendered stuff and using it until the cache...
I think the ask here is for the ability to create clients with user-provided TLS certs for client-side authentication or even provide a different ca root certificate instead of the...
It also surfaces with the following snippet ```javascript addEventListener('fetch', (event) => handleRequest(event)); async function handleRequest(event) { try { let req = new Request("https://google.com", { method: "POST", body: '{"foo": "bar"}', })...