Can you cache requests? Page renders? Database objects? How about function calls?
Caching isn't a panacea but it is certainly one of tools in your set of optimization tactics.
Other stuff I generally look for when trying to optimize include:
- Connection times and connecting pooling - Memory constraints - Duplication of data
Can you cache requests? Page renders? Database objects? How about function calls?
Caching isn't a panacea but it is certainly one of tools in your set of optimization tactics.
Other stuff I generally look for when trying to optimize include:
- Connection times and connecting pooling - Memory constraints - Duplication of data