https://github.com/ricarkol/cachesim
Some cache replacement algorithms implemented in C (arc, lru, mru, min, opt).
https://github.com/ricarkol/cachesim
Last synced: 3 months ago
JSON representation
Some cache replacement algorithms implemented in C (arc, lru, mru, min, opt).
- Host: GitHub
- URL: https://github.com/ricarkol/cachesim
- Owner: ricarkol
- Created: 2019-06-04T20:16:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-17T02:28:50.000Z (about 6 years ago)
- Last Synced: 2025-02-13T09:20:03.948Z (5 months ago)
- Language: C
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cachesim
Some cache replacement algorithms implemented in C (arc, lru, mru, min, opt).I wrote this at least 10 years ago and recently found it while cleaning up an old laptop. Might be useful to somebody, so sharing it.
# usage
```
make
bash test.sh # will run some tests
```