DB Schema caching - not working with memcache

Hello

I can’t seem to get my DB schema caching to work using memcache. I have it all installed, and some other test scripts outside Yii are fine.

When I bring up different pages I’m still getting the SHOW COLUMNS and SHOW CREATE TABLE queries showing in the WebLog. I’m getting the messages that the tables are being saved, eg: Saving “yii:dbschemamysql:host=localhost;dbname=myapp:root:{{contact}}” to cache

My db config is:


'db'=>array(

    'connectionString' => 'mysql:host=localhost;dbname=myapp',

    'emulatePrepare' => true,

    'username' => 'root',

    'password' => '**********',

    'charset' => 'utf8',

    'tablePrefix' => 'tbl_',

    'schemaCachingDuration' => 3600,

),

Any ideas on what I can do to get it working? I’m running WAMP on Windows 7, with Yii 1.1.7 if that helps.

Thanks

Grant