Vernon
Explore posts from serversHow 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:
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
✅ 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
✅ 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