Best Practices in the world of Software

Here I will talk about best practices and some ways to increase application performance.

  • If you want an application to process more requests , one option is to increase the number of servers on which the application is running – This can be done easily on AWS servers. Please note that this can have some side effects such as increase in database connections if application communicates with a database – Make sure there are no implications before increasing the number of instances of an application.
  • Try to increase the RAM on the server application is running. This can help improve the performance – Observing memory usage on the server can give better idea : free -m on the server will give the memory info.

Best Practices :

  • If your application is running on multiple servers, make sure

Leave a comment