pub fn clear_status_computer_cache()
Expand description

clear the finished or in progress computation. Limit: we may receive in cache the result of a computation which started before the clear (if this is a problem we could store a cleaning counter alongside the cache to prevent insertions)

Examples found in repository?
src/app/app.rs (line 815)
813
814
815
816
817
818
fn clear_caches() {
    file_sum::clear_cache();
    git::clear_status_computer_cache();
    #[cfg(unix)]
    crate::filesystems::clear_cache();
}