Files
ssdfasd 58a83f445a fix: improve doc link navigation and tree display
- Fix link resolution with proper relative/absolute path handling
- Improve link styling with underline decoration
- Hide leaf nodes from tree, only show directories
- Fix log file path for packaged app
2026-03-19 12:44:08 +08:00

480 B

ResourceCache::Touch

void Touch(ResourceGUID guid)

更新资源的最近访问时间。当缓存条目被命中时调用,用于 LRU 驱逐算法判断资源的访问热度。

参数:

  • guid - 资源全局唯一标识符

返回:

复杂度: O(1)

示例:

IResource* res = cache.Find(guid);
if (res) {
    cache.Touch(guid);  // 更新 LRU
}

相关文档