This commit is contained in:
Joey Hess 2011-02-25 15:54:29 -04:00
parent 3f7c0b6970
commit 8aebf9a337

View file

@ -6,7 +6,8 @@ Anyway, each git-annex command is broken down into a series of independant
actions, which has some potential for parallelism. actions, which has some potential for parallelism.
Each action has 3 distinct phases, basically "check", "perform", and Each action has 3 distinct phases, basically "check", "perform", and
"cleanup". The perform actions are not parellizable; the cleanup may be, "cleanup". The perform actions are probably parellizable; the cleanup may be
and the check should be easily parallelizable, although they may access the (but not if it has to run git commands to stage state; it can queue
disk or run minor git query commands, so would probably not want to run commands though); the check should be easily parallelizable, although they
too many of them at once. may access the disk or run minor git query commands, so would probably not
want to run too many of them at once.