Skip to content

Instantly share code, notes, and snippets.

@posativ
Created November 13, 2012 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save posativ/4067083 to your computer and use it in GitHub Desktop.
Save posativ/4067083 to your computer and use it in GitHub Desktop.
pelican versus acrylamid
~/dev/bench/pelican$ find content/ | wc -l
1029
~/dev/bench/pelican$ time make html
find /Users/ich/dev/bench/pelican/output -mindepth 1 -delete
pelican /Users/ich/dev/bench/pelican/content -o /Users/ich/dev/bench/pelican/output -s /Users/ich/dev/bench/pelican/pelicanconf.py
WARNING: Feeds generated without SITEURL set properly may not be valid
Done
real 0m25.691s
user 0m23.946s
sys 0m1.781s
~/dev/bench/acrylamid$ find content/ | wc -l
1030
~/dev/bench/acrylamid$ time acrylamid co -f
0 new, 0 updated, 1135 skipped [9.39s]
real 0m9.624s
user 0m8.461s
sys 0m1.124s
~/dev/bench/acrylamid$ time acrylamid co
0 new, 0 updated, 1135 skipped [1.94s]
real 0m2.199s
user 0m1.849s
sys 0m0.346s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment