pounard / goat-query

Goat SQL query builder built over a PHP to SQL and SQL to PHP type converter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get rid of all intermediate unnecessary arrays

pounard opened this issue · comments

  • whenever possible, use iterators or generators,
  • for query builder and data temporary storage, use objects with explicit type,
  • in query formatter, it might not always be possible to get rid of temporary arrays.

In most case, they are now gone. A few remain but those in the most critical paths are over.