diff options
| author | 2014-03-01 15:47:15 +0100 | |
|---|---|---|
| committer | 2014-03-01 15:47:15 +0100 | |
| commit | 71f7ce1be5833b54b0f4e1f37e6557425c364725 (patch) | |
| tree | 60ea14f1b08fc2df3a761ab8e42b57b87c837892 /app/Controllers/entryController.php | |
| parent | 29b3bbfe284a6e56413a2e89b740ffc4172c6847 (diff) | |
API: SQL optimisation
https://github.com/marienfressinaud/FreshRSS/issues/13
Diffstat (limited to 'app/Controllers/entryController.php')
| -rwxr-xr-x | app/Controllers/entryController.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php index 1756c91e5..ca7122a7c 100755 --- a/app/Controllers/entryController.php +++ b/app/Controllers/entryController.php @@ -137,11 +137,13 @@ class FreshRSS_entry_Controller extends Minz_ActionController { if ($nb > 0) { $nbTotal += $nb; Minz_Log::record($nb . ' old entries cleaned in feed [' . $feed->url() . ']', Minz_Log::DEBUG); - $feedDAO->updateLastUpdate($feed->id()); + //$feedDAO->updateLastUpdate($feed->id()); } } } + $feedDAO->updateCachedValues(); + invalidateHttpCache(); $notif = array( |
