mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
feat: support deletions with meta protocol (#4398)
Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
parent
6e9409c65c
commit
4f09fe036c
4 changed files with 9 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue