In the Memcached section of chapter 11 it said. 1. from gluon.contrib.memcache import MemcacheClient 2. memcache_servers = ['127.0.0.1:11211'] 3. cache.memcache = MemcacheClient(request, memcache_servers) 4. cache.ram = cache.disk = cache.memcache ... ... The third line redefines cache.ram and cache.disk in terms of memcache. (Which is not the case)
Thats the fourth line which redefines cache.ram and cache.disk not the third. the Third defines the cache.memcache... Thanks, Yannick P.

