#8828: Expose Redis API to clear multiple keys using wildcard syntax

This commit is contained in:
Marek Dzikiewicz 2025-02-03 03:47:09 -05:00
parent 5c3d045aa1
commit 4c11dde9bf
No known key found for this signature in database
GPG Key ID: 517A3D99123D7DCA

View File

@ -10,9 +10,13 @@ using System;
namespace Orchard.Redis.Caching {
public interface IRedisCacheStorageProvider : ICacheStorageProvider {
void Clear(string key);
}
[OrchardFeature("Orchard.Redis.Caching")]
[OrchardSuppressDependency("Orchard.Caching.Services.DefaultCacheStorageProvider")]
public class RedisCacheStorageProvider : Component, ICacheStorageProvider {
public class RedisCacheStorageProvider : Component, IRedisCacheStorageProvider {
public const string ConnectionStringKey = "Orchard.Redis.Cache";
private readonly ShellSettings _shellSettings;
@ -61,6 +65,10 @@ namespace Orchard.Redis.Caching {
_connectionMultiplexer.KeyDeleteWithPrefix(GetLocalizedKey("*"));
}
public void Clear(string key) {
_connectionMultiplexer.KeyDeleteWithPrefix(GetLocalizedKey($"{_shellSettings.Name}:{key}"));
}
private string GetLocalizedKey(string key) {
return _shellSettings.Name + ":Cache:" + key;
}