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
The caches are currently encoded as JSON. That's overhead in both encoding and decoding, and in network size. We can just use something like rkyv to represent those values. Faster encoding and basically infinitely faster decoding since there is no actual decoding process.
The text was updated successfully, but these errors were encountered:
The caches are currently encoded as JSON. That's overhead in both encoding and decoding, and in network size. We can just use something like
rkyv
to represent those values. Faster encoding and basically infinitely faster decoding since there is no actual decoding process.The text was updated successfully, but these errors were encountered: