Is there anything cheaper than `kv` for super simple storage on Workers? Basically, we have a boolea

Is there anything cheaper than
kv
for super simple storage on Workers? Basically, we have a boolean that we need to toggle occasionally. The server is doing 10s-100s of millions of lightweight requests per day so KV is surprisingly expensive for this use case. We end up using an environment variable and flipping that variable every time we want to change the value.

Obviously, our current solution is not ideal as it requires a re-deploy to change environment variables. Any better solutions that are a bit cheaper than
kv
?
Was this page helpful?