Fix broken link in FileWriter documentation

- Removed broken [FileWriter](FileWriter.md) link from 方法列表 section since the constructor is already documented on the main page and FileWriter.md doesn't exist (file is named filewriter.md)

Also includes link fixes from fix_links.py:
- Fixed relative paths in containers documentation
This commit is contained in:
2026-03-19 01:14:22 +08:00
parent 12ae6f561a
commit 7332a2a592
6 changed files with 19 additions and 4 deletions

View File

@@ -57,8 +57,8 @@
| `void SetMemoryBudget(size_t bytes)` | 设置内存预算 |
| `size_t GetMemoryBudget() const` | 获取内存预算 |
| `void OnMemoryPressure(size_t requiredBytes)` | 内存压力回调,驱逐资源以释放空间 |
| `void OnZeroRefCount(ResourceGUID guid)` | 当引用计数为零时的回调 |
| `void Flush()` | 清空缓存,释放所有资源 |
| `void OnZeroRefCount(ResourceGUID guid)` | 当引用计数为零时的回调(当前为空实现) |
| `void Flush()` | 清空缓存,释放所有资源(当前为部分实现) |
| `void Clear()` | 清空缓存但不释放资源 |
### LRU 信息