Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add section about clearing the sessions store during OMERO.web upgrade #2312

Merged
merged 14 commits into from
Jul 7, 2023
6 changes: 3 additions & 3 deletions omero/sysadmins/omeroweb-upgrade.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ stored or if the session serialization format has been modified via

The process for clearing the session store depends on the storage backend:

- OMERO.web session data is stored on the filesystem if the
- OMERO.web sessions are stored on the filesystem if the
:property:`omero.web.session_engine` property is set to either
`omeroweb.filesessionstore` or `django.contrib.sessions.backends.file`
or if :property:`omero.web.session_engine` is unset.
Expand All @@ -121,11 +121,11 @@ The process for clearing the session store depends on the storage backend:
used as the prefix of the file sessions and the command above needs
to be modified accordingly.

- OMERO.web session data is stored using the `Redis <https://redis.io/>`_ store
- OMERO.web sessions are stored using the `Redis <https://redis.io/>`_ store
if the :property:`omero.web.session_engine` property is set to
`django.contrib.sessions.backends.cache` and Redis is configured via the
:property:`omero.web.caches` property by setting the `BACKEND` to
'django.core.cache.backends.redis.RedisCache' and `LOCATION` to
`django.core.cache.backends.redis.RedisCache` and `LOCATION` to
the URL of the Redis instance.

Session data is stored as key/value pairs in the Redis store with the name of
sbesson marked this conversation as resolved.
Show resolved Hide resolved
Expand Down