Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Graf <64769885+tobias-graf-p@users.noreply.github.com>2022-10-25 01:44:30 +0300
committerGitHub <noreply@github.com>2022-10-25 01:44:30 +0300
commitf5b7f6fa60711710685165486dca16b23cb53d31 (patch)
treee5f366943393ea895dfec8f670dc137e7d827574
parent9fb1ad37af775c7f6657bf5e7eaf7142330045df (diff)
Improved the docs for the RedisCacheOptions.InstanceName property (#44711)
-rw-r--r--src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs b/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs
index 3eacfed22e..5d24bac0e8 100644
--- a/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs
+++ b/src/Caching/StackExchangeRedis/src/RedisCacheOptions.cs
@@ -31,7 +31,8 @@ public class RedisCacheOptions : IOptions<RedisCacheOptions>
public Func<Task<IConnectionMultiplexer>>? ConnectionMultiplexerFactory { get; set; }
/// <summary>
- /// The Redis instance name.
+ /// The Redis instance name. Allows partitioning a single backend cache for use with multiple apps/services.
+ /// If set, the cache keys are prefixed with this value.
/// </summary>
public string? InstanceName { get; set; }