We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 442758b commit 3a86a54Copy full SHA for 3a86a54
examples/lru_plugin.py
@@ -64,6 +64,7 @@ async def redis():
64
assert await cache.get("key") is None
65
assert await cache.get("key_1") == "value"
66
assert await cache.get("key_2") == "value"
67
+ print(await cache.raw("keys", "*"))
68
assert len(await cache.raw("keys", "*")) == 2
69
70
0 commit comments