2. Improving Your PHP Code Performance Part 2: Tuning with Preemptive Caching
Posted on: 2015-09-15
One way to improve the performance of slow scripts is to use caching techniques to minimize the time to retrieve data that takes a long time to compute.
Read this article to learn how to apply the Preemptive Cache class in practice to optimize the performance of scripts that retrieve data from databases.
More ... Post a comment See comments (3) Trackbacks (0)
Read this article to learn how to apply the Preemptive Cache class in practice to optimize the performance of scripts that retrieve data from databases.
More ... Post a comment See comments (3) Trackbacks (0)
1. Improving Your PHP Code Performance Part 1: Profiling and Detecting Slow Code
Posted on: 2015-09-08
Sometimes we have to deal with PHP code that takes longer to run than it should. When that happens we tend to keep trying to figure the causes and take every opportunity to improve the code. Sometimes it is not enough to clean up or refactor the code.
Read this article to learn techniques to detect what PHP code is causing your application to run so slow.
More ... Post a comment See comments (7) Trackbacks (0)
Read this article to learn techniques to detect what PHP code is causing your application to run so slow.
More ... Post a comment See comments (7) Trackbacks (0)