1a1a11a / libCacheSim

a high performance library for building cache simulators
GNU General Public License v3.0
159 stars 34 forks source link

Questions about running test.c #5

Closed gwanil closed 2 years ago

gwanil commented 2 years ago

Hello

After installing it along with README.md, it runs as a test.out file cache_t *cache = create_cache(name, common_cache_params, cache_specific_params); LRU, FIFO, and LFU work well here, but if you insert Random and LHD, you will get the error "cannot load internal cache" How can I write down the name to use Random and LHD?

1a1a11a commented 2 years ago

Hi @gwanil, the plugin system fails sometimes, we have a new version which does not use plugin to implement cache. I will update this today. Thank you for bringing this to my attention. :)

gwanil commented 2 years ago

Thank you. @1a1a11a

I am studying after reading the A Large Scale Analysis of Hundreds of In-memory Key-value Cache Clusters at Twitter paper. It's been very helpful. I want to experiment with a new version as soon as possible. Can I ask you a question if something you don't know happens during the experiment?