Open rossjones opened 9 years ago
CKAN uses beaker for it's session management, and beaker is pretty flexible. A few CKAN instances already use memcached for storing session information, it's probably a lot better place than adding unnecessary pressure on the DB.
It can be enabled by setting the following in the CKAN ini file
beaker.session.type = ext:memcached
beaker.session.url = 127.0.0.1:11211
I believe there are also options for redis and the database.
By default if I recall CKAN uses the filesystem, this is less than ideal, but the database may be equally as bad. In cases where it's an issue it's definitely better to choose an alternative (like redis or memcache).