一切都工作得很完美,没有任何修改,查询开始返回旧的(过时的)数据。
我删除了一条记录,在没有此记录的情况下返回数据需要一些时间(几秒钟)。 我插入一条新记录,用这条新记录返回数据需要一些时间。
任何帮助?
一个例子:
public function getResidentsByResidenciaId($id = null) {
$resident = $this->Residents->find('all', [
'conditions' => ['Residents.residencia_id =' => $id],
'contain' => ['Usuarios']
]);
$this->set('resident', $resident);
$this->set('_serialize', ['resident']);
}
编辑: 我有这个配置:
Router::extensions('xml');
Router::extensions('json');
Router::defaultRouteClass('DashedRoute');
我在网址末尾使用“.json”。
测试,我意识到当我更改de DB(CRUD)并且我以正常方式(显示dev-toobar)访问带有“.json”的cakePHP时,它带来了正确的,带有“.json”,它需要几秒钟才能升级。