You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -41,11 +41,11 @@ The following example used `pip3` for Python 3 to install `redis-py` on Windows
41
41
42
42
## Read and write to the cache
43
43
44
-
Run Python from the command line and test your cacheby using the following code. Replace `<Your Host Name>` and `<Your Access Key>` with the values from your Azure Cache for Redis instance. Your host name is of the form `<DNS name>.redis.cache.windows.net`.
44
+
Run [Python from the command line](https://docs.python.org/3/faq/windows.html#id2) to test your cache. First, initiate the python interpreter in your command line by typing `py`, and then use the following code. Replace `<Your Host Name>` and `<Your Access Key>` with the values from your Azure Cache for Redis instance. Your host name is of the form `<DNS name>.redis.cache.windows.net`.
45
45
46
46
```python
47
47
>>>import redis
48
-
>>> r = redis.StrictRedis(host='<Your Host Name>',
0 commit comments