| 44 | } |
| 45 | |
| 46 | void SsdFileTracker::regionFilled(int32_t region) { |
| 47 | const uint64_t best = |
| 48 | *std::max_element(regionScores_.begin(), regionScores_.end()); |
| 49 | regionScores_[region] = std::max<int64_t>(regionScores_[region], best * 1.1); |
| 50 | } |
| 51 | |
| 52 | std::vector<int32_t> SsdFileTracker::findEvictionCandidates( |
| 53 | int32_t numCandidates, |