| | |
| | | /** |
| | | * Enable or disable messages caching |
| | | * |
| | | * @param boolean $set Flag |
| | | * @param boolean $set Flag |
| | | * @param int $mode Cache mode |
| | | */ |
| | | public function set_messages_caching($set) |
| | | public function set_messages_caching($set, $mode = null) |
| | | { |
| | | if ($set) { |
| | | $this->messages_caching = true; |
| | | |
| | | if ($mode && ($cache = $this->get_mcache_engine())) { |
| | | $cache->set_mode($mode); |
| | | } |
| | | } |
| | | else { |
| | | if ($this->mcache) { |
| | |
| | | if ($this->messages_caching && !$this->mcache) { |
| | | $rcube = rcube::get_instance(); |
| | | if (($dbh = $rcube->get_dbh()) && ($userid = $rcube->get_user_id())) { |
| | | $ttl = $rcube->config->get('messages_cache_ttl', '10d'); |
| | | $ttl = $rcube->config->get('messages_cache_ttl', '10d'); |
| | | $threshold = $rcube->config->get('messages_cache_threshold', 50); |
| | | $this->mcache = new rcube_imap_cache( |
| | | $dbh, $this, $userid, $this->options['skip_deleted'], $ttl); |
| | | $dbh, $this, $userid, $this->options['skip_deleted'], $ttl, $threshold); |
| | | } |
| | | } |
| | | |
| | |
| | | * Clears the messages cache. |
| | | * |
| | | * @param string $folder Folder name |
| | | * @param array $uids Optional message UIDs to remove from cache |
| | | * @param array $uids Optional message UIDs to remove from cache |
| | | */ |
| | | protected function clear_message_cache($folder = null, $uids = null) |
| | | { |