blob: 92ba2e314626d7d737bb9eb0ba04159c1d266287 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
---
title: "Cache Integrations"
description: "A cache integration reference guide"
summary: "This section contains a cache integration reference guide for Authelia."
date: 2022-12-09T18:24:02+11:00
draft: false
images: []
weight: 320
toc: true
seo:
title: "" # custom title (optional)
description: "" # custom description (recommended)
canonical: "" # custom canonical URL (optional)
noindex: false # false (default) or true
---
We currently only support [Redis Standalone] and [Redis Sentinel] for cached information like sessions
(other than in-memory).
## Redis
The following is guidance on versions of [Redis] supported.
### Standalone
When it comes to [Redis Standalone] we support the versions supported by [Redis] themselves which can be found in the
[Redis release cycle](https://redis.io/docs/about/releases/) documentation. This is typically the latest available
version.
### Sentinel
When it comes to [Redis Sentinel] we support the versions supported by [Redis] themselves which can be found in the
[Redis release cycle](https://redis.io/docs/about/releases/) documentation. This is typically the latest available
version.
{{< callout context="note" title="Note" icon="outline/info-circle" >}}
Currently we only support [Redis Sentinel](https://redis.io/docs/management/sentinel/) version 6.x due to a breaking
change to [Redis Sentinel](https://redis.io/docs/management/sentinel/) in version 7.x. This will be resolved in the near
future.
{{< /callout >}}
[Redis]: https://redis.io/
[Redis Standalone]: https://redis.io/docs/getting-started/
[Redis Sentinel]: https://redis.io/docs/management/sentinel/
|