请问这两个不会清吗,mmapAddressCache/allocAddressCache,nativeheap在一直增大。
maocanmao opened this issue · 0 comments
maocanmao commented
// 用于 mmap/munmap 去重(出于性能考虑不加锁,而是用线程私有数据,可能有失严谨)
thread_local MemoryCache *mmapAddressCache = new MemoryCache();
// 用于 malloc/free 去重(出于性能考虑不加锁,而是用线程私有数据,可能有失严谨)
thread_local MemoryCache *allocAddressCache = new MemoryCache();