Fix comment

This commit is contained in:
anand76 2021-04-01 10:31:43 -07:00
parent 1aedd57a62
commit 99ad5553eb

2
cache/lru_cache.cc vendored
View File

@ -258,7 +258,7 @@ void LRUCacheShard::SetCapacity(size_t capacity) {
EvictFromLRU(0, &last_reference_list);
}
// Try to insert the evicted entries into NVM cache
// Try to insert the evicted entries into tiered cache
// Free the entries outside of mutex for performance reasons
for (auto entry : last_reference_list) {
if (tiered_cache_ && entry->IsTieredCacheCompatible() &&