私のアプリは非常に遅く動作しています。Cakephp2.3.1バージョンを使用しています。モデル、コンポーネント、ヘルパーを必要な機能にロードすることは有益でしょうか?今、私はクラスで彼らを呼んでいます。例えば:
class PanelsController extends AppController {
public $name = 'Panel';
public $uses = array(list of models goes here);
public $components = array(list of components goes here);
.................
}
他にどのようなテクニックを提案しますか。ありがとう