mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 21:41:32 +00:00
initial tests for AOF (and small changes to server.tcl to support these)
This commit is contained in:
@ -188,3 +188,11 @@ proc createComplexDataset {r ops} {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
proc formatCommand {args} {
|
||||
set cmd "*[llength $args]\r\n"
|
||||
foreach a $args {
|
||||
append cmd "$[string length $a]\r\n$a\r\n"
|
||||
}
|
||||
set _ $cmd
|
||||
}
|
||||
|
Reference in New Issue
Block a user