Commit 601cea66 authored by antirez's avatar antirez
Browse files

Test: regression test for issue #1026.

parent 3816e7bd
...@@ -178,6 +178,16 @@ start_server {tags {"expire"}} { ...@@ -178,6 +178,16 @@ start_server {tags {"expire"}} {
list $size1 $size2 $size3 list $size1 $size2 $size3
} {3 3 0} } {3 3 0}
test {EXPIRE should not resurrect keys (issue #1026)} {
r debug set-active-expire 0
r set foo bar
r pexpire foo 500
after 1000
r expire foo 10
r debug set-active-expire 1
r exists foo
} {0}
test {5 keys in, 5 keys out} { test {5 keys in, 5 keys out} {
r flushdb r flushdb
r set a c r set a c
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment