From 204d356131dd0c310ef0a950c1891e0d1a2d42cf Mon Sep 17 00:00:00 2001 From: GGOemea Date: Wed, 1 Jul 2026 08:09:22 +0100 Subject: [PATCH] Add AsyncKeyValue protocol to protocols.md Added AsyncKeyValue protocol for key-value store operations including basic and bulk operations. --- docs/api/protocols.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/api/protocols.md b/docs/api/protocols.md index 50e80ca6..4de7f5f0 100644 --- a/docs/api/protocols.md +++ b/docs/api/protocols.md @@ -11,3 +11,9 @@ composability. show_source: true members: true show_root_heading: true + class AsyncKeyValue(AsyncKeyValueProtocol, Protocol): + """A protocol for key-value store operations. + + Includes basic operations: get, put, delete, ttl + Includes bulk operations: get_many, put_many, delete_many, ttl_many. + """