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
Copy file name to clipboardExpand all lines: articles/azure-cache-for-redis/cache-development-faq.yml
+3-15Lines changed: 3 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ sections:
71
71
- question: |
72
72
Is there a local emulator for Azure Cache for Redis?
73
73
answer: |
74
-
There's no local emulator for Azure Cache for Redis. You canrun the MSOpenTech version of redis-server.exe from the [Redis command-line tools](https://github.com/MSOpenTech/redis/releases/) on your local machine. Then, connect to it to get a similar experience to a local cache emulator, as shown in the following example:
74
+
There's no local emulator for Azure Cache for Redis. You can, however, run a copy of community Redis on your local machine and connect to it to get a similar experience to a local cache emulator, as shown in the following example:
75
75
76
76
```csharp
77
77
private static Lazy<ConnectionMultiplexer>
@@ -91,7 +91,7 @@ sections:
91
91
}
92
92
```
93
93
94
-
You can optionally configure a [redis.conf](https://redis.io/topics/config) file to more closely match the [default cache settings](cache-configure.md#default-redis-server-configuration) for your online Azure Cache for Redis if you want.
94
+
Redis runs natively on Linux, but you can also use Windows Subsystem for Linux to run Redis on a windows machine. For more information, see [Install Redis on Windows](https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/install-redis-on-windows/) You can optionally configure a [redis.conf](https://redis.io/topics/config) file to more closely match the [default cache settings](cache-configure.md#default-redis-server-configuration) for your online Azure Cache for Redis if you want.
95
95
96
96
- question: |
97
97
How can I run Redis commands?
@@ -100,19 +100,7 @@ sections:
100
100
101
101
If you have a Standard or Premium cache, you can run Redis commands using the [Redis Console](cache-configure.md#redis-console). The Redis console provides a secure way to run Redis commands in the Azure portal.
102
102
103
-
You can also use the Redis command-line tools. To use them, do the following steps:
104
-
1. Download the [Redis command-line tools](/azure/azure-cache-for-redis/cache-how-to-redis-cli-tool#install-redis-cli).
105
-
106
-
1. Connect to the cache using `redis-cli.exe`.
107
-
108
-
1. Pass in the cache endpoint using the -h switch and the key using -a as shown in the following example:
109
-
110
-
`redis-cli -h <Azure Cache for Redis name>.redis.cache.windows.net -a <key>`
111
-
112
-
> [!NOTE]
113
-
> The Redis command-line tools don't work with the TLS port, but you can use a utility such as `stunnel` to securely connect the tools to the TLS port by following the directions in the [How to use the Redis command-line tool with Azure Cache for Redis](./cache-how-to-redis-cli-tool.md) article.
114
-
>
115
-
>
103
+
You can also use the Redis command-line tools. To use them, see [Use the Redis command-line tool with Azure Cache for Redis](cache-how-to-redis-cli-tool.md)
116
104
117
105
- question: |
118
106
Why doesn't Azure Cache for Redis have an MSDN class library reference?
0 commit comments