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
From colin.pitrat@gmail.com
Still playing with slabs allocation, I found another strange result.
Storing only one small value in memcached, I end up with this output
for stats slabs:
STAT 1:chunk_size 104
STAT 1:chunks_per_page 10082
STAT 1:total_pages 1
STAT 1:total_chunks 10082
STAT 1:used_chunks 10082
STAT 1:free_chunks 0
STAT 1:free_chunks_end 10081
STAT active_slabs 1
STAT total_malloced 1048528
It is strange that whereas I store only one value, used_chunks report
10082. However, after deleting the value, free_chunks increase to 1,
and used_chunks decrease to 10081. Why are chunks in free_chunks_end
also considered as used_chunks ?
Original issue reported on code.google.com by dsalli...@gmail.com on 17 Mar 2009 at 9:49
The text was updated successfully, but these errors were encountered:
I've got some code for this up here. Please review -- particularly the test.
Is it
comprehensive enough?
http://github.com/dustin/memcached/tree/issue_29
Original comment by dsalli...@gmail.com on 17 Mar 2009 at 10:10
Original issue reported on code.google.com by
dsalli...@gmail.com
on 17 Mar 2009 at 9:49The text was updated successfully, but these errors were encountered: