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: NRedisTimeSeries.Example/MRangeExample.cs
+25-3Lines changed: 25 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public static void BasicMRangeExample()
37
37
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and the COUNT parameter.
38
38
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
39
39
/// In this case, the strings are implicitly casted into TimeStamp objects.
40
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
40
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
41
41
/// </summary>
42
42
publicstaticvoidCountMRangeExample()
43
43
{
@@ -58,7 +58,7 @@ public static void CountMRangeExample()
58
58
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and MIN aggregation.
59
59
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
60
60
/// In this case, the strings are implicitly casted into TimeStamp objects.
61
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
61
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
62
62
/// </summary>
63
63
publicstaticvoidMRangeAggregationExample()
64
64
{
@@ -79,7 +79,7 @@ public static void MRangeAggregationExample()
79
79
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and WITHLABELS flag.
80
80
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
81
81
/// In this case, the strings are implicitly casted into TimeStamp objects.
82
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
82
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
83
83
/// </summary>
84
84
publicstaticvoidMRangeWithLabelsExample()
85
85
{
@@ -96,5 +96,27 @@ public static void MRangeWithLabelsExample()
96
96
}
97
97
redis.Close();
98
98
}
99
+
100
+
/// <summary>
101
+
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and a Groupby concept.
102
+
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
103
+
/// In this case, the strings are implicitly casted into TimeStamp objects.
104
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
Copy file name to clipboardExpand all lines: NRedisTimeSeries.Example/MRangeExampleAsync.cs
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ internal class MRangeAsyncExample
16
16
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis and a filter.
17
17
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
18
18
/// In this case, the strings are implicitly casted into TimeStamp objects.
19
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
19
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
20
20
/// </summary>
21
21
publicstaticasyncTaskBasicMRangeAsyncExample()
22
22
{
@@ -37,7 +37,7 @@ public static async Task BasicMRangeAsyncExample()
37
37
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and the COUNT parameter.
38
38
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
39
39
/// In this case, the strings are implicitly casted into TimeStamp objects.
40
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
40
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
41
41
/// </summary>
42
42
publicstaticasyncTaskCountMRangeAsyncExample()
43
43
{
@@ -58,7 +58,7 @@ public static async Task CountMRangeAsyncExample()
58
58
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and MIN aggregation.
59
59
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
60
60
/// In this case, the strings are implicitly casted into TimeStamp objects.
61
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
61
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
@@ -79,7 +79,7 @@ public static async Task MRangeAggregationAsyncExample()
79
79
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and WITHLABELS flag.
80
80
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
81
81
/// In this case, the strings are implicitly casted into TimeStamp objects.
82
-
/// The TimeSeriesMRange command returns an IReadOnlyList<(string key, IReadOnlyList<TimeSeriesLabel> labels, IReadOnlyList<TimeSeriesTuple> values)>collection.
82
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
@@ -96,5 +96,27 @@ public static async Task MRangeWithLabelsAsyncExample()
96
96
}
97
97
redis.Close();
98
98
}
99
+
100
+
/// <summary>
101
+
/// Example for basic usage of RedisTimeSeries RANGE command with "-" and "+" as range boundreis, a filter and a Groupby concept.
102
+
/// NRedisTimeSeris MRange is expecting two TimeStamps objects as the range boundries.
103
+
/// In this case, the strings are implicitly casted into TimeStamp objects.
104
+
/// The TimeSeriesMRange command returns an IReadOnlyList (collection) of (string key, IReadOnlyList(TimeSeriesLabel) labels, IReadOnlyList(TimeSeriesTuple) values).
0 commit comments