Why not just deserialize all the source maps ahead of time and just store/retrieve them as msgpack objects?
Per this python serialization speed comparison, msgpack is ~ 10X faster than json. So you get the same speed up, but no Rust.
https://gist.github.com/cactus/4073643
Why not just deserialize all the source maps ahead of time and just store/retrieve them as msgpack objects?
Per this python serialization speed comparison, msgpack is ~ 10X faster than json. So you get the same speed up, but no Rust.
https://gist.github.com/cactus/4073643