-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimization of the CRDT Collections #881
Labels
Comments
3 tasks
28 storage_reads and 12 storage_writes
New implementation 2 storage reads
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently our CRDT Collections are doing too many storage requests to write and read data and we should make this better.
Running the runtime demo with KV store, we get this:
fn:set
key="name"
&value="Jane"
leads to 29storage_read
s and 12storage_write
sfn:get
key="name"
leads to 5storage_read
sThe text was updated successfully, but these errors were encountered: