0

これら2つのリクエストを1つにマージしたいのですが、これを行う方法がわかりません。何か案が ?

$productsCount = Doctrine::getTable('Product')
            ->createQuery('p')
            ->where('p.store_id = ?', $store_id)
            ->andWhere('p.collection = ?', $this->product->getCollection())
            ->andWhere('p.image_path IS NOT NULL')
            ->count();

$productsCollection = Doctrine::getTable('Product')
            ->createQuery('p')
            ->where('p.store_id = ?', $store_id)
            ->andWhere('p.collection = ?', $this->product->getCollection())
            ->andWhere('p.status_id = ?', Product::_ONLINE)
            ->andWhere('p.id<>?', $this->product_id)
            ->offset(rand(0, $productsCount - 1))
            ->execute();
  • 教義:1.2
  • symfony:1.4
  • PHP:5.3
4

1 に答える 1

1

クエリが同一ではないため、サブクエリを使用できます。ここでDQL: Doctrine Query Languageにいくつかの例があります。そして、これが疑似コードです。すぐに機能するかどうかはわかりません。

$q = Doctrine_Query::create()
            ->from('Product p')
            ->select('id, sum(id) as sumEntries') 
            ->addSelect('(SELECT id, name) // and else fields that you need
                        FROM Product a
                        WHERE (
                        a.store_id  = '.$store_id.' 
                        AND  
                        a.collection = '.$this->product->getCollection().'
                        AND
                        a.id<>= '.$this->product_id.' 
                        )
                        OFFSET '.rand(0, $productsCount - 1).') // I am not sure in this line
                        as resultSubquery')

            ->where('p.store_id = ?', $store_id)
            ->andWhere('p.collection = ?', $this->product->getCollection())
            ->andWhere('p.image_path IS NOT NULL')


  $result =  $q->execute(array(), Doctrine_Core::HYDRATE_ARRAY); //This greatly speeds up query

で配列を取得し$resultます。var_dump()実行して内容を確認してください。このコードがすぐに機能するかどうかはわかりませんが、この方向に進むことをお勧めします。

ps: Doctrine クエリの最適化に関する興味深いプレゼンテーションをお勧めします: Doctrine 1.2 Optimization

于 2012-11-09T22:03:30.837 に答える