Skip to content

Commit

Permalink
fix #1745 - Add JSON type
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland authored Jun 17, 2021
1 parent d2133cb commit 6361c69
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/NRediSearch/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ public enum IndexType
/// <summary>
/// Used to indicates that the index should follow the keys of type Hash changes
/// </summary>
Hash
Hash,

/// <summary>
/// Used to indicates that the index should follow the keys of type JSON changes
/// </summary>
JSON
}

internal readonly IndexType _type = IndexType.Hash;
Expand Down

0 comments on commit 6361c69

Please sign in to comment.