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
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
For Eg.
Set('key", 1)will result in json storage overheads as it is stored as a string instead of a 4 byte INTOptions
serializerinmemjsto write bin data.