This chapter will cover several adjustments to the basic two-tier architectures described in the previous chapter.
6.1 Understanding Caching Architectures
In our current application, the database is the main bottleneck. This means that adding more web servers will not substantially increase the load that the cloud can handle. When you discover a bottleneck, it is good to take some time and think about ways that the bottleneck can be avoided.
In our case, our data doesn’t really change all that often. Even if it did, getting up-to-the-second values ...