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
constrdoAPrefixKey="migrations_metadata";constrdoALeaderLocationHint="eeur";constrdoA=newGlobalReplicatedDO(rdoAPrefixKey,rdoALeaderLocationHint);awaitrdoA.put("key-1","value1");// After a few (milli)seconds the above will be propagated everywhere.// The following should reach the DO closest to your location to read the value.rdoA.get("key-1");
The text was updated successfully, but these errors were encountered:
I want to provide a Durable Objects (DO) abstraction that replicates the data of a DO to N other DOs in different regions.
This is going to be strictly for backup/disaster recovery purposes, and not for distributed transactions, therefore eventual replication is OK.
Something similar to DynamoDB Global Tables, but for DOs.
Examples
The text was updated successfully, but these errors were encountered: