5 ms·
(I'm not the OP, but I had a similar experience.) At one point I tried switching to Hugo. I ended up moving back because I liked Liquid more than Go templates,
by osteele 8y ago
(I'm not the OP, but I had a similar experience.)
At one point I tried switching to Hugo. I ended up moving back because I liked Liquid more than Go templates, and I liked the Jekyll plugins and ecosystem.*
Later I became frustrated with some complicated Jekyll sites that took 20 seconds to generate, so I ported Liquid, Jekyll, and some of the plugins, to Go.† This ran about twenty times faster.††
So that's kind of an apples-to-apples performance comparison between Jekyll (in Ruby) and Jekyll-like (in Go).
These days all my sites are simple, and I think Jekyll may have gotten faster too, so I've moved back to the Ruby implementation.
---
* YMMV. Many people are very happy with Hugo. Moving back to Jekyll was just my personal journey, not something I can defend with facts or figures.
† To be honest, at least as important was that I was looking for a Go learning project.
†† Presumably because (1) Go is a compiled language, and (2) goroutines.