xinyiZzz commented on code in PR #32080: URL: https://github.com/apache/doris/pull/32080#discussion_r1520949552
########## be/src/runtime/memory/lru_cache_policy.h: ########## @@ -72,7 +81,48 @@ class LRUCachePolicy : public CachePolicy { return true; } - ~LRUCachePolicy() override = default; + static std::string lru_cache_type_string(LRUCacheType type) { + switch (type) { + case LRUCacheType::SIZE: + return "size"; + case LRUCacheType::NUMBER: + return "number"; + default: + LOG(FATAL) << "not match type of lru cache:" << static_cast<int>(type); + } + } + + std::shared_ptr<MemTrackerLimiter> mem_tracker() { return _mem_tracker; } + + Cache::Handle* insert(const CacheKey& key, void* value, size_t charge, + CachePriority priority = CachePriority::NORMAL, size_t bytes = -1) { + return _insert(true, key, value, charge, priority, bytes); + } + + Cache::Handle* insert_no_tracking(const CacheKey& key, void* value, size_t charge, Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org