|
|
|
|
|
by dllthomas
4171 days ago
|
|
It matters quite a bit for CLI utils. More than a tenth of a second is not "instantaneous" - which isn't required, and of course won't always be possible, but starting with substantially more than that isn't great. And of course, if you're using that utility in a loop some pipeline, that could even wind up being a bottleneck. For any single long-running application that doesn't spawn more processes, of course it doesn't matter - but most performance issues only matter for some set of applications. I think it's such a common concern because 1) people often start out writing CLI utils as they learn their way around a language, 2) people would love to see Clojure be better for this use case, and 3) it's one of the few things to complain about. |
|