mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
fix(tools): cache logs player handle append as redis append (#615)
Signed-off-by: ashotland <ari@dragonflydb.io> Signed-off-by: ashotland <ari@dragonflydb.io>
This commit is contained in:
parent
5638f65226
commit
92454c6fc8
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class TwitterCacheTraceParser:
|
|||
elif operation == 'cas':
|
||||
cmd.args = ["SET", key, synthetic_value]
|
||||
elif operation == 'append':
|
||||
cmd.args = ["SET", key, synthetic_value]
|
||||
cmd.args = ["APPEND", key, synthetic_value]
|
||||
elif operation == 'prepend':
|
||||
cmd.args = ["SET", key, synthetic_value]
|
||||
elif operation == 'delete':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue