I get all City and use function for count:

foreach ($cities as $city) {
echo $city->getName() . '|' . CityTable::getInstance()->getCount($city->getId(), a). '|' . CityTable::getInstance()->getCount($city->getId(), b). '|' . CityTable::getInstance()->getCount($city->getId(), c);
}

public function getCount($id, $num)
   {
       $q = $this->createQuery('u')
           ->where('city_id = ?', $id)
           ->andWhere('num = ?', $num)
           ->execute();

       return count($q);
   }

this working ok, but this generated to many connect with database. With each iteration in foreach three times called is function getCount. If i have in City Table over 1000 Cities then i have over 10000 query to database. How can i reduce this?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If you have enough memory available load the entire table to an array and loop them using a simples algorithm. If you don't have enough memory load chuncks of data and loop them in PHP.

Querying the DB is the easy (no brainer) way to go. You'll reduce the db queries to just a few.

link|improve this answer
feedback

Try something like this query:

       $q = $this->createQuery('u')
           ->select('COUNT(u.id) as count')
           ->where('num = ?', $num)
           ->groupBy('city_id')
           ->execute();
link|improve this answer
this not helping me – Michael Fidy Sep 6 '11 at 7:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.