line 105-111

        if (($ret = @memcache_get($this->connection, $key)) === false) {
            return false;
        }
        if (time() - $ret['time'] > $expiration) {
            $this->delete($key);
            return false;
        }

try flushing ur mem cache.

# sudo /etc/init.d/memcached restart

seems that the data u have the that $key has old values. without  the new
structure for each data that adds the time stamp

hope this helps

ropu

On Fri, Jun 20, 2008 at 11:17 AM, Brandon Peters <[EMAIL PROTECTED]>
wrote:

> I just did a svn update on my version of shindig (after about two
> weeks of not doing SVN updates) and I got this error:
>
> Cannot use object of type GadgetFeatureRegistry as array in
> /var/www/shindig/php/src/common/CacheMemcache.php on line 108
>
> I switched back over to CacheFile to get the site working, but would
> like to use the Memcache interface at the end of the day.
> Thanks,
> Brandon
>
> --
> Brandon Peters
>



-- 
.-. --- .--. ..-
R o p u

Reply via email to