add buffer to FEMU Blackbox - #141
Conversation
|
Thank you for this PR. I notice that the LRU cache is currently only triggered by flash writes. Would adding missed read requests to the flash cache also enhance performance? If so, could you consider using dirty labels to differentiate between clean pages and those requiring write-back during eviction? |
|
Sorry for the late response. After I adding missed read request to the flash cache, it actually increase the hit ratio constantly after several time of reading. And for the using dirty labels, I'm sorry could you please elaborate more? Do i just need to add label for the pages that needs to be evicted. |
|
Thanks for this, and apologies for the long silence. A write buffer is genuinely missing — master has a read cache ( It does not apply as-is: the base here is from 2023 and bbssd has since been split up ( Happy to take it on ourselves instead if you would rather not; just say so and you will still be credited as the author. |
I implemented buffer mechanism in FEMU Blackbox, I also add interface configuration for setting its buffer size and buffer threshold