Return-Path: X-Original-To: apmail-hc-httpclient-users-archive@www.apache.org Delivered-To: apmail-hc-httpclient-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2D47B10DA4 for ; Tue, 11 Feb 2014 09:31:17 +0000 (UTC) Received: (qmail 92743 invoked by uid 500); 11 Feb 2014 09:31:16 -0000 Delivered-To: apmail-hc-httpclient-users-archive@hc.apache.org Received: (qmail 92193 invoked by uid 500); 11 Feb 2014 09:31:12 -0000 Mailing-List: contact httpclient-users-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpClient User Discussion" Delivered-To: mailing list httpclient-users@hc.apache.org Received: (qmail 92179 invoked by uid 99); 11 Feb 2014 09:31:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Feb 2014 09:31:09 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of fancyerii@gmail.com designates 209.85.217.182 as permitted sender) Received: from [209.85.217.182] (HELO mail-lb0-f182.google.com) (209.85.217.182) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Feb 2014 09:31:04 +0000 Received: by mail-lb0-f182.google.com with SMTP id w7so5606168lbi.41 for ; Tue, 11 Feb 2014 01:30:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=lxO0zqSq7nQMKuhzCQt6Orm24lo1ywyigbr/rxXZP5Q=; b=PZ7oMza1hV0R67kT5oAIZflUx/aJamjv3q5aTNZRnIgmZkj6vXeJTT+RZGlIV3ucxL m3agymOHaYelHQTTTFXu/vePfBl7Y1ig3NM36AKoC8G11xcmrSOMZhmPyBKPTGPhDv0K EStaNbZvilwt4nujUlVSOxO8wd62Ha9cwsyHuTYjns3t1x299Tqc2s6n4/l07Qjp3/q6 lzyefR9/Iwwb88J4NvaJT43vL5q54K2tfCzSQEVwEYyfEdUVyHON7kli0Vo32r91QL61 9jpNTRxyuR/J1zAio24ohhxi4sarLgRLVsMClqZObWEqrO9vtci01AdwPBCeezbSztxH WMYg== MIME-Version: 1.0 X-Received: by 10.112.73.100 with SMTP id k4mr24603019lbv.25.1392111042274; Tue, 11 Feb 2014 01:30:42 -0800 (PST) Received: by 10.112.2.166 with HTTP; Tue, 11 Feb 2014 01:30:42 -0800 (PST) Date: Tue, 11 Feb 2014 17:30:42 +0800 Message-ID: Subject: what's the CACHE_MODULE_RESPONSE mean? From: Li Li To: httpclient-users@hc.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org public enum CacheResponseStatus { /** The response was generated directly by the caching module. */ CACHE_MODULE_RESPONSE, /** A response was generated from the cache with no requests sent * upstream. */ CACHE_HIT, /** The response came from an upstream server. */ CACHE_MISS, /** The response was generated from the cache after validating the * entry with the origin server. */ VALIDATED; } when CACHE_MODULE_RESPONSE is used? --------------------------------------------------------------------- To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org For additional commands, e-mail: httpclient-users-help@hc.apache.org