it counts as 1 request for the worker, but 400 writes to KV, out of the 1000 per day you get in the
it counts as 1 request for the worker, but 400 writes to KV, out of the 1000 per day you get in the free plan
Writes to different keys 1,000 writes per day
pachadb-{kind}-store for several thingswranlger kv:namespace create only lets me do _s and it'll prefix things with worker-. wrangler kv:namespace create pachadb_{kind}_store got me kv ns named worker-pachadb_{kind}_storeKV as base64 encoded string, how can I leverage the browser to treat them as normal images so that I can make the cache happen? 
why notexport const GET = (async ({ params, locals }) => {
const { id } = params,
value = await locals.KV.get(memeTemplateFileKey(id)),
buffer = Buffer.from(value!.split(',')[1], 'base64');
return new Response(buffer, { headers: { 'Content-Type': 'image/png' } });
}) satisfies RequestHandler;