Skip to content

Commit 743b9a1

Browse files
adds markdown cells on how to get Redis
1 parent d1e1184 commit 743b9a1

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

python-recipes/recommendation-systems/01_collaborative_filtering.ipynb

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,27 @@
7575
"redis-stack-server --daemonize yes"
7676
]
7777
},
78+
{
79+
"cell_type": "markdown",
80+
"metadata": {},
81+
"source": [
82+
"#### Other ways to get Redis\n",
83+
"There are many ways to get the necessary redis-stack instance running\n",
84+
"1. On cloud, deploy a [FREE instance of Redis in the cloud](https://redis.io/try-free/). Or, if you have your\n",
85+
"own version of Redis Enterprise running, that works too!\n",
86+
"2. Per OS, [see the docs](https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/)\n",
87+
"3. With docker: `docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest`"
88+
]
89+
},
90+
{
91+
"cell_type": "markdown",
92+
"metadata": {},
93+
"source": [
94+
"### Define the Redis Connection URL\n",
95+
"\n",
96+
"By default this notebook connects to the local instance of Redis Stack. **If you have your own Redis Enterprise instance** - replace REDIS_PASSWORD, REDIS_HOST and REDIS_PORT values with your own."
97+
]
98+
},
7899
{
79100
"cell_type": "code",
80101
"execution_count": 2,

python-recipes/recommendation-systems/02_two_towers.ipynb

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,27 @@
8181
"redis-stack-server --daemonize yes"
8282
]
8383
},
84+
{
85+
"cell_type": "markdown",
86+
"metadata": {},
87+
"source": [
88+
"#### Other ways to get Redis\n",
89+
"There are many ways to get the necessary redis-stack instance running\n",
90+
"1. On cloud, deploy a [FREE instance of Redis in the cloud](https://redis.io/try-free/). Or, if you have your\n",
91+
"own version of Redis Enterprise running, that works too!\n",
92+
"2. Per OS, [see the docs](https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/)\n",
93+
"3. With docker: `docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest`"
94+
]
95+
},
96+
{
97+
"cell_type": "markdown",
98+
"metadata": {},
99+
"source": [
100+
"### Define the Redis Connection URL\n",
101+
"\n",
102+
"By default this notebook connects to the local instance of Redis Stack. **If you have your own Redis Enterprise instance** - replace REDIS_PASSWORD, REDIS_HOST and REDIS_PORT values with your own."
103+
]
104+
},
84105
{
85106
"cell_type": "code",
86107
"execution_count": 1,

0 commit comments

Comments
 (0)