Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 c++ 类来将我的对象缓存在内存中,并能够设置过期超时。
std 或 mfc 中是否有任何标准,还是我需要自己实现?
类似于 .NET MemoryCache 类的东西,但在本机 C++ 中。
谢谢, 哈恰图尔
看看谷歌轻量级 c/c++ LRU 内存缓存 (LRUC) 项目,也许能帮到你,但没有超时lruc
最好知道您的应用程序是什么,因为这将有助于更好地回答您的问题。
或者,您还可以实现在实时系统中有用的预分配内存。c-part-2 中的内存管理