mirror of
https://github.com/fluencelabs/redis
synced 2025-06-20 12:36:31 +00:00
SHUTDOWN now does the right thing when append only is on, that is, fsync instead to save the snapshot.
This commit is contained in:
@ -1184,7 +1184,11 @@ proc main {server port} {
|
||||
set _ $err
|
||||
} {}
|
||||
|
||||
test {ZRANGE and ZREVRANGE} {
|
||||
test {ZRANGE and ZREVRANGE basics} {
|
||||
list [$r zrange ztmp 0 -1] [$r zrevrange ztmp 0 -1]
|
||||
} {{y x z} {z x y}}
|
||||
|
||||
test {ZRANGE and ZREVRANGE stress testing} {
|
||||
list [$r zrange ztmp 0 -1] [$r zrevrange ztmp 0 -1]
|
||||
} {{y x z} {z x y}}
|
||||
|
||||
|
Reference in New Issue
Block a user