Symfony 1.4 + Doctrine 1.2.

What is the best way to minimize the number of queries to retrieve products, subcategories of current category, product counts by subcategory and brand for the result set of the query below? Categories are a nested set.

Here is my query:

    $q = Doctrine_Query::create()
    ->select('c.*, p.product,p.price, b.brand')
    ->from('Category c')
    ->leftJoin('c.Product p')
    ->leftJoin('p.Brand b')
    ->where ('c.root_id = ?', $this->category->getRootId())
    ->andWhere('c.lft >= ?', $this->category->getLft())
    ->andWhere('c.rgt <= ?', $this->category->getRgt())
    ->setHydrationMode(Doctrine_Core::HYDRATE_ARRAY);

   $treeObject = Doctrine::getTable('Category')->getTree();
    $treeObject->setBaseQuery($q);
    $this->treeObject = $treeObject;
    $treeObject->resetBaseQuery();

    $this->products = $q->execute();
link|improve this question
How many queries are you doing currently? Also have you got further example code to see what you are doing with the treeObject and products as that will help to figure out where the queries are coming from. – johnwards May 18 '10 at 14:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.