Skip to content

Commit 80da17a

Browse files
authored
Correct cache development FAQ page
1 parent 44ae5f1 commit 80da17a

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

articles/azure-cache-for-redis/cache-development-faq.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ sections:
7171
- question: |
7272
Is there a local emulator for Azure Cache for Redis?
7373
answer: |
74-
There's no local emulator for Azure Cache for Redis. You can run 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:
7575
7676
```csharp
7777
private static Lazy<ConnectionMultiplexer>
@@ -91,7 +91,7 @@ sections:
9191
}
9292
```
9393
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.
9595
9696
- question: |
9797
How can I run Redis commands?
@@ -100,19 +100,7 @@ sections:
100100
101101
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.
102102
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)
116104
117105
- question: |
118106
Why doesn't Azure Cache for Redis have an MSDN class library reference?

0 commit comments

Comments
 (0)