else { /* We''ve hit the first old item. Continue to the next queue. */ break; } } } }
CODE:[Copy to clipboard]/* wrapper around assoc_find which does the lazy expiration/deletion logic */ item *get_item_notedeleted(char *key, size_t nkey, int *delete_locked) { item *it = assoc_find(key, nkey); if (delete_locked) *delete_locked = 0; if (it && (it->it_flags & ITEM_DELETED)) { /* it''s flagged as delete-locked. let''s see if that condition is past due, and the 5-second delete_timer just hasn''t gotten to it yet... */ if (! item_delete_lock_over(it)) { if (delete_locked) *delete_locked = 1; it = 0; } } if (it && settings.oldest_live && settings.oldest_live <= current_time && it->time <= settings.oldest_live) { item_unlink(it); it = 0; } if (it && it->exptime && it->exptime <= current_time) { item_unlink(it); it = 0; } return it; } Memcached的内存管理方式是非常精巧和高效的,它很大程度上减少了直接alloc系统内存的次数,降低函数开销和内存碎片产生几率,虽然这种方式会造成一些冗余浪费,但是这种浪费在大型系统应用中是微不足道的。
◎Memcached的理论参数计算方式
影响 memcached 工作的几个参数有:
常量REALTIME_MAXDELTA 60*60*24*30 最大30天的过期时间
conn_init()中的freetotal(=200) 最大同时连接数
常量KEY_MAX_LENGTH 250 最大键长
settings.factor(=1.25) factor将影响chunk的步进大小
settings.maxconns(=1024) 最大软连接
settings.chunk_size(=48) 一个保守估计的key+value长度,用来生成id1中的chunk长度(1.2)。id1的chunk长度等于这个数值加上item结构体的长度(32),即默认的80字节。
常量POWER_SMALLEST 1 最小classid(1.2)
常量POWER_LARGEST 200 最大classid(1.2)
常量POWER_BLOCK 1048576 默认slab大小
常量CHUNK_ALIGN_BYTES (sizeof(void *)) 保证chunk大小是这个数值的整数倍,防止越界(void *的长度在不同系统上不一样,在标准32位系统上是4)
常量ITEM_UPDATE_INTERVAL 60 队列刷新间 |