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
Maybe we could base64/hex encode/decode it firstly?
Base64 makes the length about 33% larger than origin bytes, but we will save a u8 with a character rather than usually 3 chars(I mean the 2 number and one extra comma, one or three number is also possible, but relatively rare.)
And hex will always use 2 characters for one u8, so it makes length 100% larger than origin bytes.
Hex might be faster to parse, Base64 is more compact.
Under "cache/index-v5/xx/yy/zzz", I found something like "raw_metadata":[0,18,32,112,97,......]"
It is the serialization of Vec, rather than binary like format.
Is this intentional? It looks like not very efficient.
The text was updated successfully, but these errors were encountered: