Skip to content

Commit 5846847

Browse files
authored
docs: open-source Redis driver (vuestorefront#6640)
1 parent 3109166 commit 5846847

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

packages/core/docs/.vuepress/integrations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const INTEGRATIONS = {
225225
link: './redis-cache.html',
226226
image: 'https://upload.wikimedia.org/wikipedia/commons/6/6b/Redis_Logo.svg',
227227
status: STATUS.STABLE,
228-
license: LICENSE.ENTERPRISE,
228+
license: LICENSE.OPEN_SOURCE,
229229
maintainedBy: [
230230
{ name: 'Vue Storefront', link: 'https://vuestorefront.io/' },
231231
],

packages/core/docs/integrations/redis-cache.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
# Redis cache <Badge text="Enterprise" type="info" />
2-
3-
::: warning Paid feature
4-
This feature is part of the Enterprise version. Please [contact our Sales team](https://www.vuestorefront.io/contact/sales) if you'd like to use it in your project.
5-
:::
1+
# Redis cache
62

73
## Introduction
84

@@ -14,7 +10,7 @@ Install required packages:
1410

1511
```sh
1612
yarn add @vue-storefront/cache
17-
yarn add @vsf-enterprise/redis-cache
13+
yarn add @vue-storefront/redis-cache
1814
```
1915

2016
Register `@vue-storefront/cache` module with following configuration:
@@ -29,7 +25,7 @@ export default {
2925
// Invalidation options
3026
},
3127
driver: [
32-
'@vsf-enterprise/redis-cache',
28+
'@vue-storefront/redis-cache',
3329
{
3430
defaultTimeout: 86400,
3531
redis: {

packages/core/docs/performance/ssr-cache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Caching SSR output in Vue Storefront requires two packages:
1414

1515
```sh
1616
yarn add @vue-storefront/cache
17-
yarn add <DRIVER-NAME> # eg. @vsf-enterprise/redis-cache
17+
yarn add <DRIVER-NAME> # eg. @vue-storefront/redis-cache
1818
```
1919

2020
### Configure Nuxt
@@ -203,5 +203,5 @@ If one of the properties is missing or the validation key is wrong, return an em
203203

204204
# What's next
205205

206-
- Check out ready to use [Redis cache integration](../integrations/redis-cache.html) from Vue Storefront Enterprise
206+
- Check out ready to use [Redis cache integration](../integrations/redis-cache.html).
207207
- Check how you can [build your own cache driver](../integrate/cache-driver.html).

0 commit comments

Comments
 (0)