prune method
void
prune()
Prune the cache.
This method removes the oldest buffer and destroys it.
Implementation
void prune() {
final f = _files.removeAt(0);
final b = _buffers.remove(f)!;
_size -= b.size;
b.destroy();
}