MCPcopy
hub / github.com/redis/redis-py / mrange

Method mrange

redis/commands/timeseries/commands.py:1041–1060  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        from_time: int | str,
        to_time: int | str,
        filters: List[str],
        count: int | None = None,
        aggregation_type: str | list[str] | None = None,
        bucket_size_msec: int | None = 0,
        with_labels: bool | None = False,
        filter_by_ts: List[int] | None = None,
        filter_by_min_value: int | None = None,
        filter_by_max_value: int | None = None,
        groupby: str | None = None,
        reduce: str | None = None,
        select_labels: List[str] | None = None,
        align: int | str | None = None,
        latest: bool | None = False,
        bucket_timestamp: str | None = None,
        empty: bool | None = False,
    )

Source from the content-addressed store, hash-verified

1039
1040 @overload
1041 def mrange(
1042 self: SyncClientProtocol,
1043 from_time: int | str,
1044 to_time: int | str,
1045 filters: List[str],
1046 count: int | None = None,
1047 aggregation_type: str | list[str] | None = None,
1048 bucket_size_msec: int | None = 0,
1049 with_labels: bool | None = False,
1050 filter_by_ts: List[int] | None = None,
1051 filter_by_min_value: int | None = None,
1052 filter_by_max_value: int | None = None,
1053 groupby: str | None = None,
1054 reduce: str | None = None,
1055 select_labels: List[str] | None = None,
1056 align: int | str | None = None,
1057 latest: bool | None = False,
1058 bucket_timestamp: str | None = None,
1059 empty: bool | None = False,
1060 ) -> TimeSeriesMRangeResponse: ...
1061
1062 @overload
1063 def mrange(

Calls 2

__mrange_paramsMethod · 0.95
execute_commandMethod · 0.45