0
ideutsch created
Hi, I notice in the documentation that you advise using async database calls in the app services. If we're in a situation where we don't expect performance bottlenecks, would it cause problems with the framework if we use the synchronous versions of these calls?
1 Answer(s)
-
0
Short answer: No, there is no problem. A little more detail: Use Async wherever possible. It's not for performance problem. Actually, if you check deeply, async programming has performance disadvantage (very little). Async is for scalibility. As you can find more about async on the web, that explanation should be enough :)
Thanks.