summaryrefslogtreecommitdiff
path: root/program/include/rcube_imap.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-04-21 16:28:03 +0000
committerthomascube <thomas@roundcube.net>2012-04-21 16:28:03 +0000
commit862de1bb3e580d1907ca37b92874ae8a2c0f998c (patch)
treecdea6a3316c37835d28eb744037a3885522b8450 /program/include/rcube_imap.php
parent5a79416789d375a24dd81de89de0a0d3fedf5f98 (diff)
Revert r6094; Add caching for ACL and Metadata
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r--program/include/rcube_imap.php28
1 files 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;
}