From 862de1bb3e580d1907ca37b92874ae8a2c0f998c Mon Sep 17 00:00:00 2001 From: thomascube Date: Sat, 21 Apr 2012 16:28:03 +0000 Subject: Revert r6094; Add caching for ACL and Metadata --- program/include/rcube_imap.php | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 78c282d48..8b45da1f2 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -566,8 +566,8 @@ class rcube_imap extends rcube_storage { $mode = strtoupper($mode); - // count search set - if ($this->search_string && $folder == $this->folder && ($mode == 'ALL' || $mode == 'THREADS') && !$force) { + // count search set, assume search set is always up-to-date (don't check $force flag) + if ($this->search_string && $folder == $this->folder && ($mode == 'ALL' || $mode == 'THREADS')) { if ($mode == 'ALL') { return $this->search_set->count_messages(); } @@ -3144,6 +3144,13 @@ class rcube_imap extends rcube_storage return $this->icache['options']; } + // get cached metadata + $cache_key = 'mailboxes.folder-info.' . $folder; + $cached = $this->get_cache($cache_key); + + if (is_array($cached)) + return $cached; + $acl = $this->get_capability('ACL'); $namespace = $this->get_namespace(); $options = array(); @@ -3206,7 +3213,9 @@ class rcube_imap extends rcube_storage $options['norename'] = $options['is_root'] || $options['namespace'] != 'personal'; } + // update caches $this->icache['options'] = $options; + $this->update_cache($cache_key, $options); return $options; } @@ -3272,6 +3281,8 @@ class rcube_imap extends rcube_storage return false; } + $this->clear_cache('mailboxes.folder-info.' . $folder); + return $this->conn->setACL($folder, $user, $acl); } @@ -3385,6 +3396,8 @@ class rcube_imap extends rcube_storage return false; } + $this->clear_cache('mailboxes.metadata.' . $folder); + if ($this->get_capability('METADATA') || (!strlen($folder) && $this->get_capability('METADATA-SERVER')) ) { @@ -3417,6 +3430,8 @@ class rcube_imap extends rcube_storage return false; } + $this->clear_cache('mailboxes.metadata.' . $folder); + if ($this->get_capability('METADATA') || (!strlen($folder) && $this->get_capability('METADATA-SERVER')) ) { @@ -3450,10 +3465,16 @@ class rcube_imap extends rcube_storage return null; } + $cache_key = 'mailboxes.metadata.' . $folder; + if ($cached = $this->get_cache($cache_key)) + return $cached; + if ($this->get_capability('METADATA') || (!strlen($folder) && $this->get_capability('METADATA-SERVER')) ) { - return $this->conn->getMetadata($folder, $entries, $options); + $res = $this->conn->getMetadata($folder, $entries, $options); + $this->update_cache($cache_key, $res); + return $res; } else if ($this->get_capability('ANNOTATEMORE') || $this->get_capability('ANNOTATEMORE2')) { $queries = array(); @@ -3472,6 +3493,7 @@ class rcube_imap extends rcube_storage } } + $this->update_cache($cache_key, $res); return $res; } -- cgit v1.2.3