mirror of
https://github.com/NixOS/nix
synced 2025-06-27 08:31:16 +02:00
* Garbage collector: added an option `--use-atime' to delete paths in
order of ascending last access time. This is useful in conjunction with --max-freed or --max-links to prefer deleting non-recently used garbage, which is good (especially in the build farm) since garbage may become live again. The code could easily be modified to accept other criteria for ordering garbage by changing the comparison operator used by the priority queue in collectGarbage().
This commit is contained in:
parent
2b2aa8a820
commit
7ab68961e4
6 changed files with 225 additions and 59 deletions
|
@ -14,6 +14,7 @@ GCOptions::GCOptions()
|
|||
ignoreLiveness = false;
|
||||
maxFreed = ULLONG_MAX;
|
||||
maxLinks = 0;
|
||||
useAtime = false;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue