↧
Answer by Sascha Trifunovic for slab classes and memory allocation in memcached
An allocated slab of class slabclass_t is basically a chunk of memory that hosts perslab number of items of size size. If all the items in that slab are used, Memcached allocates another chunk of...
View Articleslab classes and memory allocation in memcached
I recently started going through memcached source code and i came across this structure. Based on my understanding, there are approximately 64 slabs and and each slab represents a unique chunk size....
View Article