根据李佳提示:LRU模式会频繁在链表中移动,为降低CPU开销,将MESA_htable的淘汰参数改为FIFO。未升级版本号。
This commit is contained in:
@@ -674,7 +674,7 @@ struct _Maat_scanner_t* create_maat_scanner(unsigned int version,int scan_thread
|
||||
hargs.thread_safe=0;
|
||||
hargs.hash_slot_size = 1024*1024;
|
||||
hargs.max_elem_num = 0;
|
||||
hargs.eliminate_type = HASH_ELIMINATE_ALGO_LRU;
|
||||
hargs.eliminate_type = HASH_ELIMINATE_ALGO_FIFO;
|
||||
hargs.expire_time = 0;
|
||||
hargs.key_comp = NULL;
|
||||
hargs.key2index = NULL;
|
||||
|
||||
Reference in New Issue
Block a user