|
@@ -105,7 +105,7 @@ class Journal extends Core
|
|
|
$this->data['journal'] = array();
|
|
|
}
|
|
|
|
|
|
- Dever::cache($key, $this->data, 900);
|
|
|
+ //Dever::cache($key, $this->data, 900);
|
|
|
|
|
|
return $this->data;
|
|
|
}
|
|
@@ -138,11 +138,12 @@ class Journal extends Core
|
|
|
$where['cate_id'] = $cate['id'];
|
|
|
|
|
|
$key = 'my_subscribe_' . $where['uid'] . '_' . $cate['id'];
|
|
|
- $data = Dever::cache($key);
|
|
|
+ //$data = Dever::cache($key);
|
|
|
+ $data = array();
|
|
|
if (!$data) {
|
|
|
$data = Dever::db('act/subscribe')->getMyAll($where);
|
|
|
if ($data) {
|
|
|
- Dever::cache($key, $data, 900);
|
|
|
+ //Dever::cache($key, $data, 900);
|
|
|
}
|
|
|
}
|
|
|
|