generated from aicore/template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
- We store everything as JSON while the underlying Memcached accepts bin data. This leads to less storage under utilization.
For Eg.Set('key", 1)will result in json storage overheads as it is stored as a string instead of a 4 byte INT
Options
- Use a binary format and see what impact we have on size. Eg: https://www.npmjs.com/package/bson
- use a custom
serializerinmemjsto write bin data.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request