re-arrang follow table content

This commit is contained in:
Vu
2021-03-27 16:47:14 +07:00
parent 9b92b8963b
commit f9580a0770
40 changed files with 189 additions and 54 deletions

View File

@@ -0,0 +1,20 @@
+++
noatcards = True
isdraft = False
+++
# Performance vs scalability
## Performance vs scalability
A service is scalable if it results in increased performance in a manner proportional to resources added. Generally, increasing performance means serving more units of work, but it can also be to handle larger units of work, such as when datasets grow.[1](http://www.allthingsdistributed.com/2006/03/a_word_on_scalability.html)
Another way to look at performance vs scalability:
- If you have a performance problem, your system is slow for a single user.
- If you have a scalability problem, your system is fast for a single user but slow under heavy load.
## Source(s) and further reading
- [A word on scalability](http://www.allthingsdistributed.com/2006/03/a_word_on_scalability.html)
- [Scalability, availability, stability, patterns](http://www.slideshare.net/jboner/scalability-availability-stability-patterns/)