-
Notifications
You must be signed in to change notification settings - Fork 1
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
refactor(op-store)!: pass ops as bytes to op store #71
Conversation
3c4aca5
to
2882924
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good otherwise!
Are all the From
/TryFrom
conversions in mem_op_store.rs
still used? There's a conversion between mem ops and meta ops that also used serialization that might not be useful any more?
2882924
to
0e74e52
Compare
They weren't, deleted the Kitsune2MemoryOp conversions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, looking good!
0e74e52
to
ade70b7
Compare
Apologies, I addressed another windows test flake. Windows getting slower by the day obviously. |
Refactor the op store trait to take opaque bytes instead of
MetaOp
s when processing incoming ops. I think that's already it. Retrieving ops from the store should still beMetaOp
s.