Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

My artisanal architecture design uses writes with a few characters and uses unix pipes:

    yes | pv > /dev/null
I hope that in my next rewrite I can advance to larger block sizes.


Interestingly I tried this as well and was disappointed with the results:

  yes $(printf %1024s | tr " " "y") | pv > /dev/null
About the same throughput as letting yes output a single character. I guess Unix pipes are slow.


> I guess Unix pipes are slow.

Or string concatenation, or pipeviewer.


yes doesn't do string concatenation, at least not in the loop that matters. It just prepares a buffer of bytes once and writes it to stdout repeatedly.

https://github.com/coreutils/coreutils/blob/master/src/yes.c





Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: