News Feed
Jobs Feed
Sections




News Archive
Gonzalo Ayuso's Blog:
Checking the performance reading arrays with PHP
August 16, 2011 @ 11:46:07

While admitting that micro-optimizations aren't usually worth the time that's taken to worry about them, Gonzalo Ayuso has thrown together some array read benchmarks to show the difference, if any, in where array values are fetched.

Normally our code is coded once and executed thousands of times, and we must keep in mind that CPU time many times means money. We need to balance it (as always). But, WTH. I like micro-optimizations, and here comes another one: Checking the access to arrays with PHP.

He sets up three different options and tests the memory consumption and run time for each:

  • Referencing a value from a large array outside a for loop
  • Referencing a value from a large array inside a for loop
  • Echoing out the value from a large array inside a for loop

Not surprisingly, all three approaches yield just about the same results. It probably has more to do with the size of the large array than how it's accessed. The fetch outside the for loop did come in slightly under the others, but not enough to worry about it.

0 comments voice your opinion now!
performance array microoptimization read memory runtime


blog comments powered by Disqus

Similar Posts

Johannes Schlüter's Blog: High Performance PHP Session Storage on Scale

Debuggable Blog: Better array syntax for PHP: Here's your chance to weigh in

Christian Weiske's Blog: Visualizing PHPUnit runs

PHPBuilder.com: Build Blazing Fast PHP Websites with Memcached Distributed Caching

DevShed: Optimizing System Performance


Community Events











Don't see your event here?
Let us know!


database community series podcast language introduction unittest testing development composer zendframework2 example interview api phpunit framework code release opinion functional

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework