Do storage writes coalesce and guarantee execution for alarm()
handler if I don’t await them like the fetch handler? I am assuming so but I couldn’t find anything in the docs on it specifically and not sure an accurate test for this since it might(?) involve failover.
For example if I have:
alarm() {
// blah
this.env.storage.put("k", "v")
this.env.storage.put("a", "b")
}
Will those 2 final put operations guarantee to happen before the alarm()
handler is deemed successfully run, and if it fails, the object will be evicted, restarted, and that alarm handler will run again?