Reducing Query Calls with Caching in ZF2
To improve performance on our apps, we’ve been working on a combination of optimizing queries to require fewer additional calls just to get a single bit of data (like the name of who added a record) and using caching to access data that doesn’t change frequently. For example, core pick […]