summaryrefslogtreecommitdiff
path: root/FS/FS/Conf.pm
diff options
context:
space:
mode:
authorivan <ivan>2005-02-08 20:22:46 +0000
committerivan <ivan>2005-02-08 20:22:46 +0000
commitfc9e97f6cab72de473288470c0681534caf25ea5 (patch)
tree1aa26f5ab82003b2fb01eb77936b5771c056129c /FS/FS/Conf.pm
parent85b4db91819ef43709a7d9728af3a7f1aa37b07a (diff)
make self-service session cache module configurable, start framework for in-database session cache
Diffstat (limited to 'FS/FS/Conf.pm')
-rw-r--r--FS/FS/Conf.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index 187a6f9cd..8ce51385b 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -1383,6 +1383,13 @@ httemplate/docs/config.html
'type' => 'checkbox',
},
+ { 'key' => 'selfservice_server-cache_module',
+ 'section' => '',
+ 'description' => 'Module used to store self-service session information. All modules handle any number of self-service servers. Cache::SharedMemoryCache is appropriate for a single database / single Freeside server. Cache::FileCache is useful for multiple databases on a single server, or when IPC::ShareLite is not available (i.e. FreeBSD).', # _Database stores session information in the database and is appropriate for multiple Freeside servers, but may be slower.',
+ 'type' => 'select',
+ 'select_enum' => [ 'Cache::SharedMemoryCache', 'Cache::FileCache', ], # '_Database' ],
+ },
+
);
1;