Skip to content

Commit 177bb4c

Browse files
authored
upgrade StackExchange.Redis to v2.8.0, add and implement redis copy method into IRedisCachingProvider (#543)
1 parent 57e0bc8 commit 177bb4c

File tree

4 files changed

+56
-3
lines changed

4 files changed

+56
-3
lines changed

src/EasyCaching.CSRedis/DefaultCSRedisCachingProvider.Keys.cs

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace EasyCaching.CSRedis
1+
using System;
2+
3+
namespace EasyCaching.CSRedis
24
{
35
using EasyCaching.Core;
46
using System.Collections.Generic;
@@ -56,6 +58,15 @@ public async Task<bool> KeyPersistAsync(string cacheKey)
5658
return flag;
5759
}
5860

61+
public bool KeyCopy(string sourceKey, string destinationKey, bool isReplace = false)
62+
{
63+
throw new NotSupportedException();
64+
}
65+
66+
public Task<bool> KeyCopyAsync(string sourceKey, string destinationKey, bool isReplace = false)
67+
{
68+
throw new NotSupportedException();
69+
}
5970
public bool KeyExists(string cacheKey)
6071
{
6172
ArgumentCheck.NotNullOrWhiteSpace(cacheKey, nameof(cacheKey));

src/EasyCaching.Core/IRedisCachingProvider.cs

+24
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,36 @@ public interface IRedisCachingProvider
4747
/// <param name="cacheKey"></param>
4848
/// <returns></returns>
4949
bool KeyPersist(string cacheKey);
50+
5051
/// <summary>
5152
/// https://redis.io/commands/persist
5253
/// </summary>
5354
/// <param name="cacheKey"></param>
5455
/// <returns></returns>
5556
Task<bool> KeyPersistAsync(string cacheKey);
57+
58+
59+
/// <summary>
60+
/// Copies the value from the <paramref name="sourceKey"/> to the specified <paramref name="destinationKey"/>.
61+
/// </summary>
62+
/// <param name="sourceKey">The key of the source value to copy.</param>
63+
/// <param name="destinationKey">The destination key to copy the source to.</param>
64+
/// <param name="isReplace">Whether to overwrite an existing values at <paramref name="destinationKey"/>. If <see langword="false"/> and the key exists, the copy will not succeed.</param>
65+
/// <returns><see langword="true"/> if key was copied. <see langword="false"/> if key was not copied.</returns>
66+
/// <remarks>https://redis.io/commands/copy</remarks>
67+
bool KeyCopy(string sourceKey, string destinationKey, bool isReplace = false);
68+
69+
70+
/// <summary>
71+
/// Copies the value from the <paramref name="sourceKey"/> to the specified <paramref name="destinationKey"/>.
72+
/// </summary>
73+
/// <param name="sourceKey">The key of the source value to copy.</param>
74+
/// <param name="destinationKey">The destination key to copy the source to.</param>
75+
/// <param name="isReplace">Whether to overwrite an existing values at <paramref name="destinationKey"/>. If <see langword="false"/> and the key exists, the copy will not succeed.</param>
76+
/// <returns><see langword="true"/> if key was copied. <see langword="false"/> if key was not copied.</returns>
77+
/// <remarks>https://redis.io/commands/copy</remarks>
78+
Task<bool> KeyCopyAsync(string sourceKey, string destinationKey, bool isReplace = false);
79+
5680
/// <summary>
5781
///
5882
/// </summary>

src/EasyCaching.Redis/DefaultRedisCachingProvider.Keys.cs

+19-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public bool KeyPersist(string cacheKey)
5353
var flag = _cache.KeyPersist(cacheKey);
5454
return flag;
5555
}
56-
56+
5757
public async Task<bool> KeyPersistAsync(string cacheKey)
5858
{
5959
ArgumentCheck.NotNullOrWhiteSpace(cacheKey, nameof(cacheKey));
@@ -62,6 +62,24 @@ public async Task<bool> KeyPersistAsync(string cacheKey)
6262
return flag;
6363
}
6464

65+
public bool KeyCopy(string sourceKey, string destinationKey, bool isReplace = false)
66+
{
67+
ArgumentCheck.NotNullOrWhiteSpace(sourceKey, nameof(sourceKey));
68+
ArgumentCheck.NotNullOrWhiteSpace(destinationKey, nameof(destinationKey));
69+
70+
var flag = _cache.KeyCopy(sourceKey,destinationKey,_cache.Database,isReplace);
71+
return flag;
72+
}
73+
74+
public async Task<bool> KeyCopyAsync(string sourceKey, string destinationKey, bool isReplace = false)
75+
{
76+
ArgumentCheck.NotNullOrWhiteSpace(sourceKey, nameof(sourceKey));
77+
ArgumentCheck.NotNullOrWhiteSpace(destinationKey, nameof(destinationKey));
78+
79+
var flag = await _cache.KeyCopyAsync(sourceKey,destinationKey,_cache.Database,isReplace);
80+
return flag;
81+
}
82+
6583
public bool KeyExists(string cacheKey)
6684
{
6785
ArgumentCheck.NotNullOrWhiteSpace(cacheKey, nameof(cacheKey));

src/EasyCaching.Redis/EasyCaching.Redis.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</ItemGroup>
3434

3535
<ItemGroup>
36-
<PackageReference Include="StackExchange.Redis" Version="2.7.33" />
36+
<PackageReference Include="StackExchange.Redis" Version="2.8.0" />
3737
</ItemGroup>
3838
<ItemGroup>
3939
<ProjectReference Include="..\EasyCaching.Core\EasyCaching.Core.csproj" />

0 commit comments

Comments
 (0)