Hi, I have a Spring MVC API written with Kotlin.
I would like to begin using some coroutines inside for some basic usecases.
For example : on an API call, I want to fire&forget a coroutine that will do some background job.
I don’t care if the job fail & I don’t need to cancel the job.
What is the best CoroutineScope to use for launching the coroutine ? Is GlobalScope OK for this usecase or should i use a custom CoroutineScope ? If so, when should I create it ?
thx