hi, quick question: when unzipping a file, which d...
# coroutines
l
hi, quick question: when unzipping a file, which dispatchers should I use? IO or Default?
j
IMHO I would say IO if you are actually putting the unzipped data to disk.
Or even just reading from Disk
l
Sounds good. Seems like most of work is just reading/writing file streams. No CPU intensive work to do. I will use IO then.
Thanks
👍 1
j
Yes Input/Output to slower things (disk, network, etc) makes sense then for your use case to me at least.