6 ms·
Is there an underlying assumption that the channels are containers and not streams?
by limit499karma 2y ago
Is there an underlying assumption that the channels are containers and not streams?
- destel 2y agoNo, it's the opposite - the library treats channels as streams, processing items as they arrive without needing to know the total size in advance. This is why it can handle infinite streams and large datasets that don't fit in memory.