Base solution for your next web application
Open Closed

Async Database Calls #426


User avatar
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)
  • User Avatar
    0
    hikalkan created
    Support Team

    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.