Open jonjmz opened 10 years ago
Find uses of the $this->Model->find() call and add a 'fields' => array('requiredField1','requiredField2') option to reduce the amount of record being pulled.
$this->Model->find()
'fields' => array('requiredField1','requiredField2')
Find uses of the
$this->Model->find()
call and add a'fields' => array('requiredField1','requiredField2')
option to reduce the amount of record being pulled.