Large Scale PHP |
|
2024-11-05 |
|
|
3 |
|
|
Share-nothing Architecture
- • Like HTTP, each request is distinct
- • Shared data is pushed down to the data-store layer
- • Avoid front controllers
This gives us
- • Ability to load balance
- • Invisible failover from one datacenter to another
- • Better modularization of applications
- • Easier to develop and debug