Why there are two requests to db cache for a single page fragment?

I have created a single page fragment cache but looking at application log it seems like Yii is making two requests. Why does it do that?

2009/02/18 15:28:00 [trace] [system.base.CApplication] Loading "log" application component


2009/02/18 15:28:00 [trace] [system.base.CApplication] Loading "urlManager" application component


2009/02/18 15:28:00 [trace] [system.base.CApplication] Loading "cache" application component


2009/02/18 15:28:00 [trace] [system.db.CDbCommand] Executing SQL: DELETE FROM YiiCache WHERE expire>0 AND expire<1234999680


2009/02/18 15:28:00 [trace] [system.db.CDbCommand] query with SQL: SELECT value FROM YiiCache WHERE id='b00ebd6fd7e2bf9533cdfb15bea40822' AND (expire=0 OR expire>1234999680)


2009/02/18 15:28:00 [trace] [system.base.CApplication] Loading "request" application component


2009/02/18 15:28:00 [trace] [system.db.CDbCommand] query with SQL: SELECT value FROM YiiCache WHERE id='b17cf58efcf0562bf254b3bd96a5af85' AND (expire=0 OR expire>1234999680)


2009/02/18 15:28:01 [trace] [system.base.CApplication] Loading "user" application component


2009/02/18 15:28:01 [trace] [system.base.CApplication] Loading "session" application component


2009/02/18 15:28:01 [trace] [system.base.CApplication] Loading "clientScript" application component

The first one is used by url manager for cached url rules.

Quote

The first one is used by url manager for cached url rules.

Is there any config option to disable this? I use APC extension so it's faster for me to parse those rules again using cached bytecode than to make request to a busy database.

You can use CApcCache for 'cache' component.