> -----Original Message----- > From: jennyw [mailto:jennyw@xxxxxxxxxxxxxxxxxx] > Sent: Wednesday, February 09, 2005 11:38 AM > To: squid-users@xxxxxxxxxxxxxxx > Subject: Re: [squid-users] Clearing the Squid cache or disabling caching > d uring certain periods > > > Chris Robertson wrote: > >>> acl maint_time time 04:00-05:00 >>> acl maint_pages dstdomain .my.server >>> no_cache deny maint_time maint_pages >> > Hmmm ... I tried using this: > > acl MAINT time 12:32-12:35 > no_cache deny MAINT > > But during the time specified, when I hit pages I still got this header: > > X-Cache: HIT from squid > > Which seems to mean it's not working. Or is it bad to rely on the > X-Cache header? > > Any advice would be appreciated! > > Thanks! > > Jen To the best of my knowledge (and I imagine I'll be corrected if wrong) Squid completely ignores acls for cached content. In other words, if you block the yahoo.com domain via an acl, reload squid and try to hit yahoo.com, if the page is in cache, Squid will serve it. Once you try to surf to a non-cached yahoo.com page, Squid will prevent that request from being served. Similarly, during the MAINT time listed above (12:32-12:35) no NEW pages will be cached, but any pages currently in cache will be served. This is all anecdotal experience and should not be relied on as truth. Chris