22 #ifndef NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP 23 #define NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP 27 #include <boost/multi_index_container.hpp> 28 #include <boost/multi_index/hashed_index.hpp> 29 #include <boost/multi_index/identity.hpp> 30 #include <boost/multi_index/member.hpp> 31 #include <boost/multi_index/sequenced_index.hpp> 75 typedef boost::multi_index_container<
77 boost::multi_index::indexed_by<
80 boost::multi_index::hashed_unique<
81 boost::multi_index::tag<byEntity>,
82 boost::multi_index::identity<InMemoryStorageEntry*>
86 boost::multi_index::sequenced<
87 boost::multi_index::tag<byUsedTime>
93 CleanupIndex m_cleanupIndex;
98 #endif // NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP Copyright (c) 2013-2017 Regents of the University of California.
void afterInsert(InMemoryStorageEntry *entry) override
Update the entry after a entry is successfully inserted, add it to the cleanupIndex.
Represents in-memory storage.
bool evictItem() override
Removes one Data packet from in-memory storage based on LRU, i.e.
void afterAccess(InMemoryStorageEntry *entry) override
Update the entry when the entry is returned by the find() function, update the last used time accordi...
void beforeErase(InMemoryStorageEntry *entry) override
Update the entry or other data structures before a entry is successfully erased, erase it from the cl...
Provides in-memory storage employing Least Recently Used (LRU) replacement policy.
Represents an in-memory storage entry.
InMemoryStorageLru(size_t limit=10)
#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED