Skip to content

Commit 7562b0e

Browse files
committed
misc. edits
1 parent e564e13 commit 7562b0e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ sections:
5555
* Set the `ConnectionMultiplexer.ClientName` property to an app instance unique name for diagnostic purposes.
5656
* Use multiple `ConnectionMultiplexer` instances for custom workloads.
5757
58-
You can follow this model if you have varying load in your application. For example:
58+
You can follow this model if you have varying loads in your application. For example:
5959
6060
* You can have one multiplexer for dealing with large keys.
6161
* You can have one multiplexer for dealing with small keys.
62-
* You can set different values for connection timeouts and retry logic for each ConnectionMultiplexer that you use.
62+
* You can set different values for connection timeouts and retry logic for each `ConnectionMultiplexer` that you use.
6363
* Set the `ClientName` property on each multiplexer to help with diagnostics.
6464
6565
Following this guidance might lead to more streamlined latency per `ConnectionMultiplexer`.

articles/azure-cache-for-redis/cache-dotnet-core-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 03/25/2022
1212

1313
# Quickstart: Use Azure Cache for Redis with a .NET Core app
1414

15-
In this quickstart, you incorporate Azure Cache for Redis into a .NET Core app to have access to a secure, dedicated cache that is accessible from any application in Azure. You specifically use the [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis) client with C# code in a .NET Core console app.
15+
In this quickstart, you incorporate Azure Cache for Redis into a .NET Core app for access to a secure, dedicated cache that is accessible from any application in Azure. You specifically use the [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis) client with C# code in a .NET Core console app.
1616

1717
## Skip to the code
1818

articles/azure-cache-for-redis/cache-dotnet-how-to-use-azure-redis-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 03/25/2022
1212

1313
# Quickstart: Use Azure Cache for Redis with a .NET app
1414

15-
In this quickstart, you incorporate Azure Cache for Redis into a .NET app to access a secure, dedicated cache that is accessible from any application in Azure. You specifically use the [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis) client with C# code in a .NET console app.
15+
In this quickstart, you incorporate Azure Cache for Redis into a .NET app for access to a secure, dedicated cache that is accessible from any application in Azure. You specifically use the [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis) client with C# code in a .NET console app.
1616

1717
## Skip to the code on GitHub
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ sections:
3939
### StackExchange.Redis best practices
4040
4141
* Set `AbortConnect` to false, then let the ConnectionMultiplexer reconnect automatically.
42-
* Use a single, long-lived `ConnectionMultiplexer` instance rather than creating a new connection for each request. For an example of how to manage a connection, see the `RedisConnection` class in [Connect to the cache by using Redisconnection](cache-dotnet-how-to-use-azure-redis-cache.md#connect-to-the-cache-by-using-redisconnection).
42+
* Use a single, long-lived `ConnectionMultiplexer` instance rather than creating a new connection for each request. For an example of how to manage a connection, see the `RedisConnection` class in [Connect to the cache by using RedisConnection](cache-dotnet-how-to-use-azure-redis-cache.md#connect-to-the-cache-by-using-redisconnection).
4343
* Redis works best with smaller values, so consider chopping up bigger data into multiple keys. In [this Redis discussion](https://groups.google.com/forum/#!searchin/redis-db/size/redis-db/n7aa2A4DZDs/3OeEPHSQBAAJ), 100 kb is considered large. For more information, see [Best practices development](cache-best-practices-development.md#consider-more-keys-and-smaller-values).
4444
* Configure your [ThreadPool settings](#important-details-about-threadpool-growth) to avoid timeouts.
4545
* Use at least the default connectTimeout of 5 seconds. This interval gives StackExchange.Redis sufficient time to re-establish the connection if there's a network blip.

0 commit comments

Comments
 (0)