CakePHP repeats same queries

Posted by Rytis on Stack Overflow See other posts from Stack Overflow or by Rytis
Published on 2010-03-19T08:31:57Z Indexed on 2010/03/19 15:31 UTC
Read the original article Hit count: 201

Filed under:
|
|

I have a model structure: Category hasMany Product hasMany Stockitem belongsTo Warehouse, Manufacturer.

I fetch data with this code, using containable to be able to filter deeper in the associated models:

$this->Category->find('all', array(
        'conditions' => array('Category.id' => $category_id),
        'contain' => array(
            'Product' => array(
                'Stockitem' => array(
                    'conditions' => array('Stockitem.warehouse_id' => $warehouse_id),
                    'Warehouse',
                    'Manufacturer',
                )
            )
        ),
        )
    );

Data structure is returned just fine, however, I get multiple repeating queries like, sometimes hundreds of such queries in a row, based on dataset.

SELECT `Warehouse`.`id`, `Warehouse`.`title` FROM `beta_warehouses` AS `Warehouse` WHERE `Warehouse`.`id` = 2

Basically, when building data structure Cake is fetching data from mysql over and over again, for each row. We have datasets of several thousand rows, and I have a feeling that it's going to impact performance. Is it possible to make it cache results and not repeat same queries?

© Stack Overflow or respective owner

Related posts about cakephp

Related posts about sql