not sure adding the limit of 2 will do it if you have multiple extension packages
I think so... the multiple extentions is handled before that (that’s what i meant about comma vs semi-colon).
Anyway - I’ve put it in JIRA (
http://svn.modxcms.com/jira/browse/MODX-1835)
$myQuery
I dont think it’s related to the query, but here’s a simple one:
$myQuery= $modx->newQuery(’modUser’);
$myQuery->where(array(’id’ => $userId));
In the mean time, I’m cancelling most of the *graph around my code, reverting back to getObject and getOne/getMany.
No complaint, but I am really curious why using extention_packages (which just does the same addPackage as I did) - gave me such a performance boost.. I mean - if a package is already added, and you call addPackage again - it will not be fully executed again, no? I have a feeling it’s something else..