LRU: Fix output fixes to new test-lru.rb.

This commit is contained in:
antirez 2016-07-11 16:26:02 +02:00
parent 6a1c00c9ea
commit b19b2dff46

View File

@ -7,7 +7,7 @@ def testit(filename)
r = Redis.new r = Redis.new
r.config("SET","maxmemory","2000000") r.config("SET","maxmemory","2000000")
r.config("SET","maxmemory-policy","allkeys-lru") r.config("SET","maxmemory-policy","allkeys-lru")
r.config("SET","maxmemory-samples",10) r.config("SET","maxmemory-samples",5)
r.config("RESETSTAT") r.config("RESETSTAT")
r.flushall r.flushall
@ -55,7 +55,7 @@ EOF
inserted = r.dbsize inserted = r.dbsize
first_set_max_id = id first_set_max_id = id
html << "#{r.dbsize} keys inserted" html << "#{r.dbsize} keys inserted.\n"
# Access keys sequentially, so that in theory the first part will be expired # Access keys sequentially, so that in theory the first part will be expired
# and the latter part will not, according to perfect LRU. # and the latter part will not, according to perfect LRU.
@ -74,7 +74,7 @@ EOF
# Note that we insert the first 100 keys of the new set into DB1 instead # Note that we insert the first 100 keys of the new set into DB1 instead
# of DB0, so that we can try how cross-DB eviction works. # of DB0, so that we can try how cross-DB eviction works.
half = inserted/2 half = inserted/2
html << "Insert enough keys to evict half the keys we inserted" html << "Insert enough keys to evict half the keys we inserted.\n"
add = 0 add = 0
otherdb_start_idx = id+1 otherdb_start_idx = id+1
@ -92,8 +92,8 @@ EOF
break if r.info['evicted_keys'].to_i >= half break if r.info['evicted_keys'].to_i >= half
end end
html << "#{add} additional keys added." html << "#{add} additional keys added.\n"
html << "#{r.dbsize} keys in DB" html << "#{r.dbsize} keys in DB.\n"
# Check if evicted keys respect LRU # Check if evicted keys respect LRU
# We consider errors from 1 to N progressively more serious as they violate # We consider errors from 1 to N progressively more serious as they violate
@ -126,7 +126,7 @@ EOF
STDERR.puts "Test finished with #{errors}% error! Generating HTML on stdout." STDERR.puts "Test finished with #{errors}% error! Generating HTML on stdout."
html << "#{errors}% error!" html << "#{errors}% error!\n"
html << "</pre>" html << "</pre>"
$runs << errors $runs << errors