Fork me on GitHub
#cljs-dev
<
2021-05-27
>
Roman Liutikov08:05:04

Oh, I didn’t mean streaming in terms of a streaming parser. What I meant is realtime web apps that constantly exchanging transit payloads (“streaming”)

Roman Liutikov08:05:41

but the answer here is usual: it’s better to do less work (less data) than trying to optimize the algorithm

thheller09:05:08

if you want the absolute best performance you might be better off with a custom binary format. doubt that it makes much of difference whether you use recursion or not unless you are sending really deeply nested data. lots of smaller messages likely won't see a big difference but no clue what your data looks like. 😉

👍 6
Roman Liutikov09:05:50

good point about nested data and recursion