Size Limits with IttyDurable #20
nathanclevenger
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the IttyDurable class, the data is persisted with
await this.state.storage.put('data', persistable)
which appears to save all of the persistable instance data to the single 'data' key. Since the value for a single key in DO is limited to 128 KiB, does that mean that IttyDurable is currently limited to persisting values less than 128 KiB?If this is the case that the storage limit in IttyDurable is 128 KiB, could that limit be lifted by modifying the above code to
await this.state.storage.put(persistable)
to effectively lift that limit? Or at least bring it closer to the DO's memory capacity of 128MB?Beta Was this translation helpful? Give feedback.
All reactions