added exceptions, docs, and removed disableCache

This commit is contained in:
JT Smith 2009-09-25 18:41:03 -05:00
parent a34f584780
commit af705232a8
7 changed files with 224 additions and 107 deletions

View file

@ -88,6 +88,18 @@
#"webServerPort" : 80,
# The cacheServers directive tells WebGUI how to connect to
# memcached. If a "socket" is specified it will be used instead
# of the host and port info, and this should be the
# path to the unix socket that you started memcached with. "host"
# and "port" are used to tell WebGUI how to connect to
# memcached over TCP. And since this is an array you can specify
# as many server connections as you have memcached servers
"cacheServers" : [
{ "socket" : "/tmp/memcached.sock", "host" : "127.0.0.1", "port" : "11211" }
],
# The database connection string. It usually takes the form of
# DBI:<driver>:<db>;host:<hostname>