Skip to content

Commit 90f6727

Browse files
authored
Add memory_stats() to Redis (#6137)
1 parent ca983cd commit 90f6727

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stubs/redis/redis/client.pyi

+1
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,7 @@ class Redis(Generic[_StrType]):
760760
def pubsub_numsub(self, *args: _Key) -> list[Tuple[Text, int]]: ...
761761
def pubsub_numpat(self) -> int: ...
762762
def monitor(self) -> Monitor: ...
763+
def memory_stats(self) -> dict[str, Any]: ...
763764
def cluster(self, cluster_arg: str, *args: Any) -> Any: ...
764765
def __enter__(self) -> Redis[_StrType]: ...
765766
def __exit__(self, exc_type, exc_value, traceback): ...

0 commit comments

Comments
 (0)