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

ParticleTree.com: Object Oriented Memory Concerns

Brian Swan's Blog: Why is PHP 5.3 on Windows faster than previous PHP versions?

O\'Reilly: Digg PHP\'s Scalability and Performance

Marco Tabini's Blog: 5 PHP Performance Tips You Probably Don't Want To Hear

Derick Rethans' Blog: Overloaded properties (__get)


Community Events









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


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

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