You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Eduard-Hasa I don't have hard numbers on errors or uptime, but this is one of the most-used libraries in the drivly org. Since this is implemented as a Durable Object in Cloudflare Workers, it is persistent and scalable.
We initialize a state machine for every entry in one database table to track statuses and trigger webhook callbacks, and we use another table to track the state machine event history. This allows us to roll back and replay events for any entity in that table, which is helpful for error debugging and recovery.
One limitation of running this as a Cloudflare Worker is the lack of background functions, so we perform background functions by using callbacks to services such as drivly/alarms.do, which can send events to the machine on a timer.
api
object at top of response for consistency #7user
object at bottom of response from ctx.do #8The text was updated successfully, but these errors were encountered: