7fe4bfa20f
I feel like I just leveled up in Haskell.
12 lines
660 B
Markdown
12 lines
660 B
Markdown
One of my reasons for using haskell was that it provides the possibility of
|
|
some parallell processing. Although since git-annex hits the filesystem
|
|
heavily and mostly runs other git commands, maybe not a whole lot.
|
|
|
|
Anyway, each git-annex command is broken down into a series of independant
|
|
actions, which has some potential for parallelism.
|
|
|
|
Each action has 3 distinct phases, basically "check", "perform", and
|
|
"cleanup". The perform actions are not parellizable; the cleanup may be,
|
|
and the check should be easily parallelizable, although they may access the
|
|
disk or run minor git query commands, so would probably not want to run
|
|
too many of them at once.
|