Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 73C6C200BA7 for ; Fri, 21 Oct 2016 20:51:46 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 725AE160AE8; Fri, 21 Oct 2016 18:51:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B8AEF160ADE for ; Fri, 21 Oct 2016 20:51:45 +0200 (CEST) Received: (qmail 27938 invoked by uid 500); 21 Oct 2016 18:51:44 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 27929 invoked by uid 99); 21 Oct 2016 18:51:44 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Oct 2016 18:51:44 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 7225A1A0516 for ; Fri, 21 Oct 2016 18:51:44 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.199 X-Spam-Level: X-Spam-Status: No, score=-1.199 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id LNpU9AclbDrh for ; Fri, 21 Oct 2016 18:51:42 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id F3B095F201 for ; Fri, 21 Oct 2016 18:51:41 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 9293BE015D for ; Fri, 21 Oct 2016 18:51:39 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 907883A0046 for ; Fri, 21 Oct 2016 18:51:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1766105 - in /httpd/httpd/trunk/docs/manual: caching.html.en caching.xml.fr caching.xml.tr Date: Fri, 21 Oct 2016 18:51:39 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20161021185139.907883A0046@svn01-us-west.apache.org> archived-at: Fri, 21 Oct 2016 18:51:46 -0000 Author: jim Date: Fri Oct 21 18:51:39 2016 New Revision: 1766105 URL: http://svn.apache.org/viewvc?rev=1766105&view=rev Log: xforms Modified: httpd/httpd/trunk/docs/manual/caching.html.en httpd/httpd/trunk/docs/manual/caching.xml.fr httpd/httpd/trunk/docs/manual/caching.xml.tr Modified: httpd/httpd/trunk/docs/manual/caching.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/caching.html.en?rev=1766105&r1=1766104&r2=1766105&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/caching.html.en (original) +++ httpd/httpd/trunk/docs/manual/caching.html.en Fri Oct 21 18:51:39 2016 @@ -544,11 +544,13 @@ CacheDirLength 1

Caching to memcached

-

The mod_cache_socache and mod_socache_memcache - modules are used to specify that the backend storage mechanism to be used - to store and return cached data in the memcached server.

+

Using the mod_cache_socache module, mod_cache + can cache data from a variety of implementations (aka: "providers"). Using the + mod_socache_memcache module, for example, one can specify that + memcached is to be used as the + the backend storage mechanism.

-

Typically the module will be configured as so;

+

Typically the module will be configured as so:

CacheEnable socache /
 CacheSocache memcache:memcd.example.com:11211
@@ -556,7 +558,11 @@ CacheSocache memcache:memcd.example.com:

Additional memcached servers can be specified by appending them to the end of the CacheSocache memcache: - line seperated by commas.

+ line separated by commas:

+ +
CacheEnable socache /
+CacheSocache memcache:mem1.example.com:11211,mem2.example.com:11212
+

This format is also used with the other various mod_cache_socache providers. For example:

Modified: httpd/httpd/trunk/docs/manual/caching.xml.fr URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/caching.xml.fr?rev=1766105&r1=1766104&r2=1766105&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/caching.xml.fr (original) +++ httpd/httpd/trunk/docs/manual/caching.xml.fr Fri Oct 21 18:51:39 2016 @@ -3,7 +3,7 @@ - + +