There was an error while loading. Please reload this page.
Example code (simplified version of what my script is doing), local disk persistence is turned on for DOs:
const key = "foo" state.storage.put(key, { bar: 1}) const value = await state.storage.get(key.toUpperCase())
Behavior on the edge: value is undefined Behavior in Miniflare: value is { bar: 1 }
Not sure this changes when persistence is turned off, don't assume so
Example code (simplified version of what my script is doing), local disk persistence is turned on for DOs:
Behavior on the edge: value is undefined
Behavior in Miniflare: value is { bar: 1 }
Not sure this changes when persistence is turned off, don't assume so