[open-ils-commits] r18079 - trunk/Open-ILS/examples (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Sep 28 12:40:05 EDT 2010
Author: dbs
Date: 2010-09-28 12:40:02 -0400 (Tue, 28 Sep 2010)
New Revision: 18079
Modified:
trunk/Open-ILS/examples/opensrf.xml.example
Log:
Change memcached default location to 127.0.0.1 from localhost
Debian Squeeze currently doesn't fare well with memcached servers pointing to
localhost and needs an explicit 127.0.0.1, whereas Ubuntu Lucid is happy with
either. Changing the default here means one less possible gotcha in the out
of the box install & configure experience for Debian Squeeze folk.
Modified: trunk/Open-ILS/examples/opensrf.xml.example
===================================================================
--- trunk/Open-ILS/examples/opensrf.xml.example 2010-09-28 16:36:05 UTC (rev 18078)
+++ trunk/Open-ILS/examples/opensrf.xml.example 2010-09-28 16:40:02 UTC (rev 18079)
@@ -326,14 +326,14 @@
<!-- memcache servers -->
<global>
<servers>
- <server>localhost:11211</server>
+ <server>127.0.0.1:11211</server>
</servers>
<max_cache_time>86400</max_cache_time>
</global>
<anon>
<!-- anonymous cache. currently, primarily used for web session caching -->
<servers>
- <server>localhost:11211</server>
+ <server>127.0.0.1:11211</server>
</servers>
<max_cache_time>1800</max_cache_time>
<!-- maximum size of a single cache entry / default = 100k-->
More information about the open-ils-commits
mailing list