What really is scaling?

前端 未结 6 800
南笙
南笙 2021-01-30 18:35

I\'ve heard that people say that they\'ve made a scalable web application..

  1. What really is scaling?

  2. What can be done by developers to make their

6条回答
  •  自闭症患者
    2021-01-30 19:29

    What really is scaling?


    Scaling means accommodating increases in usage and data volume, and ideally the implementation should be maintainable.

    What developers do to make their application scalable?


    Use a database, but cache as much as possible while accommodating user experience (possibly in the session).

    Any tips and tricks about scaling web applications...


    There are lots, but it depends on the implementation. What programming language(s), what database, etc. The question needs to be refined.

提交回复
热议问题