From 856b869e235a30b4d082cdbcfa740249b5788c0e Mon Sep 17 00:00:00 2001
From: Nick Kew
Date: Mon, 28 Jun 2010 21:09:44 +0000
Subject: [PATCH] Add note on cacheing to auth howto
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@958741 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/howto/auth.xml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/docs/manual/howto/auth.xml b/docs/manual/howto/auth.xml
index 8d2533de93..155dfe17c5 100644
--- a/docs/manual/howto/auth.xml
+++ b/docs/manual/howto/auth.xml
@@ -56,6 +56,7 @@ module from each group.
mod_authn_dbm
mod_authn_file
mod_authnz_ldap
+ mod_authn_socache
Authorization (see the
@@ -591,6 +592,16 @@ person in
+Authentication Cacheing
+ There may be times when authentication puts an unacceptable load
+ on a provider or on your network. This is most likely to affect users
+ of mod_authn_dbd (or third-party/custom providers).
+ To deal with this, HTTPD 2.3/2.4 introduces a new cacheing provider
+ mod_authn_socache to cache credentials and reduce
+ the load on the origin provider(s).
+ This may offer a substantial performance boost to some users.
+
+