Techniques for writing a scalable website

后端 未结 10 1025
生来不讨喜
生来不讨喜 2021-02-01 10:15

I am new in the website scalability realm. Can you suggest to me some the techniques for making a website scalable to a large number of users?

10条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-01 10:41

    Very similar: How Is PHP Done the Right Way?

    Scalability is no small subject and certainly more material than can be reasonably covered in a single question.

    For instance, with some kinds of applications, joins (in SQL) don't scale, which brings up all sorts of caching and sharding strategies.

    Beanstalk is another scalability and performance tool in high-performance PHP sites. As is memcache (different kind).

提交回复
热议问题