Aleksander Machniak
2015-05-13 652e11f82e7af59a9c6110d75dc506113b745623
program/lib/Roundcube/rcube_cache_shared.php
@@ -42,6 +42,7 @@
    private $index;
    private $table;
    private $debug;
    private $index_changed = false;
    private $cache         = array();
    private $cache_changes = array();
    private $cache_sums    = array();
@@ -115,7 +116,6 @@
    function set($key, $data)
    {
        $this->cache[$key]         = $data;
        $this->cache_changed       = true;
        $this->cache_changes[$key] = true;
    }
@@ -164,7 +164,6 @@
        // Remove all keys
        if ($key === null) {
            $this->cache         = array();
            $this->cache_changed = false;
            $this->cache_changes = array();
            $this->cache_sums    = array();
        }
@@ -222,10 +221,6 @@
     */
    function close()
    {
        if (!$this->cache_changed) {
            return;
        }
        foreach ($this->cache as $key => $data) {
            // The key has been used
            if ($this->cache_changes[$key]) {
@@ -239,7 +234,9 @@
            }
        }
        $this->write_index();
        if ($this->index_changed) {
            $this->write_index();
        }
    }
@@ -351,7 +348,14 @@
        }
        if ($this->type == 'memcache' || $this->type == 'apc') {
            return $this->add_record($this->ckey($key), $data);
            $result = $this->add_record($this->ckey($key), $data);
            // make sure index will be updated
            if ($result && !array_key_exists($key, $this->cache_sums)) {
                $this->cache_sums[$key] = true;
            }
            return $result;
        }
        $key_exists = array_key_exists($key, $this->cache_sums);
@@ -474,6 +478,10 @@
            }
        }
        if ($result) {
            $this->index_changed = true;
        }
        return $result;
    }
@@ -501,6 +509,10 @@
            }
        }
        if ($result) {
            $this->index_changed = true;
        }
        if ($index) {
            if (($idx = array_search($key, $this->index)) !== false) {
                unset($this->index[$idx]);
@@ -526,10 +538,15 @@
        // Make sure index contains new keys
        foreach ($this->cache as $key => $value) {
            if ($value !== null) {
                if (array_search($key, $this->index) === false) {
                    $this->index[] = $key;
                }
            if ($value !== null && !in_array($key, $this->index)) {
                $this->index[] = $key;
            }
        }
        // new keys added using self::write()
        foreach ($this->cache_sums as $key => $value) {
            if ($value === true && !in_array($key, $this->index)) {
                $this->index[] = $key;
            }
        }