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

feat: made initial changes for valkey docs #4448

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions sites/platform/src/add-services/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ title: "Redis (Object cache)"
weight: 20
sidebarTitle: "Redis"
---
{{% note theme="warning" title="New versions of Redis no longer supported" %}}

Please note that newer versions after Redis 7.2 will no longer be supported by {{% vendor/name %}} due to [licensing changes](https://redis.com/blog/redis-adopts-dual-source-available-licensing/). Valkey is available on all our products as a viable alternative open source datastore.

**Please read the {{% vendor/name %}} [Valkey documentation](/add-services/valkey) for more information.**

{{% /note %}}

[Redis](https://redis.io/documentation) is a multi-model database that allows you to store data in memory for high-performance data retrieval and key-value storage.

[Redis](https://redis.io/documentation) is a multi-model database that allows you to store data in memory
for high-performance data retrieval and key-value storage.
{{% vendor/name %}} supports two different Redis configurations:

- [Persistent](#persistent-redis): to set up fast persistent storage for your application
Expand Down Expand Up @@ -540,7 +547,11 @@ const value = await client.get('x'); // returns 42

## Restrict access to database replicas only

{{< partial "banners/replicas/body.md" >}}
{{% note theme="info" title="Feature availability" %}}

This feature is only available on Dedicated Gen 3 projects. For more information, contact [Sales](https://platform.sh/contact/).

{{% /note %}}

For security reasons, you can grant your app access to replicas instead of your actual database.
To do so, when defining the relationship between your app and database,
Expand Down
Loading
Loading