Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricarkol/cachesim
Some cache replacement algorithms implemented in C (arc, lru, mru, min, opt).
https://github.com/ricarkol/cachesim
Last synced: about 1 month 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-17T02:28:50.000Z (over 5 years ago)
- Last Synced: 2024-11-02T09:42:22.324Z (3 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
```