Is using Async/Await in calling every database methods(Repository Pattern) in a large and high scale project, ok?
Is it going to lower my server performance?
Sorry for my English 🙁
>Solution :
Is using Async/Await in calling every database methods(Repository Pattern) in a large and high scale project, ok?
Yes.
Is it going to lower my server performance?
The speed of each individual request will remain approximately the same. However, the scalability of your sever will increase (become more performant), assuming that your database backend is also scalable.