Vernon
Vernon
Explore posts from servers
CC#
Created by Vernon on 12/15/2024 in #help
How to Improve Long API Call Response Times?
Hey everyone, I have an API call that takes a significant amount of time to compute the result. During the computation, users have to wait until the API responds, which leads to a poor user experience. The calculation uses a parallel approach:
parallel for loop [1 ~ 100]
parallel for loop [1 ~ 1000]
parallel for loop [1 ~ 100]
parallel for loop [1 ~ 1000]
Is there a way to reduce the waiting time? Would using something like RabbitMQ or a similar message queue allow the task to run in the background and update the database once it's completed? Thanks for any suggestions!
14 replies
CC#
Created by Vernon on 11/23/2023 in #help
✅ Where to store sensitive information when deploying to the production?
Hello everyone, When developing an application locally, we will store all the sensitive information on user-secrets. Where should I store those information when it comes to production? Is there any article or video that shares this information?
4 replies
CC#
Created by Vernon on 11/20/2023 in #help
✅ Where should I store all the sensitive file on .NET project?
Hello everyone, May I know where should I store all the credential files that needs to be used by .NET Project? Example like the service_account.json that generates by Google Service Account? It would be great if there's an tutorial about this.
30 replies