You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/EasyCaching.Core/IRedisCachingProvider.cs
+24
Original file line number
Diff line number
Diff line change
@@ -47,12 +47,36 @@ public interface IRedisCachingProvider
47
47
/// <param name="cacheKey"></param>
48
48
/// <returns></returns>
49
49
boolKeyPersist(stringcacheKey);
50
+
50
51
/// <summary>
51
52
/// https://redis.io/commands/persist
52
53
/// </summary>
53
54
/// <param name="cacheKey"></param>
54
55
/// <returns></returns>
55
56
Task<bool>KeyPersistAsync(stringcacheKey);
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>
/// 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>
0 commit comments