Hacker News new | ask | show | jobs
by mvertes 2101 days ago
Awesome use of yaegi interpreter!
1 comments

So the Go middleware is interpreted? Curious how that works with a request lazy/large body reader and a response lazy/large body writer? What kind of overhead is added to each invocation of read/write there?
from what we measured on a gzip compression plugin, only a few percents of overhead. Because the gzip part is compiled. Only the plugin glue is interpreted.