hello everyone. Is kotlin coroutine suitable for processing big about of pdf parsing?
e
enleur
10/13/2018, 8:07 PM
yes, why not?
c
claudiug
10/13/2018, 8:10 PM
thx, I will have a look at some documentation. I just want to make some tiny job processing, Take a pdf, take any page and process in parallel than join back the result 🙂
e
enleur
10/13/2018, 8:15 PM
it will run on a thread pool limited to CPU cores so you can utilize it effectively
g
gildor
10/14/2018, 4:26 AM
I would create separate coroutines dispatcher for such CPU bound task rather than do that on default dispatcher, just to be more explicit