feat: support deletions with meta protocol (#4398)

Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
Roman Gershman 2025-01-03 15:06:24 +02:00 committed by GitHub
parent 6e9409c65c
commit 4f09fe036c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 3 deletions

View file

@ -28,3 +28,5 @@ def test_basic(df_server: DflyInstance):
response = pool.meta_get(Key("key1"), flags=request_flags)
assert isinstance(response, Success)
assert pool.get("key2") is None
assert pool.delete("key1")
assert pool.delete("key1") is False