-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added info about Redis * Update public-site/docs/docs/topic-redis/index.md Co-authored-by: Richard Hagen <[email protected]> --------- Co-authored-by: Richard Hagen <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
title: Redis cache | ||
--- | ||
|
||
# Redis cache | ||
Redis (Remote Dictionary Server) is an open-source data structure. It is primarily used as a database, cache, and message broker. | ||
|
||
# Redis Cache Usage for Storing Session IDs | ||
|
||
One common use case for Redis is storing session IDs in web applications. When a user logs into a web application, a session is created with a unique ID. This session ID is often stored in a Redis cache for fast retrieval. It is recommended to use Redis as session store instead of cookie because of knows issues with refreshing the access token and updating the session cookie's Expires attribute. | ||
|
||
# Challenges of Running Redis as a Pod in Radix (in Kubernetes) | ||
|
||
Running Redis in a containerised environment like Kubernetes can have challenges, one of them is pod restart and data loss. | ||
Redis operates in memory, which means its data is volatile. If a Redis pod is restarted due to node failure or pod eviction, all in-memory data, including session IDs, is lost unless persistence is configured. This can force users to log in again, leading to a poor user experience. | ||
|
||
Radix does not implicitly restart pods, configured to use pre-built `image` property when no changes in the `radixconfig.yaml` where applied to such component before deployment, e.g. `image` version or environment variables are changed. However, autoscaling of a cluster or maintenance of a cluster node can restart pods. | ||
|
||
# Using Azure Cache for Redis as an Alternative | ||
|
||
To overcome the limitations of running Redis natively in Kubernetes, a more robust solution is to use https://azure.microsoft.com/en-us/products/cache. Azure Cache for Redis is a fully managed, scalable, and highly available Redis service provided by Microsoft Azure. | ||
|
||
:::tip | ||
It is highly recommend to use a persistent Session Store for production applications, like [Azure Cache for Redis](https://azure.microsoft.com/en-us/products/cache). | ||
|
||
Radix Web Console also uses Azure Cache for Redis to store sessions. | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters