# HG changeset patch # User RhodeCode Admin # Date 2023-10-23 19:58:25 # Node ID e1d1f48d5d740dc9c9adae0de03cb32351a61687 # Parent ae69e9e7b0b8ec9da820d7c7d2db15c7d5cfd4f2 configs: mention not to use memory sessions diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -453,8 +453,8 @@ rc_cache.cache_repo.expiration_time = 25 ; ############## ; beaker.session.type is type of storage options for the logged users sessions. Current allowed -; types are file, ext:redis, ext:database, ext:memcached, and memory (default if not specified). -; Fastest ones are Redis and ext:database +; types are file, ext:redis, ext:database, ext:memcached +; Fastest ones are ext:redis and ext:database, DO NOT use memory type for session beaker.session.type = file beaker.session.data_dir = %(here)s/data/sessions diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -403,8 +403,8 @@ rc_cache.cache_repo.expiration_time = 25 ; ############## ; beaker.session.type is type of storage options for the logged users sessions. Current allowed -; types are file, ext:redis, ext:database, ext:memcached, and memory (default if not specified). -; Fastest ones are Redis and ext:database +; types are file, ext:redis, ext:database, ext:memcached +; Fastest ones are ext:redis and ext:database, DO NOT use memory type for session beaker.session.type = file beaker.session.data_dir = %(here)s/data/sessions