File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,8 @@ public interface IJsonCommands
216
216
bool MSet ( KeyPathValue [ ] KeyPathValueList ) ;
217
217
218
218
/// <summary>
219
- /// Sets or updates the JSON value at a path.
219
+ /// Merges a given JSON value into matching paths. Consequently,
220
+ /// JSON values at matching paths are updated, deleted, or expanded with new children
220
221
/// </summary>
221
222
/// <param name="key">The key.</param>
222
223
/// <param name="path">The path to set within the key.</param>
@@ -226,7 +227,8 @@ public interface IJsonCommands
226
227
bool Merge ( RedisKey key , RedisValue path , RedisValue json ) ;
227
228
228
229
/// <summary>
229
- /// Sets or updates the JSON value at a path.
230
+ /// Merges a given JSON value into matching paths. Consequently,
231
+ /// JSON values at matching paths are updated, deleted, or expanded with new children
230
232
/// </summary>
231
233
/// <param name="key">The key.</param>
232
234
/// <param name="path">The path to set within the key.</param>
Original file line number Diff line number Diff line change @@ -216,7 +216,8 @@ public interface IJsonCommandsAsync
216
216
Task < bool > MSetAsync ( KeyPathValue [ ] KeyPathValueList ) ;
217
217
218
218
/// <summary>
219
- /// Sets or updates the JSON value at a path.
219
+ /// Merges a given JSON value into matching paths. Consequently,
220
+ /// JSON values at matching paths are updated, deleted, or expanded with new children
220
221
/// </summary>
221
222
/// <param name="key">The key.</param>
222
223
/// <param name="path">The path to set within the key.</param>
@@ -226,7 +227,8 @@ public interface IJsonCommandsAsync
226
227
Task < bool > MergeAsync ( RedisKey key , RedisValue path , RedisValue json ) ;
227
228
228
229
/// <summary>
229
- /// Sets or updates the JSON value at a path.
230
+ /// Merges a given JSON value into matching paths. Consequently,
231
+ /// JSON values at matching paths are updated, deleted, or expanded with new children
230
232
/// </summary>
231
233
/// <param name="key">The key.</param>
232
234
/// <param name="path">The path to set within the key.</param>
You can’t perform that action at this time.
0 commit comments