-
Notifications
You must be signed in to change notification settings - Fork 12
groupby_reduce #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
groupby_reduce #48
Changes from 19 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
315beca
add enums folder
AvitalFineRedis 1a3ac76
add TsReduce (enum and extensions)
AvitalFineRedis a94ad04
add logig to the client classes
AvitalFineRedis db482ed
small bug ;)
AvitalFineRedis a77c272
put enums folder inside commands
AvitalFineRedis 4261786
add TsReduce (enum and extensions)
AvitalFineRedis a0e1d23
add logig to the client classes
AvitalFineRedis fa0de8b
small bug ;)
AvitalFineRedis 2e72f8d
add params description
AvitalFineRedis 70f8452
rearranging
AvitalFineRedis 13e3466
rebase to enums_folder branch
AvitalFineRedis 46ec1f4
add tests
AvitalFineRedis 58bd536
add example
AvitalFineRedis d6bda10
add MRevRange tests
AvitalFineRedis a18c885
tuple groupby and reduce variables
AvitalFineRedis 47a73dd
tuple groupby and reduce variables
AvitalFineRedis b7158bb
Merge branch 'groupby_reduce' of https://github.com/RedisTimeSeries/N…
AvitalFineRedis de5bca4
Delete Reduce.cs
AvitalFineRedis 27c5786
Merge branch 'master' into groupby_reduce
AvitalFineRedis a0586c9
Update MRangeExample.cs
AvitalFineRedis 4af6a76
Update MRangeExampleAsync.cs
AvitalFineRedis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| namespace NRedisTimeSeries.Commands.Enums | ||
| { | ||
| /// <summary> | ||
| /// TODO: Add description | ||
| /// </summary> | ||
| public enum TsReduce | ||
| { | ||
| /// <summary> | ||
| /// A sum of all samples in the group | ||
| /// </summary> | ||
| Sum, | ||
|
|
||
| /// <summary> | ||
| /// A minimum sample of all samples in the group | ||
| /// </summary> | ||
| Min, | ||
|
|
||
| /// <summary> | ||
| /// A maximum sample of all samples in the group | ||
| /// </summary> | ||
| Max, | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| using System; | ||
| using NRedisTimeSeries.Commands.Enums; | ||
|
|
||
| namespace NRedisTimeSeries.Extensions | ||
| { | ||
| internal static class ReduceExtensions | ||
| { | ||
| public static string AsArg(this TsReduce reduce) => reduce switch | ||
| { | ||
| TsReduce.Sum => "SUM", | ||
| TsReduce.Min => "MIN", | ||
| TsReduce.Max => "MAX", | ||
| _ => throw new ArgumentOutOfRangeException(nameof(reduce), "Invalid Reduce type"), | ||
| }; | ||
|
|
||
| public static TsReduce AsReduce(string reduce) => reduce switch | ||
| { | ||
| "SUM" => TsReduce.Sum, | ||
| "MIN" => TsReduce.Min, | ||
| "MAX" => TsReduce.Max, | ||
| _ => throw new ArgumentOutOfRangeException(nameof(reduce), $"Invalid Reduce type '{reduce}'"), | ||
| }; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.