hello everyone. Is kotlin coroutine suitable for p...
# announcements
c
hello everyone. Is kotlin coroutine suitable for processing big about of pdf parsing?
e
yes, why not?
c
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
it will run on a thread pool limited to CPU cores so you can utilize it effectively
g
I would create separate coroutines dispatcher for such CPU bound task rather than do that on default dispatcher, just to be more explicit