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
216216 bool MSet ( KeyPathValue [ ] KeyPathValueList ) ;
217217
218218 /// <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
220221 /// </summary>
221222 /// <param name="key">The key.</param>
222223 /// <param name="path">The path to set within the key.</param>
@@ -226,7 +227,8 @@ public interface IJsonCommands
226227 bool Merge ( RedisKey key , RedisValue path , RedisValue json ) ;
227228
228229 /// <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
230232 /// </summary>
231233 /// <param name="key">The key.</param>
232234 /// <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
216216 Task < bool > MSetAsync ( KeyPathValue [ ] KeyPathValueList ) ;
217217
218218 /// <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
220221 /// </summary>
221222 /// <param name="key">The key.</param>
222223 /// <param name="path">The path to set within the key.</param>
@@ -226,7 +227,8 @@ public interface IJsonCommandsAsync
226227 Task < bool > MergeAsync ( RedisKey key , RedisValue path , RedisValue json ) ;
227228
228229 /// <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
230232 /// </summary>
231233 /// <param name="key">The key.</param>
232234 /// <param name="path">The path to set within the key.</param>
You can’t perform that action at this time.
0 commit comments