1
0
Fork 0

reduced number of docs even further

This commit is contained in:
Jan Steemann 2012-09-26 16:44:33 +02:00
parent 704520c436
commit 856a1bf9f6
1 changed files with 5 additions and 2 deletions

View File

@ -49,8 +49,8 @@ function CompactionSuite () {
var maxWait;
var waited;
var cn = "example";
var n = 750;
var payload = "the quick brown fox jumped over the lazy dog. the quick dog jumped over the lazy brown fox";
var n = 500;
var payload = "the quick brown fox jumped over the lazy dog. a quick dog jumped over the lazy fox";
for (var i = 0; i < 5; ++i) {
payload += payload;
@ -62,6 +62,9 @@ function CompactionSuite () {
for (var i = 0; i < n; ++i) {
c1.save({ value : i, payload : payload });
if ((i > 0) && (i % 100 == 0)) {
internal.wait(2);
}
}
var fig = c1.figures();