Skip to content

Commit 6a7f934

Browse files
committed
Update note
1 parent 0e8d408 commit 6a7f934

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

doc/quickstart_plugin.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,12 +300,10 @@ For Python examples, see the `libCacheSim-python/README.md` file which contains
300300
* **Performance Issues**: Use `process_trace()` for large workloads instead of individual `get()` calls for better performance.
301301
* **Memory Usage**: Monitor cache statistics (`cache.occupied_byte`) and ensure proper cache size limits for your system.
302302
* **Custom Cache Issues**: Validate your custom implementation against built-in algorithms using test functions.
303-
* **Implementation Issues**: When re-implementing an eviction algorithm in libCacheSim using the plugin system, note that the core hook functions are simplified. This may introduce some challenges.
303+
* **Implementation Issues**: When re-implementing an eviction algorithm in libCacheSim using the plugin system, note that the core hook functions are simplified. This may introduce some challenges. The central function for cache simulation is `get` and its common internal logic is:
304304

305-
The central function for cache simulation is `get` and its common internal logic is:
306-
307-
!!! note
308-
Cache state is updated automatically, since update_cache = true by default.
305+
!!! NOTE
306+
Cache state is updated automatically, since update_cache = true by default.
309307

310308
```mermaid
311309
graph LR

0 commit comments

Comments
 (0)