aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/nix-collect-garbage.xml
AgeCommit message (Collapse)Author
2012-09-13nix-collect-garbage: Support --dry-runEelco Dolstra
2009-07-14* Remove the redundant <sections> around refentries.Eelco Dolstra
2007-09-19* Manpage for nix-copy-closure.Eelco Dolstra
2006-09-29* Manual.Eelco Dolstra
2006-08-21* Convert to DocBook 5.Eelco Dolstra
* Use Jing for RelaxNG validation, xmllint seems buggy.
2005-04-07* GC docs.Eelco Dolstra
2005-04-05* Some GC documentation.Eelco Dolstra
2004-08-25* `--min-age' flag in nix-store and nix-collect-garbage to only deleteEelco Dolstra
unreachable paths that haven't been used for N hours. For instance, `nix-collect-garbage --min-age 168' only deletes paths that haven't been accessed in the last week. This is useful for instance in the build farm where many derivations can be shared between consecutive builds, and we wouldn't want a garbage collect to throw them all away. We could of course register them as roots, but then we'd to unregister them at some point, which would be a pain to manage. The `--min-age' flag gives us a sort of MRU caching scheme. BUG: this really shouldn't be in gc.cc since that violates mechanism/policy separation.
2004-08-25* `nix-collect-garbage' now actually performs a garbage collection, itEelco Dolstra
doesn't just print the set of paths that should be deleted. So there is no more need to pipe the result into `nix-store --delete' (which doesn't even exist anymore).
2004-02-10* Lots of manual stuff. Reference pages for most Nix commands.Eelco Dolstra
* nix-pull now requires the full url to the manifest, i.e., `/MANIFEST/' is no longer automatically appended. * nix-prefetch-url works again.