Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Latest commit

 

History

History
6 lines (5 loc) · 337 Bytes

serialization.md

File metadata and controls

6 lines (5 loc) · 337 Bytes

Goals:

  • Serialize keys only once to improve amount of serialization i.e. fast deduplication? Create a lookup table to ensure re-use. Pass key dictionary down occasionally.
  • Only deserialize keys or values on use.
  • Only reserialize keys or values if they change.
  • Re-use bytes/values on re-serialization to reduce memory allocation.