#
-# $Id: cf.data.pre,v 1.238 2001/10/22 14:40:23 hno Exp $
+# $Id: cf.data.pre,v 1.239 2001/11/13 06:38:27 hno Exp $
#
#
# SQUID Web Proxy Cache http://www.squid-cache.org/
DEFAULT: none
LOC: Config.accessList.noCache
DOC_START
- A list of ACL elements which, if matched, cause the reply to
- immediately removed from the cache. In other words, use this
- to force certain objects to never be cached.
+ A list of ACL elements which, if matched, cause the request to
+ not be satisfied from the cache and the reply to not be cached.
+ In other words, use this to force certain objects to never be cached.
You must use the word 'DENY' to indicate the ACL names which should
NOT be cached.
/*
- * $Id: client_side.cc,v 1.556 2001/10/26 23:11:56 hno Exp $
+ * $Id: client_side.cc,v 1.557 2001/11/13 06:38:27 hno Exp $
*
* DEBUG: section 33 Client-side Routines
* AUTHOR: Duane Wessels
{
request_t *r = http->request;
StoreEntry *e;
- e = http->entry = storeGetPublicByRequest(r);
+ if (r->flags.cachable)
+ e = http->entry = storeGetPublicByRequest(r);
+ else
+ e = http->entry = NULL;
/* Release negatively cached IP-cache entries on reload */
if (r->flags.nocache)
ipcacheInvalidate(r->host);