support for named VM swap file. Fixed a few important interaction issues between the background saving processes and IO threads

This commit is contained in:
antirez
2010-01-15 13:14:23 -05:00
parent 5f8e5d7c9e
commit 054e426dbd
3 changed files with 75 additions and 18 deletions

View File

@ -285,7 +285,7 @@ proc main {server port} {
array set payload {}
for {set j 0} {$j < 100} {incr j} {
set size [expr 1+[randomInt 100000]]
set buf [string repeat "abcd" $size]
set buf [string repeat "pl-$j" $size]
set payload($j) $buf
$r set bigpayload_$j $buf
}