News Feed
Jobs Feed
Sections




News Archive
Rob Young's Blog:
Chunking Large Queries with Iterators in PHP
October 07, 2009 @ 10:42:02

Since sometimes you just don't want all of the results of a query back at once, Rob Young has posted a solution of his own using the Iterators included with PHP as a part of the SPL. His solution is to wrap it in a ChunkedQueryIterator that handles the work behind the scenes.

When executing large queries it's usually best not to load the whole result set in one go. Memory isn't infinite and PHP isn't renowned for handling it very well. So the obvious answer is to chunk the large query in to lots of smaller queries. [...] We want something to which we can just provide a PDO object, an SQL query and the chunk size. We should then be able to iterate over the resulting object as though it were a single result set.

He includes two code snippets of it in action, but asks the question of his readers - "How do you handle large database queries?" - to get some feedback on other alternatives.

0 comments voice your opinion now!
chunk large query iterator pdo


blog comments powered by Disqus

Similar Posts

Zend Developer Zone: SQLite: Lean, Mean DB Machine

DevShed: Build a Query Processor Class for Networking in PHP 5 (Part 1)

PHPEverywhere: PDO beta revisited

ThinkPHP Blog: MySQLnd Plugins: Writing a MySQL Query Logger in PHP

Sameer's Blog: Easy way to build GET query strings in php


Community Events











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


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

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