-
Notifications
You must be signed in to change notification settings - Fork 21
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
Improve V3 Conversation Performance #519
Comments
What exactly would we be caching? The V2 mem cache is for the conversations, which are already stored in the V3 DB |
So I did a little digging to try and get to the bottom of where the performance issues truly are. This is the side by side comparison of iOS proper and iOS RN. It looks like syncing is just going to be 2x slower than loading from V2 was. Something we would need to improve on the libxmtp side. As for loading it looks like loading in V3 is 3x faster than loading from the mem cache in iOS proper but 3x slower in RN. So something is having trouble serializing across the bridge.
|
So I think the culprit is the |
Benchmark and add local mem caching to speed up performance.
The text was updated successfully, but these errors were encountered: