Addressing scalability ,performance in a .net web application

前端 未结 6 1088
梦谈多话
梦谈多话 2021-01-31 12:54

I\'m working on a .net portal which would be having lots of concurrent users. so scalability,performance need to be addressed in the design and architecture. We plan to use load

6条回答
  •  不知归路
    2021-01-31 13:24

    Here are my tips

    1)Move all your static files - images , css, js to a load balancer like nginx. This will greatly reduce the load on IIS server and it will have enough free resources to serve the main request.

    2)Think about caching and avoiding database access altogether.

    3)Try to implement REST principles are far as possible.

    4)Keep session state to a bare minimum - if possible avoid it altogether.

提交回复
热议问题