Created
September 24, 2018 12:52
-
-
Save YuriGor/efc9a28a06802d8b6fed402f06a9701f to your computer and use it in GitHub Desktop.
Benchmark for different MongoDB(Mongoose) count all the docs methods. No difference.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// find().count() vs find().limit(1).count() vs count() vs collection.count() | |
// Purpose was to detect if collections is empty or not. (That's why limit(1) is fine too) | |
const { performance } = require('perf_hooks'); | |
const fs = require('fs'); | |
const mongoose = require('mongoose'); | |
require('dotenv').config(); | |
const billionUsers = mongoose.model('User', { | |
n: { | |
type: String, | |
required: false, | |
unique: false, | |
}, | |
}); | |
async function init() { | |
try { | |
await mongoose.connect(process.env.MONGO_URL_TEST); | |
console.log('connected'); | |
} catch (exc) { | |
console.log(exc); | |
} | |
} | |
async function finish() { | |
// await billionUsers.deleteMany(); | |
await mongoose.disconnect(); | |
} | |
async function addUsersPack(s, pack = 1000) { | |
console.log(`add${pack}Users`, s); | |
const users = []; | |
for (let u = 1; u <= pack; u++) { | |
const n = (s - 1) * pack + u; | |
const usr = { n: `#${n}` }; | |
// console.log(usr); | |
users.push(usr); | |
} | |
return billionUsers.insertMany(users).then(() => { | |
// console.log(`${s * pack} users added`); | |
}); | |
} | |
async function addUsers(count) { | |
let res = Promise.resolve(); | |
const pack = 1000; | |
for (let s = 1; s <= 1000; s++) { | |
res = res.then(() => addUsersPack(s, pack)).then(() => count(s * pack)); | |
} | |
return res; | |
} | |
async function main() { | |
await init(); | |
await billionUsers.deleteMany(); | |
console.log('cleared'); | |
await addUsers(measureCount(countDocs, 'find().count()')); | |
await billionUsers.deleteMany(); | |
console.log('cleared'); | |
await addUsers(measureCount(countOneDoc, 'find().limit(1).count()')); | |
await billionUsers.deleteMany(); | |
console.log('cleared'); | |
await addUsers(measureCount(countModel, 'count()')); | |
await billionUsers.deleteMany(); | |
console.log('cleared'); | |
await addUsers(measureCount(countCollection, 'collection.count()')); | |
await finish(); | |
console.log('Done!'); | |
fs.writeFileSync('./count.stats.json', JSON.stringify(stats, null, 2), 'utf-8'); | |
} | |
const stats = {}; | |
function measureCount(method, methodName) { | |
console.log('measureCount', methodName); | |
return async (count) => { | |
// console.log(`count ${methodName}`); | |
const start = performance.now(); | |
return method().then(() => { | |
const end = performance.now(); | |
stats[count] = stats[count] || {}; | |
stats[count][methodName] = end - start; | |
}); | |
}; | |
} | |
async function countDocs() { | |
return billionUsers.find().count(); | |
} | |
async function countOneDoc() { | |
return billionUsers | |
.find() | |
.limit(1) | |
.count(); | |
} | |
async function countModel() { | |
return billionUsers.count(); | |
} | |
async function countCollection() { | |
return billionUsers.collection.count(); | |
} | |
process.on('SIGTERM', () => { | |
console.log('bye'); | |
process.exit(0); | |
}); | |
main(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"1000": { | |
"find().count()": 65.31844899058342, | |
"find().limit(1).count()": 64.34968799352646, | |
"count()": 64.6645829975605, | |
"collection.count()": 68.18521900475025 | |
}, | |
"2000": { | |
"find().count()": 62.980341002345085, | |
"find().limit(1).count()": 62.02701300382614, | |
"count()": 73.39952099323273, | |
"collection.count()": 62.93674600124359 | |
}, | |
"3000": { | |
"find().count()": 64.99813900887966, | |
"find().limit(1).count()": 61.16040600836277, | |
"count()": 62.655010998249054, | |
"collection.count()": 62.023223012685776 | |
}, | |
"4000": { | |
"find().count()": 62.205959007143974, | |
"find().limit(1).count()": 62.07080799341202, | |
"count()": 62.55840300023556, | |
"collection.count()": 62.16117499768734 | |
}, | |
"5000": { | |
"find().count()": 62.01809599995613, | |
"find().limit(1).count()": 61.13145700097084, | |
"count()": 66.06924100220203, | |
"collection.count()": 62.402569994330406 | |
}, | |
"6000": { | |
"find().count()": 62.01884500682354, | |
"find().limit(1).count()": 61.150931000709534, | |
"count()": 62.32388800382614, | |
"collection.count()": 62.1947949975729 | |
}, | |
"7000": { | |
"find().count()": 62.53106001019478, | |
"find().limit(1).count()": 61.528927996754646, | |
"count()": 62.383700996637344, | |
"collection.count()": 67.33180499076843 | |
}, | |
"8000": { | |
"find().count()": 62.19237299263477, | |
"find().limit(1).count()": 60.88279400765896, | |
"count()": 66.02139300107956, | |
"collection.count()": 62.64664499461651 | |
}, | |
"9000": { | |
"find().count()": 66.07117800414562, | |
"find().limit(1).count()": 61.71317200362682, | |
"count()": 62.92527700960636, | |
"collection.count()": 62.35178999602795 | |
}, | |
"10000": { | |
"find().count()": 61.7352479994297, | |
"find().limit(1).count()": 60.934303000569344, | |
"count()": 63.37593899667263, | |
"collection.count()": 62.35345999896526 | |
}, | |
"11000": { | |
"find().count()": 65.06033699214458, | |
"find().limit(1).count()": 61.01407898962498, | |
"count()": 61.11618399620056, | |
"collection.count()": 60.822892010211945 | |
}, | |
"12000": { | |
"find().count()": 61.7455639988184, | |
"find().limit(1).count()": 61.6807029992342, | |
"count()": 61.31328000128269, | |
"collection.count()": 64.40095700323582 | |
}, | |
"13000": { | |
"find().count()": 63.79365299642086, | |
"find().limit(1).count()": 66.79755699634552, | |
"count()": 62.755471006035805, | |
"collection.count()": 65.13903999328613 | |
}, | |
"14000": { | |
"find().count()": 62.42145799100399, | |
"find().limit(1).count()": 61.59403799474239, | |
"count()": 61.132349997758865, | |
"collection.count()": 61.3219889998436 | |
}, | |
"15000": { | |
"find().count()": 61.60002200305462, | |
"find().limit(1).count()": 66.92338199913502, | |
"count()": 63.51993799209595, | |
"collection.count()": 64.00128899514675 | |
}, | |
"16000": { | |
"find().count()": 63.251907005906105, | |
"find().limit(1).count()": 61.163940995931625, | |
"count()": 62.67861498892307, | |
"collection.count()": 60.92992399632931 | |
}, | |
"17000": { | |
"find().count()": 62.303365990519524, | |
"find().limit(1).count()": 61.416220992803574, | |
"count()": 70.53104600310326, | |
"collection.count()": 64.86237201094627 | |
}, | |
"18000": { | |
"find().count()": 64.68680700659752, | |
"find().limit(1).count()": 64.19962701201439, | |
"count()": 61.57847300171852, | |
"collection.count()": 65.25943000614643 | |
}, | |
"19000": { | |
"find().count()": 61.842167004942894, | |
"find().limit(1).count()": 62.63546799123287, | |
"count()": 70.76059800386429, | |
"collection.count()": 63.868920996785164 | |
}, | |
"20000": { | |
"find().count()": 64.2897079885006, | |
"find().limit(1).count()": 61.039349004626274, | |
"count()": 62.14387699961662, | |
"collection.count()": 61.47930599749088 | |
}, | |
"21000": { | |
"find().count()": 63.22909200191498, | |
"find().limit(1).count()": 61.973728001117706, | |
"count()": 61.25523400306702, | |
"collection.count()": 64.83369299769402 | |
}, | |
"22000": { | |
"find().count()": 61.81157200038433, | |
"find().limit(1).count()": 64.75735600292683, | |
"count()": 62.23724299669266, | |
"collection.count()": 60.88831999897957 | |
}, | |
"23000": { | |
"find().count()": 63.34451799094677, | |
"find().limit(1).count()": 61.18124099075794, | |
"count()": 61.121994003653526, | |
"collection.count()": 61.394402995705605 | |
}, | |
"24000": { | |
"find().count()": 63.8792739957571, | |
"find().limit(1).count()": 61.078418999910355, | |
"count()": 64.7017619907856, | |
"collection.count()": 61.37392300367355 | |
}, | |
"25000": { | |
"find().count()": 61.79383000731468, | |
"find().limit(1).count()": 63.4047090113163, | |
"count()": 62.06081700325012, | |
"collection.count()": 64.7209059894085 | |
}, | |
"26000": { | |
"find().count()": 61.79444599151611, | |
"find().limit(1).count()": 61.414024993777275, | |
"count()": 61.30144900083542, | |
"collection.count()": 65.13558800518513 | |
}, | |
"27000": { | |
"find().count()": 61.29170399904251, | |
"find().limit(1).count()": 63.244955003261566, | |
"count()": 61.20074701309204, | |
"collection.count()": 62.24467898905277 | |
}, | |
"28000": { | |
"find().count()": 63.14011499285698, | |
"find().limit(1).count()": 64.0559879988432, | |
"count()": 61.73207300901413, | |
"collection.count()": 62.20099599659443 | |
}, | |
"29000": { | |
"find().count()": 64.5332310050726, | |
"find().limit(1).count()": 61.40070299804211, | |
"count()": 62.91574300825596, | |
"collection.count()": 62.03566999733448 | |
}, | |
"30000": { | |
"find().count()": 61.280365005135536, | |
"find().limit(1).count()": 63.546925991773605, | |
"count()": 64.04611200094223, | |
"collection.count()": 64.3389419913292 | |
}, | |
"31000": { | |
"find().count()": 62.51519599556923, | |
"find().limit(1).count()": 63.65063799917698, | |
"count()": 61.136923000216484, | |
"collection.count()": 61.15911900997162 | |
}, | |
"32000": { | |
"find().count()": 68.38181899487972, | |
"find().limit(1).count()": 62.33957700431347, | |
"count()": 64.18757800757885, | |
"collection.count()": 62.44418999552727 | |
}, | |
"33000": { | |
"find().count()": 61.13912299275398, | |
"find().limit(1).count()": 63.02226999402046, | |
"count()": 61.21119698882103, | |
"collection.count()": 61.15634199976921 | |
}, | |
"34000": { | |
"find().count()": 67.2328439950943, | |
"find().limit(1).count()": 63.33730500936508, | |
"count()": 63.55219800770283, | |
"collection.count()": 61.085312992334366 | |
}, | |
"35000": { | |
"find().count()": 62.508962005376816, | |
"find().limit(1).count()": 63.20198900997639, | |
"count()": 61.12141799926758, | |
"collection.count()": 61.34510099887848 | |
}, | |
"36000": { | |
"find().count()": 61.717110991477966, | |
"find().limit(1).count()": 61.76978398859501, | |
"count()": 61.24897499382496, | |
"collection.count()": 61.3218670040369 | |
}, | |
"37000": { | |
"find().count()": 63.78157000243664, | |
"find().limit(1).count()": 62.16192699968815, | |
"count()": 60.76977099478245, | |
"collection.count()": 62.141590997576714 | |
}, | |
"38000": { | |
"find().count()": 61.887599006295204, | |
"find().limit(1).count()": 61.578846007585526, | |
"count()": 62.515142008662224, | |
"collection.count()": 63.11358600854874 | |
}, | |
"39000": { | |
"find().count()": 70.06019200384617, | |
"find().limit(1).count()": 64.14320500195026, | |
"count()": 66.79437200725079, | |
"collection.count()": 61.74140299856663 | |
}, | |
"40000": { | |
"find().count()": 63.10199999809265, | |
"find().limit(1).count()": 65.99115900695324, | |
"count()": 61.6604700088501, | |
"collection.count()": 62.448917999863625 | |
}, | |
"41000": { | |
"find().count()": 64.02855299413204, | |
"find().limit(1).count()": 61.70136000216007, | |
"count()": 63.69486999511719, | |
"collection.count()": 62.381505995988846 | |
}, | |
"42000": { | |
"find().count()": 64.99144600331783, | |
"find().limit(1).count()": 61.40798498690128, | |
"count()": 64.52183000743389, | |
"collection.count()": 64.46517600119114 | |
}, | |
"43000": { | |
"find().count()": 61.800657004117966, | |
"find().limit(1).count()": 62.70085299015045, | |
"count()": 61.42315499484539, | |
"collection.count()": 62.60020199418068 | |
}, | |
"44000": { | |
"find().count()": 61.56181800365448, | |
"find().limit(1).count()": 63.505214005708694, | |
"count()": 61.06895300745964, | |
"collection.count()": 61.152810007333755 | |
}, | |
"45000": { | |
"find().count()": 61.44218099117279, | |
"find().limit(1).count()": 65.21238701045513, | |
"count()": 61.872661009430885, | |
"collection.count()": 62.579178005456924 | |
}, | |
"46000": { | |
"find().count()": 62.180134013295174, | |
"find().limit(1).count()": 61.53437000513077, | |
"count()": 61.120966002345085, | |
"collection.count()": 64.33618099987507 | |
}, | |
"47000": { | |
"find().count()": 64.16615998744965, | |
"find().limit(1).count()": 63.691369995474815, | |
"count()": 61.38024400174618, | |
"collection.count()": 62.072740003466606 | |
}, | |
"48000": { | |
"find().count()": 64.55507500469685, | |
"find().limit(1).count()": 61.10548600554466, | |
"count()": 60.92603699862957, | |
"collection.count()": 61.04580199718475 | |
}, | |
"49000": { | |
"find().count()": 61.7525779902935, | |
"find().limit(1).count()": 63.008961006999016, | |
"count()": 64.11929400265217, | |
"collection.count()": 61.48148399591446 | |
}, | |
"50000": { | |
"find().count()": 67.7807099968195, | |
"find().limit(1).count()": 65.85206399857998, | |
"count()": 67.22876900434494, | |
"collection.count()": 63.50371000170708 | |
}, | |
"51000": { | |
"find().count()": 61.90965999662876, | |
"find().limit(1).count()": 63.76898901164532, | |
"count()": 61.23087701201439, | |
"collection.count()": 61.19869799911976 | |
}, | |
"52000": { | |
"find().count()": 61.63372100889683, | |
"find().limit(1).count()": 63.65006799995899, | |
"count()": 61.204856008291245, | |
"collection.count()": 62.20923601090908 | |
}, | |
"53000": { | |
"find().count()": 66.05993400514126, | |
"find().limit(1).count()": 62.680067002773285, | |
"count()": 61.03031399846077, | |
"collection.count()": 62.43340000510216 | |
}, | |
"54000": { | |
"find().count()": 61.94702300429344, | |
"find().limit(1).count()": 63.041232988238335, | |
"count()": 63.95524001121521, | |
"collection.count()": 61.65368600189686 | |
}, | |
"55000": { | |
"find().count()": 64.27480600774288, | |
"find().limit(1).count()": 66.71929700672626, | |
"count()": 61.097116991877556, | |
"collection.count()": 61.09612099826336 | |
}, | |
"56000": { | |
"find().count()": 61.3140369951725, | |
"find().limit(1).count()": 65.84004099667072, | |
"count()": 62.47095000743866, | |
"collection.count()": 61.074002996087074 | |
}, | |
"57000": { | |
"find().count()": 64.0721980035305, | |
"find().limit(1).count()": 64.80040399730206, | |
"count()": 64.15834499895573, | |
"collection.count()": 69.823352009058 | |
}, | |
"58000": { | |
"find().count()": 63.10105700790882, | |
"find().limit(1).count()": 62.59902299940586, | |
"count()": 61.87184600532055, | |
"collection.count()": 61.19898898899555 | |
}, | |
"59000": { | |
"find().count()": 62.24003900587559, | |
"find().limit(1).count()": 65.16686899960041, | |
"count()": 63.90921600162983, | |
"collection.count()": 61.39213199913502 | |
}, | |
"60000": { | |
"find().count()": 61.599737003445625, | |
"find().limit(1).count()": 62.729240000247955, | |
"count()": 70.95132701098919, | |
"collection.count()": 61.219286009669304 | |
}, | |
"61000": { | |
"find().count()": 63.79618100821972, | |
"find().limit(1).count()": 64.76416300237179, | |
"count()": 62.846586003899574, | |
"collection.count()": 61.09306798875332 | |
}, | |
"62000": { | |
"find().count()": 61.59118600189686, | |
"find().limit(1).count()": 63.194073006510735, | |
"count()": 61.88181599974632, | |
"collection.count()": 61.27148099243641 | |
}, | |
"63000": { | |
"find().count()": 71.33360400795937, | |
"find().limit(1).count()": 62.563646987080574, | |
"count()": 61.041060000658035, | |
"collection.count()": 62.746904999017715 | |
}, | |
"64000": { | |
"find().count()": 61.80468299984932, | |
"find().limit(1).count()": 62.50663900375366, | |
"count()": 60.872314006090164, | |
"collection.count()": 61.28139400482178 | |
}, | |
"65000": { | |
"find().count()": 61.580893993377686, | |
"find().limit(1).count()": 62.03356198966503, | |
"count()": 62.628021001815796, | |
"collection.count()": 62.39850899577141 | |
}, | |
"66000": { | |
"find().count()": 64.05091200768948, | |
"find().limit(1).count()": 62.43233799934387, | |
"count()": 63.14577700197697, | |
"collection.count()": 60.917339995503426 | |
}, | |
"67000": { | |
"find().count()": 63.85909099876881, | |
"find().limit(1).count()": 63.033070996403694, | |
"count()": 65.75230298936367, | |
"collection.count()": 61.02251400053501 | |
}, | |
"68000": { | |
"find().count()": 61.87662799656391, | |
"find().limit(1).count()": 62.44659100472927, | |
"count()": 62.45887500047684, | |
"collection.count()": 61.875815987586975 | |
}, | |
"69000": { | |
"find().count()": 65.06737200915813, | |
"find().limit(1).count()": 63.822980999946594, | |
"count()": 62.616045996546745, | |
"collection.count()": 65.93771700561047 | |
}, | |
"70000": { | |
"find().count()": 70.01307399570942, | |
"find().limit(1).count()": 63.745370000600815, | |
"count()": 63.4920450001955, | |
"collection.count()": 69.92464299499989 | |
}, | |
"71000": { | |
"find().count()": 72.27607899904251, | |
"find().limit(1).count()": 67.6913519948721, | |
"count()": 62.237057000398636, | |
"collection.count()": 61.26147899031639 | |
}, | |
"72000": { | |
"find().count()": 63.3176059871912, | |
"find().limit(1).count()": 62.68747499585152, | |
"count()": 64.9445780068636, | |
"collection.count()": 61.4881010055542 | |
}, | |
"73000": { | |
"find().count()": 61.77705700695515, | |
"find().limit(1).count()": 67.17781698703766, | |
"count()": 63.26790900528431, | |
"collection.count()": 60.74175199866295 | |
}, | |
"74000": { | |
"find().count()": 61.79602499306202, | |
"find().limit(1).count()": 62.61186300218105, | |
"count()": 62.330547004938126, | |
"collection.count()": 62.39934799075127 | |
}, | |
"75000": { | |
"find().count()": 61.75227500498295, | |
"find().limit(1).count()": 109.94541800022125, | |
"count()": 64.28638999164104, | |
"collection.count()": 63.594628006219864 | |
}, | |
"76000": { | |
"find().count()": 61.69191199541092, | |
"find().limit(1).count()": 64.36857798695564, | |
"count()": 62.36259301006794, | |
"collection.count()": 61.92713299393654 | |
}, | |
"77000": { | |
"find().count()": 61.94013400375843, | |
"find().limit(1).count()": 63.77460899949074, | |
"count()": 67.12419000267982, | |
"collection.count()": 61.29668900370598 | |
}, | |
"78000": { | |
"find().count()": 62.56760600209236, | |
"find().limit(1).count()": 63.683641999959946, | |
"count()": 62.458938002586365, | |
"collection.count()": 62.95848099887371 | |
}, | |
"79000": { | |
"find().count()": 61.68239898979664, | |
"find().limit(1).count()": 63.99820299446583, | |
"count()": 62.34452401101589, | |
"collection.count()": 62.811092004179955 | |
}, | |
"80000": { | |
"find().count()": 62.43794900178909, | |
"find().limit(1).count()": 62.384385988116264, | |
"count()": 62.46265299618244, | |
"collection.count()": 64.34108300507069 | |
}, | |
"81000": { | |
"find().count()": 62.638457998633385, | |
"find().limit(1).count()": 63.27762199938297, | |
"count()": 64.6518560051918, | |
"collection.count()": 61.313391000032425 | |
}, | |
"82000": { | |
"find().count()": 67.40105000138283, | |
"find().limit(1).count()": 63.578157007694244, | |
"count()": 62.145332992076874, | |
"collection.count()": 61.35886099934578 | |
}, | |
"83000": { | |
"find().count()": 63.91548100113869, | |
"find().limit(1).count()": 64.04795698821545, | |
"count()": 64.02768298983574, | |
"collection.count()": 61.79439799487591 | |
}, | |
"84000": { | |
"find().count()": 61.5287249982357, | |
"find().limit(1).count()": 70.2575099915266, | |
"count()": 62.46831600368023, | |
"collection.count()": 64.32210299372673 | |
}, | |
"85000": { | |
"find().count()": 63.158325999975204, | |
"find().limit(1).count()": 78.10038800537586, | |
"count()": 62.64731699228287, | |
"collection.count()": 61.179980009794235 | |
}, | |
"86000": { | |
"find().count()": 61.2428729981184, | |
"find().limit(1).count()": 63.63173499703407, | |
"count()": 62.23439100384712, | |
"collection.count()": 62.193836987018585 | |
}, | |
"87000": { | |
"find().count()": 70.86962300539017, | |
"find().limit(1).count()": 62.741127997636795, | |
"count()": 64.19371299445629, | |
"collection.count()": 61.32537800073624 | |
}, | |
"88000": { | |
"find().count()": 62.0889829993248, | |
"find().limit(1).count()": 65.16563700139523, | |
"count()": 65.80985300242901, | |
"collection.count()": 61.63969101011753 | |
}, | |
"89000": { | |
"find().count()": 61.779585003852844, | |
"find().limit(1).count()": 62.48741699755192, | |
"count()": 65.59311899542809, | |
"collection.count()": 62.82861699163914 | |
}, | |
"90000": { | |
"find().count()": 61.6567499935627, | |
"find().limit(1).count()": 62.93213899433613, | |
"count()": 66.91448500752449, | |
"collection.count()": 60.829286992549896 | |
}, | |
"91000": { | |
"find().count()": 67.23527899384499, | |
"find().limit(1).count()": 65.13971300423145, | |
"count()": 65.93880499899387, | |
"collection.count()": 63.11197701096535 | |
}, | |
"92000": { | |
"find().count()": 62.726348996162415, | |
"find().limit(1).count()": 62.46950800716877, | |
"count()": 64.34505599737167, | |
"collection.count()": 61.00178599357605 | |
}, | |
"93000": { | |
"find().count()": 63.883289992809296, | |
"find().limit(1).count()": 62.8388189971447, | |
"count()": 320.0111169964075, | |
"collection.count()": 61.29885199666023 | |
}, | |
"94000": { | |
"find().count()": 62.299397990107536, | |
"find().limit(1).count()": 62.57946299016476, | |
"count()": 63.227113008499146, | |
"collection.count()": 61.3564690053463 | |
}, | |
"95000": { | |
"find().count()": 64.2552630007267, | |
"find().limit(1).count()": 64.94042399525642, | |
"count()": 63.30521701276302, | |
"collection.count()": 64.76017600297928 | |
}, | |
"96000": { | |
"find().count()": 61.51156298816204, | |
"find().limit(1).count()": 64.73099699616432, | |
"count()": 66.6545049995184, | |
"collection.count()": 61.191870003938675 | |
}, | |
"97000": { | |
"find().count()": 62.039099991321564, | |
"find().limit(1).count()": 66.34012000262737, | |
"count()": 61.19911201298237, | |
"collection.count()": 61.18536199629307 | |
}, | |
"98000": { | |
"find().count()": 61.76121300458908, | |
"find().limit(1).count()": 62.01716600358486, | |
"count()": 64.88028299808502, | |
"collection.count()": 61.67178799211979 | |
}, | |
"99000": { | |
"find().count()": 87.20029599964619, | |
"find().limit(1).count()": 64.69005200266838, | |
"count()": 64.91969700157642, | |
"collection.count()": 63.66143299639225 | |
}, | |
"100000": { | |
"find().count()": 62.40982300043106, | |
"find().limit(1).count()": 62.99822100996971, | |
"count()": 68.32671800255775, | |
"collection.count()": 63.01654998958111 | |
}, | |
"101000": { | |
"find().count()": 67.91338999569416, | |
"find().limit(1).count()": 61.95612199604511, | |
"count()": 63.54558500647545, | |
"collection.count()": 60.93714900314808 | |
}, | |
"102000": { | |
"find().count()": 63.56536100804806, | |
"find().limit(1).count()": 63.41560800373554, | |
"count()": 61.05477000772953, | |
"collection.count()": 70.64081400632858 | |
}, | |
"103000": { | |
"find().count()": 61.90403899550438, | |
"find().limit(1).count()": 63.955541998147964, | |
"count()": 64.29779499769211, | |
"collection.count()": 62.23718799650669 | |
}, | |
"104000": { | |
"find().count()": 63.927351996302605, | |
"find().limit(1).count()": 63.834274008870125, | |
"count()": 64.59369300305843, | |
"collection.count()": 62.094552010297775 | |
}, | |
"105000": { | |
"find().count()": 62.264912992715836, | |
"find().limit(1).count()": 61.339039996266365, | |
"count()": 80.67471300065517, | |
"collection.count()": 64.43319700658321 | |
}, | |
"106000": { | |
"find().count()": 61.473535999655724, | |
"find().limit(1).count()": 61.376576006412506, | |
"count()": 61.52989499270916, | |
"collection.count()": 62.481196999549866 | |
}, | |
"107000": { | |
"find().count()": 61.83126400411129, | |
"find().limit(1).count()": 63.20143200457096, | |
"count()": 61.17589299380779, | |
"collection.count()": 65.63318599760532 | |
}, | |
"108000": { | |
"find().count()": 61.614179998636246, | |
"find().limit(1).count()": 63.77632699906826, | |
"count()": 67.11034300923347, | |
"collection.count()": 65.34265099465847 | |
}, | |
"109000": { | |
"find().count()": 62.39535900950432, | |
"find().limit(1).count()": 62.10792200267315, | |
"count()": 61.80035400390625, | |
"collection.count()": 64.35742598772049 | |
}, | |
"110000": { | |
"find().count()": 68.55221799015999, | |
"find().limit(1).count()": 69.44802398979664, | |
"count()": 61.688648000359535, | |
"collection.count()": 62.31392300128937 | |
}, | |
"111000": { | |
"find().count()": 67.53315299749374, | |
"find().limit(1).count()": 61.21593199670315, | |
"count()": 61.11412599682808, | |
"collection.count()": 62.43653200566769 | |
}, | |
"112000": { | |
"find().count()": 61.69015300273895, | |
"find().limit(1).count()": 61.41789400577545, | |
"count()": 61.62169200181961, | |
"collection.count()": 65.78039200603962 | |
}, | |
"113000": { | |
"find().count()": 61.55111600458622, | |
"find().limit(1).count()": 64.45374301075935, | |
"count()": 61.59257699549198, | |
"collection.count()": 61.883798003196716 | |
}, | |
"114000": { | |
"find().count()": 61.89667099714279, | |
"find().limit(1).count()": 61.38920700550079, | |
"count()": 61.09721700847149, | |
"collection.count()": 62.40683700144291 | |
}, | |
"115000": { | |
"find().count()": 63.608387991786, | |
"find().limit(1).count()": 61.28250600397587, | |
"count()": 64.53700399398804, | |
"collection.count()": 67.98082199692726 | |
}, | |
"116000": { | |
"find().count()": 61.18503800034523, | |
"find().limit(1).count()": 63.870278999209404, | |
"count()": 62.49823600053787, | |
"collection.count()": 63.90809100866318 | |
}, | |
"117000": { | |
"find().count()": 61.34400901198387, | |
"find().limit(1).count()": 63.04001000523567, | |
"count()": 61.318993002176285, | |
"collection.count()": 67.44940799474716 | |
}, | |
"118000": { | |
"find().count()": 61.54601798951626, | |
"find().limit(1).count()": 64.07336999475956, | |
"count()": 63.124452993273735, | |
"collection.count()": 62.98550100624561 | |
}, | |
"119000": { | |
"find().count()": 75.10853299498558, | |
"find().limit(1).count()": 61.56327500939369, | |
"count()": 78.09057000279427, | |
"collection.count()": 62.43747100234032 | |
}, | |
"120000": { | |
"find().count()": 61.39444799721241, | |
"find().limit(1).count()": 61.59449300169945, | |
"count()": 62.460462003946304, | |
"collection.count()": 66.1909449994564 | |
}, | |
"121000": { | |
"find().count()": 61.40376900136471, | |
"find().limit(1).count()": 61.497633010149, | |
"count()": 62.487742990255356, | |
"collection.count()": 62.6880009919405 | |
}, | |
"122000": { | |
"find().count()": 68.69708999991417, | |
"find().limit(1).count()": 61.02758100628853, | |
"count()": 62.71035599708557, | |
"collection.count()": 62.96844299137592 | |
}, | |
"123000": { | |
"find().count()": 75.874007999897, | |
"find().limit(1).count()": 61.501746997237206, | |
"count()": 64.68029500544071, | |
"collection.count()": 62.01723100244999 | |
}, | |
"124000": { | |
"find().count()": 65.51137501001358, | |
"find().limit(1).count()": 62.035353004932404, | |
"count()": 62.23822298645973, | |
"collection.count()": 62.807950004935265 | |
}, | |
"125000": { | |
"find().count()": 61.51266299188137, | |
"find().limit(1).count()": 65.25432400405407, | |
"count()": 85.54970699548721, | |
"collection.count()": 64.18331000208855 | |
}, | |
"126000": { | |
"find().count()": 68.52343800663948, | |
"find().limit(1).count()": 61.46252700686455, | |
"count()": 64.03492699563503, | |
"collection.count()": 62.30257399380207 | |
}, | |
"127000": { | |
"find().count()": 63.78220699727535, | |
"find().limit(1).count()": 64.14386700093746, | |
"count()": 63.41626800596714, | |
"collection.count()": 62.26025299727917 | |
}, | |
"128000": { | |
"find().count()": 61.151887997984886, | |
"find().limit(1).count()": 63.08897599577904, | |
"count()": 62.2507099956274, | |
"collection.count()": 62.785798996686935 | |
}, | |
"129000": { | |
"find().count()": 61.79813599586487, | |
"find().limit(1).count()": 61.43810899555683, | |
"count()": 62.446621000766754, | |
"collection.count()": 66.73504899442196 | |
}, | |
"130000": { | |
"find().count()": 63.18790100514889, | |
"find().limit(1).count()": 61.19904099404812, | |
"count()": 64.67802900075912, | |
"collection.count()": 64.76761600375175 | |
}, | |
"131000": { | |
"find().count()": 62.75194101035595, | |
"find().limit(1).count()": 64.33327700197697, | |
"count()": 62.6324609965086, | |
"collection.count()": 65.78014400601387 | |
}, | |
"132000": { | |
"find().count()": 61.048370003700256, | |
"find().limit(1).count()": 61.35824000835419, | |
"count()": 62.40370801091194, | |
"collection.count()": 66.37935599684715 | |
}, | |
"133000": { | |
"find().count()": 62.168678000569344, | |
"find().limit(1).count()": 61.532209008932114, | |
"count()": 62.426847010850906, | |
"collection.count()": 62.56388700008392 | |
}, | |
"134000": { | |
"find().count()": 61.49225400388241, | |
"find().limit(1).count()": 61.82818999886513, | |
"count()": 64.37256500124931, | |
"collection.count()": 65.40840800106525 | |
}, | |
"135000": { | |
"find().count()": 63.96393200755119, | |
"find().limit(1).count()": 62.639487996697426, | |
"count()": 62.53155700862408, | |
"collection.count()": 62.250547006726265 | |
}, | |
"136000": { | |
"find().count()": 64.49794600903988, | |
"find().limit(1).count()": 61.22377400100231, | |
"count()": 62.65296599268913, | |
"collection.count()": 64.04191599786282 | |
}, | |
"137000": { | |
"find().count()": 61.37715299427509, | |
"find().limit(1).count()": 62.67839200794697, | |
"count()": 62.232375994324684, | |
"collection.count()": 62.27719700336456 | |
}, | |
"138000": { | |
"find().count()": 61.66000299155712, | |
"find().limit(1).count()": 62.33599200844765, | |
"count()": 62.66026599705219, | |
"collection.count()": 66.12313298881054 | |
}, | |
"139000": { | |
"find().count()": 62.49355898797512, | |
"find().limit(1).count()": 61.41788300871849, | |
"count()": 64.44739799201488, | |
"collection.count()": 63.96954299509525 | |
}, | |
"140000": { | |
"find().count()": 62.33808599412441, | |
"find().limit(1).count()": 61.937463000416756, | |
"count()": 64.34312500059605, | |
"collection.count()": 62.244356006383896 | |
}, | |
"141000": { | |
"find().count()": 62.90914899110794, | |
"find().limit(1).count()": 61.58560599386692, | |
"count()": 73.1985670030117, | |
"collection.count()": 63.54485701024532 | |
}, | |
"142000": { | |
"find().count()": 62.08704699575901, | |
"find().limit(1).count()": 62.02931699156761, | |
"count()": 69.52028499543667, | |
"collection.count()": 64.18777200579643 | |
}, | |
"143000": { | |
"find().count()": 61.32393300533295, | |
"find().limit(1).count()": 64.0938650071621, | |
"count()": 64.67279499769211, | |
"collection.count()": 65.96564200520515 | |
}, | |
"144000": { | |
"find().count()": 61.34228600561619, | |
"find().limit(1).count()": 61.66717900335789, | |
"count()": 62.69240100681782, | |
"collection.count()": 64.38043999671936 | |
}, | |
"145000": { | |
"find().count()": 68.64015799760818, | |
"find().limit(1).count()": 61.291751995682716, | |
"count()": 62.16650299727917, | |
"collection.count()": 62.37064699828625 | |
}, | |
"146000": { | |
"find().count()": 62.762015998363495, | |
"find().limit(1).count()": 62.81850999593735, | |
"count()": 62.211484998464584, | |
"collection.count()": 67.16576899588108 | |
}, | |
"147000": { | |
"find().count()": 61.70629599690437, | |
"find().limit(1).count()": 61.86297199130058, | |
"count()": 61.42525400221348, | |
"collection.count()": 64.97628900408745 | |
}, | |
"148000": { | |
"find().count()": 61.05972599983215, | |
"find().limit(1).count()": 60.9259810000658, | |
"count()": 65.34603899717331, | |
"collection.count()": 62.31392100453377 | |
}, | |
"149000": { | |
"find().count()": 61.47425900399685, | |
"find().limit(1).count()": 61.11309200525284, | |
"count()": 62.10320100188255, | |
"collection.count()": 62.96919600665569 | |
}, | |
"150000": { | |
"find().count()": 63.16067500412464, | |
"find().limit(1).count()": 61.012950003147125, | |
"count()": 62.52163600921631, | |
"collection.count()": 62.300838991999626 | |
}, | |
"151000": { | |
"find().count()": 63.794104009866714, | |
"find().limit(1).count()": 64.48381699621677, | |
"count()": 64.3330589979887, | |
"collection.count()": 62.33956100046635 | |
}, | |
"152000": { | |
"find().count()": 63.237994000315666, | |
"find().limit(1).count()": 64.28145200014114, | |
"count()": 64.39520199596882, | |
"collection.count()": 62.42986999452114 | |
}, | |
"153000": { | |
"find().count()": 61.30169199407101, | |
"find().limit(1).count()": 62.851088002324104, | |
"count()": 62.5337760001421, | |
"collection.count()": 62.28399899601936 | |
}, | |
"154000": { | |
"find().count()": 64.72168301045895, | |
"find().limit(1).count()": 64.40276300907135, | |
"count()": 66.75149500370026, | |
"collection.count()": 62.381999000906944 | |
}, | |
"155000": { | |
"find().count()": 62.007347986102104, | |
"find().limit(1).count()": 62.84405900537968, | |
"count()": 68.95914499461651, | |
"collection.count()": 65.46113899350166 | |
}, | |
"156000": { | |
"find().count()": 61.404007002711296, | |
"find().limit(1).count()": 76.11777700483799, | |
"count()": 62.339640006423, | |
"collection.count()": 62.27293600142002 | |
}, | |
"157000": { | |
"find().count()": 65.57789000868797, | |
"find().limit(1).count()": 63.425907999277115, | |
"count()": 63.5966040045023, | |
"collection.count()": 63.83970099687576 | |
}, | |
"158000": { | |
"find().count()": 61.09585900604725, | |
"find().limit(1).count()": 63.61284300684929, | |
"count()": 64.35712400078773, | |
"collection.count()": 63.30690199136734 | |
}, | |
"159000": { | |
"find().count()": 60.94134099781513, | |
"find().limit(1).count()": 63.46227899193764, | |
"count()": 64.20374199748039, | |
"collection.count()": 62.82251000404358 | |
}, | |
"160000": { | |
"find().count()": 61.272132992744446, | |
"find().limit(1).count()": 62.493000000715256, | |
"count()": 64.03086298704147, | |
"collection.count()": 62.41568200290203 | |
}, | |
"161000": { | |
"find().count()": 60.94878900051117, | |
"find().limit(1).count()": 64.50031299889088, | |
"count()": 64.41142599284649, | |
"collection.count()": 62.582845002412796 | |
}, | |
"162000": { | |
"find().count()": 61.531129002571106, | |
"find().limit(1).count()": 62.66305799782276, | |
"count()": 67.66007599234581, | |
"collection.count()": 62.165196001529694 | |
}, | |
"163000": { | |
"find().count()": 61.51514299213886, | |
"find().limit(1).count()": 69.9257289916277, | |
"count()": 62.41603900492191, | |
"collection.count()": 62.603966012597084 | |
}, | |
"164000": { | |
"find().count()": 64.69903799891472, | |
"find().limit(1).count()": 64.13008798658848, | |
"count()": 65.95030100643635, | |
"collection.count()": 63.81260700523853 | |
}, | |
"165000": { | |
"find().count()": 61.46015299856663, | |
"find().limit(1).count()": 64.89580400288105, | |
"count()": 62.164436995983124, | |
"collection.count()": 63.85332998633385 | |
}, | |
"166000": { | |
"find().count()": 61.85343900322914, | |
"find().limit(1).count()": 67.28656800091267, | |
"count()": 62.90652500092983, | |
"collection.count()": 65.99195300042629 | |
}, | |
"167000": { | |
"find().count()": 63.580114006996155, | |
"find().limit(1).count()": 62.651877999305725, | |
"count()": 62.476609006524086, | |
"collection.count()": 63.349224001169205 | |
}, | |
"168000": { | |
"find().count()": 61.61313399672508, | |
"find().limit(1).count()": 62.52070899307728, | |
"count()": 63.105520993471146, | |
"collection.count()": 62.827315986156464 | |
}, | |
"169000": { | |
"find().count()": 62.252260997891426, | |
"find().limit(1).count()": 62.20259900391102, | |
"count()": 62.4998340010643, | |
"collection.count()": 62.39019100368023 | |
}, | |
"170000": { | |
"find().count()": 61.15912199020386, | |
"find().limit(1).count()": 65.71976600587368, | |
"count()": 62.65386100113392, | |
"collection.count()": 67.14236399531364 | |
}, | |
"171000": { | |
"find().count()": 61.106110006570816, | |
"find().limit(1).count()": 68.24674499034882, | |
"count()": 62.53488299250603, | |
"collection.count()": 61.97763600945473 | |
}, | |
"172000": { | |
"find().count()": 61.410875990986824, | |
"find().limit(1).count()": 62.43309599161148, | |
"count()": 65.94588699936867, | |
"collection.count()": 62.591579005122185 | |
}, | |
"173000": { | |
"find().count()": 65.56734099984169, | |
"find().limit(1).count()": 62.23574000597, | |
"count()": 61.719552993774414, | |
"collection.count()": 64.50259101390839 | |
}, | |
"174000": { | |
"find().count()": 62.39425399899483, | |
"find().limit(1).count()": 65.00508001446724, | |
"count()": 61.375709012150764, | |
"collection.count()": 62.294201001524925 | |
}, | |
"175000": { | |
"find().count()": 64.2119559943676, | |
"find().limit(1).count()": 62.70593398809433, | |
"count()": 61.114180997014046, | |
"collection.count()": 64.66583898663521 | |
}, | |
"176000": { | |
"find().count()": 62.20405898988247, | |
"find().limit(1).count()": 62.68498799204826, | |
"count()": 61.0429740101099, | |
"collection.count()": 64.71257400512695 | |
}, | |
"177000": { | |
"find().count()": 84.18425399065018, | |
"find().limit(1).count()": 62.864694997668266, | |
"count()": 64.9444580078125, | |
"collection.count()": 64.2967109978199 | |
}, | |
"178000": { | |
"find().count()": 64.39959400892258, | |
"find().limit(1).count()": 68.13422499597073, | |
"count()": 61.49658799171448, | |
"collection.count()": 64.44498799741268 | |
}, | |
"179000": { | |
"find().count()": 61.83481600880623, | |
"find().limit(1).count()": 64.70821100473404, | |
"count()": 61.338789999485016, | |
"collection.count()": 64.20151101052761 | |
}, | |
"180000": { | |
"find().count()": 61.58795599639416, | |
"find().limit(1).count()": 62.647640988230705, | |
"count()": 64.35375100374222, | |
"collection.count()": 64.84746399521828 | |
}, | |
"181000": { | |
"find().count()": 61.79328699409962, | |
"find().limit(1).count()": 62.42408299446106, | |
"count()": 63.54398700594902, | |
"collection.count()": 62.474315002560616 | |
}, | |
"182000": { | |
"find().count()": 64.27441200613976, | |
"find().limit(1).count()": 64.32964500784874, | |
"count()": 61.29719500243664, | |
"collection.count()": 63.742148011922836 | |
}, | |
"183000": { | |
"find().count()": 68.62849900126457, | |
"find().limit(1).count()": 67.39036799967289, | |
"count()": 63.913848996162415, | |
"collection.count()": 61.90180100500584 | |
}, | |
"184000": { | |
"find().count()": 63.133020997047424, | |
"find().limit(1).count()": 65.63427899777889, | |
"count()": 63.780014991760254, | |
"collection.count()": 62.311000004410744 | |
}, | |
"185000": { | |
"find().count()": 64.21918700635433, | |
"find().limit(1).count()": 62.2462650090456, | |
"count()": 61.29854999482632, | |
"collection.count()": 62.852964997291565 | |
}, | |
"186000": { | |
"find().count()": 61.68961501121521, | |
"find().limit(1).count()": 62.27096900343895, | |
"count()": 69.61292800307274, | |
"collection.count()": 62.0215529948473 | |
}, | |
"187000": { | |
"find().count()": 66.87057700753212, | |
"find().limit(1).count()": 62.3473179936409, | |
"count()": 63.11521099507809, | |
"collection.count()": 63.93301299214363 | |
}, | |
"188000": { | |
"find().count()": 64.30352400243282, | |
"find().limit(1).count()": 68.04808999598026, | |
"count()": 64.54394300282001, | |
"collection.count()": 62.31783899664879 | |
}, | |
"189000": { | |
"find().count()": 61.49098099768162, | |
"find().limit(1).count()": 65.26437999308109, | |
"count()": 63.27328100800514, | |
"collection.count()": 62.31969200074673 | |
}, | |
"190000": { | |
"find().count()": 62.02198600769043, | |
"find().limit(1).count()": 62.934218004345894, | |
"count()": 61.34305898845196, | |
"collection.count()": 64.93176800012589 | |
}, | |
"191000": { | |
"find().count()": 61.76748000085354, | |
"find().limit(1).count()": 66.9060840010643, | |
"count()": 67.86723099648952, | |
"collection.count()": 64.72653698921204 | |
}, | |
"192000": { | |
"find().count()": 62.0007109940052, | |
"find().limit(1).count()": 63.75814899802208, | |
"count()": 61.18959799408913, | |
"collection.count()": 62.378443002700806 | |
}, | |
"193000": { | |
"find().count()": 66.90154799818993, | |
"find().limit(1).count()": 62.582245007157326, | |
"count()": 61.37966500222683, | |
"collection.count()": 62.3115099966526 | |
}, | |
"194000": { | |
"find().count()": 62.23931500315666, | |
"find().limit(1).count()": 62.51851999759674, | |
"count()": 63.4815229922533, | |
"collection.count()": 62.82809899747372 | |
}, | |
"195000": { | |
"find().count()": 62.463623002171516, | |
"find().limit(1).count()": 62.22631600499153, | |
"count()": 62.747661992907524, | |
"collection.count()": 64.2692369967699 | |
}, | |
"196000": { | |
"find().count()": 61.58494599163532, | |
"find().limit(1).count()": 64.53623899817467, | |
"count()": 61.66821399331093, | |
"collection.count()": 62.61144000291824 | |
}, | |
"197000": { | |
"find().count()": 62.84979599714279, | |
"find().limit(1).count()": 63.328078001737595, | |
"count()": 61.86194099485874, | |
"collection.count()": 64.71838299930096 | |
}, | |
"198000": { | |
"find().count()": 61.78321701288223, | |
"find().limit(1).count()": 63.27344799041748, | |
"count()": 159.55668100714684, | |
"collection.count()": 62.53695601224899 | |
}, | |
"199000": { | |
"find().count()": 65.79207299649715, | |
"find().limit(1).count()": 62.228289008140564, | |
"count()": 67.83771900832653, | |
"collection.count()": 63.53568199276924 | |
}, | |
"200000": { | |
"find().count()": 61.32194800674915, | |
"find().limit(1).count()": 62.65225400030613, | |
"count()": 65.29444800317287, | |
"collection.count()": 66.27009399235249 | |
}, | |
"201000": { | |
"find().count()": 61.656213998794556, | |
"find().limit(1).count()": 62.638976007699966, | |
"count()": 64.26613201200962, | |
"collection.count()": 66.32171499729156 | |
}, | |
"202000": { | |
"find().count()": 61.248686000704765, | |
"find().limit(1).count()": 62.81124100089073, | |
"count()": 60.875800997018814, | |
"collection.count()": 62.693402990698814 | |
}, | |
"203000": { | |
"find().count()": 61.038858994841576, | |
"find().limit(1).count()": 62.72256301343441, | |
"count()": 61.11354400217533, | |
"collection.count()": 62.43591199815273 | |
}, | |
"204000": { | |
"find().count()": 62.47808399796486, | |
"find().limit(1).count()": 61.11488799750805, | |
"count()": 61.68531399965286, | |
"collection.count()": 64.91984198987484 | |
}, | |
"205000": { | |
"find().count()": 68.08769699931145, | |
"find().limit(1).count()": 61.89221100509167, | |
"count()": 60.97658200562, | |
"collection.count()": 63.07227699458599 | |
}, | |
"206000": { | |
"find().count()": 62.108823001384735, | |
"find().limit(1).count()": 63.334112003445625, | |
"count()": 61.52986299991608, | |
"collection.count()": 62.117564007639885 | |
}, | |
"207000": { | |
"find().count()": 63.441101998090744, | |
"find().limit(1).count()": 63.13025200366974, | |
"count()": 62.57872200012207, | |
"collection.count()": 64.88161200284958 | |
}, | |
"208000": { | |
"find().count()": 61.43781900405884, | |
"find().limit(1).count()": 62.60964000225067, | |
"count()": 63.97589801251888, | |
"collection.count()": 62.29843099415302 | |
}, | |
"209000": { | |
"find().count()": 64.25403200089931, | |
"find().limit(1).count()": 92.78032799065113, | |
"count()": 61.43494799733162, | |
"collection.count()": 64.32001499831676 | |
}, | |
"210000": { | |
"find().count()": 61.21341601014137, | |
"find().limit(1).count()": 61.64446200430393, | |
"count()": 62.932530999183655, | |
"collection.count()": 65.11345100402832 | |
}, | |
"211000": { | |
"find().count()": 61.29211799800396, | |
"find().limit(1).count()": 61.07660900056362, | |
"count()": 61.54195599257946, | |
"collection.count()": 61.17951700091362 | |
}, | |
"212000": { | |
"find().count()": 62.509814992547035, | |
"find().limit(1).count()": 65.05522400140762, | |
"count()": 63.64045599102974, | |
"collection.count()": 65.43752899765968 | |
}, | |
"213000": { | |
"find().count()": 65.57060898840427, | |
"find().limit(1).count()": 61.932798996567726, | |
"count()": 63.5261549949646, | |
"collection.count()": 61.043255001306534 | |
}, | |
"214000": { | |
"find().count()": 62.411735996603966, | |
"find().limit(1).count()": 61.58124800026417, | |
"count()": 61.17041400074959, | |
"collection.count()": 64.49717000126839 | |
}, | |
"215000": { | |
"find().count()": 64.60547299683094, | |
"find().limit(1).count()": 63.628008008003235, | |
"count()": 61.11549299955368, | |
"collection.count()": 64.48779399693012 | |
}, | |
"216000": { | |
"find().count()": 62.2990729957819, | |
"find().limit(1).count()": 61.17848099768162, | |
"count()": 61.989014998078346, | |
"collection.count()": 60.829363003373146 | |
}, | |
"217000": { | |
"find().count()": 61.28540700674057, | |
"find().limit(1).count()": 62.20709699392319, | |
"count()": 61.3189699947834, | |
"collection.count()": 62.76571099460125 | |
}, | |
"218000": { | |
"find().count()": 63.16208100318909, | |
"find().limit(1).count()": 61.338360995054245, | |
"count()": 61.55198599398136, | |
"collection.count()": 61.26104700565338 | |
}, | |
"219000": { | |
"find().count()": 61.420901998877525, | |
"find().limit(1).count()": 64.63114000856876, | |
"count()": 63.81717298924923, | |
"collection.count()": 62.16490599513054 | |
}, | |
"220000": { | |
"find().count()": 62.06935299932957, | |
"find().limit(1).count()": 62.98337399959564, | |
"count()": 66.79098500311375, | |
"collection.count()": 64.01951099932194 | |
}, | |
"221000": { | |
"find().count()": 61.54626700282097, | |
"find().limit(1).count()": 62.10454198718071, | |
"count()": 61.34126700460911, | |
"collection.count()": 61.11592900753021 | |
}, | |
"222000": { | |
"find().count()": 60.96646200120449, | |
"find().limit(1).count()": 65.8100969940424, | |
"count()": 63.17737899720669, | |
"collection.count()": 63.627179995179176 | |
}, | |
"223000": { | |
"find().count()": 61.53522799909115, | |
"find().limit(1).count()": 61.041135996580124, | |
"count()": 63.61005799472332, | |
"collection.count()": 63.575030997395515 | |
}, | |
"224000": { | |
"find().count()": 61.20787800848484, | |
"find().limit(1).count()": 61.43356500566006, | |
"count()": 92.52802699804306, | |
"collection.count()": 60.908249005675316 | |
}, | |
"225000": { | |
"find().count()": 64.89924600720406, | |
"find().limit(1).count()": 63.19262199103832, | |
"count()": 61.48376400768757, | |
"collection.count()": 61.68657900393009 | |
}, | |
"226000": { | |
"find().count()": 63.92933601140976, | |
"find().limit(1).count()": 62.35624599456787, | |
"count()": 61.26712600886822, | |
"collection.count()": 61.86158499121666 | |
}, | |
"227000": { | |
"find().count()": 61.51696999371052, | |
"find().limit(1).count()": 61.343279004096985, | |
"count()": 61.95725600421429, | |
"collection.count()": 60.92953599989414 | |
}, | |
"228000": { | |
"find().count()": 61.36735899746418, | |
"find().limit(1).count()": 65.74442699551582, | |
"count()": 61.057116001844406, | |
"collection.count()": 61.35132499039173 | |
}, | |
"229000": { | |
"find().count()": 61.11312900483608, | |
"find().limit(1).count()": 62.90533199906349, | |
"count()": 61.39348900318146, | |
"collection.count()": 62.54816499352455 | |
}, | |
"230000": { | |
"find().count()": 63.58942098915577, | |
"find().limit(1).count()": 65.70424200594425, | |
"count()": 61.312040999531746, | |
"collection.count()": 61.1137630045414 | |
}, | |
"231000": { | |
"find().count()": 61.287500992417336, | |
"find().limit(1).count()": 61.09307000041008, | |
"count()": 60.99107599258423, | |
"collection.count()": 60.94473800063133 | |
}, | |
"232000": { | |
"find().count()": 64.03485299646854, | |
"find().limit(1).count()": 62.134629011154175, | |
"count()": 62.104312002658844, | |
"collection.count()": 61.25176098942757 | |
}, | |
"233000": { | |
"find().count()": 62.01530300080776, | |
"find().limit(1).count()": 62.468867003917694, | |
"count()": 61.39985500276089, | |
"collection.count()": 64.50793699920177 | |
}, | |
"234000": { | |
"find().count()": 63.0468779951334, | |
"find().limit(1).count()": 62.37990100681782, | |
"count()": 73.39405599236488, | |
"collection.count()": 63.3306510001421 | |
}, | |
"235000": { | |
"find().count()": 61.30117501318455, | |
"find().limit(1).count()": 65.29882100224495, | |
"count()": 61.28305400907993, | |
"collection.count()": 61.11678300797939 | |
}, | |
"236000": { | |
"find().count()": 61.36796800792217, | |
"find().limit(1).count()": 62.37480799853802, | |
"count()": 61.228909000754356, | |
"collection.count()": 60.76512199640274 | |
}, | |
"237000": { | |
"find().count()": 63.2824490070343, | |
"find().limit(1).count()": 64.99748700857162, | |
"count()": 61.27469900250435, | |
"collection.count()": 60.96110799908638 | |
}, | |
"238000": { | |
"find().count()": 61.48923799395561, | |
"find().limit(1).count()": 67.9070769995451, | |
"count()": 60.983918994665146, | |
"collection.count()": 61.61295101046562 | |
}, | |
"239000": { | |
"find().count()": 65.37120899558067, | |
"find().limit(1).count()": 66.99111999571323, | |
"count()": 67.33838599920273, | |
"collection.count()": 61.46440500020981 | |
}, | |
"240000": { | |
"find().count()": 64.48800501227379, | |
"find().limit(1).count()": 64.43288199603558, | |
"count()": 61.32397100329399, | |
"collection.count()": 62.643222004175186 | |
}, | |
"241000": { | |
"find().count()": 67.71623700857162, | |
"find().limit(1).count()": 62.2875059992075, | |
"count()": 61.0694600045681, | |
"collection.count()": 73.27207699418068 | |
}, | |
"242000": { | |
"find().count()": 61.46146000921726, | |
"find().limit(1).count()": 67.44241800904274, | |
"count()": 61.03345900774002, | |
"collection.count()": 61.16559599339962 | |
}, | |
"243000": { | |
"find().count()": 61.264475002884865, | |
"find().limit(1).count()": 62.77614200115204, | |
"count()": 64.68917199969292, | |
"collection.count()": 60.93784199655056 | |
}, | |
"244000": { | |
"find().count()": 63.52962599694729, | |
"find().limit(1).count()": 62.8075699955225, | |
"count()": 61.613817006349564, | |
"collection.count()": 60.77036200463772 | |
}, | |
"245000": { | |
"find().count()": 65.36541500687599, | |
"find().limit(1).count()": 79.8048730045557, | |
"count()": 61.2586570084095, | |
"collection.count()": 61.427777990698814 | |
}, | |
"246000": { | |
"find().count()": 61.400766000151634, | |
"find().limit(1).count()": 62.723797991871834, | |
"count()": 61.657401010394096, | |
"collection.count()": 68.04352900385857 | |
}, | |
"247000": { | |
"find().count()": 62.3493400067091, | |
"find().limit(1).count()": 62.82602800428867, | |
"count()": 61.35841900110245, | |
"collection.count()": 61.43172299861908 | |
}, | |
"248000": { | |
"find().count()": 61.733993992209435, | |
"find().limit(1).count()": 62.465562000870705, | |
"count()": 61.11840400099754, | |
"collection.count()": 62.08099500834942 | |
}, | |
"249000": { | |
"find().count()": 64.76978701353073, | |
"find().limit(1).count()": 62.85504299402237, | |
"count()": 61.11948400735855, | |
"collection.count()": 61.33145900070667 | |
}, | |
"250000": { | |
"find().count()": 61.11330600082874, | |
"find().limit(1).count()": 67.16099999845028, | |
"count()": 236.18569800257683, | |
"collection.count()": 64.1992359906435 | |
}, | |
"251000": { | |
"find().count()": 63.37854799628258, | |
"find().limit(1).count()": 62.14050801098347, | |
"count()": 61.28271800279617, | |
"collection.count()": 61.02804000675678 | |
}, | |
"252000": { | |
"find().count()": 60.942133009433746, | |
"find().limit(1).count()": 62.94094800949097, | |
"count()": 65.82587899267673, | |
"collection.count()": 62.20731799304485 | |
}, | |
"253000": { | |
"find().count()": 65.31865200400352, | |
"find().limit(1).count()": 62.23905999958515, | |
"count()": 60.836652994155884, | |
"collection.count()": 63.036046996712685 | |
}, | |
"254000": { | |
"find().count()": 60.99730199575424, | |
"find().limit(1).count()": 64.0555849969387, | |
"count()": 62.53614200651646, | |
"collection.count()": 61.52952799201012 | |
}, | |
"255000": { | |
"find().count()": 61.1997210085392, | |
"find().limit(1).count()": 63.72845800220966, | |
"count()": 76.29806399345398, | |
"collection.count()": 62.06157800555229 | |
}, | |
"256000": { | |
"find().count()": 62.875393986701965, | |
"find().limit(1).count()": 64.17836199700832, | |
"count()": 65.00462900102139, | |
"collection.count()": 61.078943997621536 | |
}, | |
"257000": { | |
"find().count()": 61.39214599132538, | |
"find().limit(1).count()": 65.40437299013138, | |
"count()": 62.29152999818325, | |
"collection.count()": 64.14022199809551 | |
}, | |
"258000": { | |
"find().count()": 61.242313995957375, | |
"find().limit(1).count()": 63.52086000144482, | |
"count()": 62.66381700336933, | |
"collection.count()": 61.783410996198654 | |
}, | |
"259000": { | |
"find().count()": 61.467107996344566, | |
"find().limit(1).count()": 61.215911000967026, | |
"count()": 65.409977003932, | |
"collection.count()": 65.54005299508572 | |
}, | |
"260000": { | |
"find().count()": 61.82427200675011, | |
"find().limit(1).count()": 61.53326500952244, | |
"count()": 63.83116300404072, | |
"collection.count()": 68.20961800217628 | |
}, | |
"261000": { | |
"find().count()": 61.53330600261688, | |
"find().limit(1).count()": 61.31417100131512, | |
"count()": 66.50029200315475, | |
"collection.count()": 67.14652299880981 | |
}, | |
"262000": { | |
"find().count()": 61.61625599861145, | |
"find().limit(1).count()": 61.29952099919319, | |
"count()": 62.45321799814701, | |
"collection.count()": 66.62350699305534 | |
}, | |
"263000": { | |
"find().count()": 61.971823990345, | |
"find().limit(1).count()": 64.44494700431824, | |
"count()": 62.240527004003525, | |
"collection.count()": 62.250725001096725 | |
}, | |
"264000": { | |
"find().count()": 64.27000799775124, | |
"find().limit(1).count()": 61.19513700902462, | |
"count()": 62.79644599556923, | |
"collection.count()": 63.16659399867058 | |
}, | |
"265000": { | |
"find().count()": 64.6408360004425, | |
"find().limit(1).count()": 61.346413001418114, | |
"count()": 62.33851198852062, | |
"collection.count()": 62.39691999554634 | |
}, | |
"266000": { | |
"find().count()": 61.522633999586105, | |
"find().limit(1).count()": 61.85264900326729, | |
"count()": 63.70561499893665, | |
"collection.count()": 66.0514789968729 | |
}, | |
"267000": { | |
"find().count()": 61.58090199530125, | |
"find().limit(1).count()": 66.38649301230907, | |
"count()": 64.27920199930668, | |
"collection.count()": 63.20906300842762 | |
}, | |
"268000": { | |
"find().count()": 64.25420799851418, | |
"find().limit(1).count()": 61.28269900381565, | |
"count()": 66.78822501003742, | |
"collection.count()": 62.49539901316166 | |
}, | |
"269000": { | |
"find().count()": 62.533572003245354, | |
"find().limit(1).count()": 77.49123598635197, | |
"count()": 62.82200600206852, | |
"collection.count()": 62.48286899924278 | |
}, | |
"270000": { | |
"find().count()": 61.60309199988842, | |
"find().limit(1).count()": 102.22118599712849, | |
"count()": 62.32556898891926, | |
"collection.count()": 64.82387399673462 | |
}, | |
"271000": { | |
"find().count()": 66.68755801022053, | |
"find().limit(1).count()": 62.01315699517727, | |
"count()": 62.45550601184368, | |
"collection.count()": 63.06753399968147 | |
}, | |
"272000": { | |
"find().count()": 64.90958100557327, | |
"find().limit(1).count()": 64.28208699822426, | |
"count()": 67.67782600224018, | |
"collection.count()": 62.057796999812126 | |
}, | |
"273000": { | |
"find().count()": 61.941116988658905, | |
"find().limit(1).count()": 62.20802201330662, | |
"count()": 62.342511996626854, | |
"collection.count()": 62.125900998711586 | |
}, | |
"274000": { | |
"find().count()": 62.176096990704536, | |
"find().limit(1).count()": 63.626652002334595, | |
"count()": 62.366556003689766, | |
"collection.count()": 62.2940229922533 | |
}, | |
"275000": { | |
"find().count()": 61.46899899840355, | |
"find().limit(1).count()": 65.28255100548267, | |
"count()": 65.45052000880241, | |
"collection.count()": 62.14633800089359 | |
}, | |
"276000": { | |
"find().count()": 62.10027199983597, | |
"find().limit(1).count()": 64.90809400379658, | |
"count()": 65.20283299684525, | |
"collection.count()": 63.30146498978138 | |
}, | |
"277000": { | |
"find().count()": 61.779504001140594, | |
"find().limit(1).count()": 64.04535900056362, | |
"count()": 62.22800800204277, | |
"collection.count()": 62.36045300960541 | |
}, | |
"278000": { | |
"find().count()": 63.68297499418259, | |
"find().limit(1).count()": 61.29949100315571, | |
"count()": 63.81598500907421, | |
"collection.count()": 62.25237800180912 | |
}, | |
"279000": { | |
"find().count()": 61.89302599430084, | |
"find().limit(1).count()": 61.27073100209236, | |
"count()": 66.66028200089931, | |
"collection.count()": 63.96899600327015 | |
}, | |
"280000": { | |
"find().count()": 63.982873007655144, | |
"find().limit(1).count()": 61.56698799133301, | |
"count()": 62.87930800020695, | |
"collection.count()": 65.74307399988174 | |
}, | |
"281000": { | |
"find().count()": 61.550313994288445, | |
"find().limit(1).count()": 65.05698800086975, | |
"count()": 62.36158800125122, | |
"collection.count()": 65.02197401225567 | |
}, | |
"282000": { | |
"find().count()": 62.00821599364281, | |
"find().limit(1).count()": 62.245966002345085, | |
"count()": 61.27946300804615, | |
"collection.count()": 62.080048993229866 | |
}, | |
"283000": { | |
"find().count()": 61.62864600121975, | |
"find().limit(1).count()": 61.16391299664974, | |
"count()": 62.97784300148487, | |
"collection.count()": 62.27335999906063 | |
}, | |
"284000": { | |
"find().count()": 62.96856799721718, | |
"find().limit(1).count()": 63.956817999482155, | |
"count()": 63.20642399787903, | |
"collection.count()": 63.413925006985664 | |
}, | |
"285000": { | |
"find().count()": 64.19312100112438, | |
"find().limit(1).count()": 61.29524700343609, | |
"count()": 65.30145999789238, | |
"collection.count()": 62.167573004961014 | |
}, | |
"286000": { | |
"find().count()": 61.8758240044117, | |
"find().limit(1).count()": 62.48741900920868, | |
"count()": 61.031030997633934, | |
"collection.count()": 63.330371990799904 | |
}, | |
"287000": { | |
"find().count()": 61.49890699982643, | |
"find().limit(1).count()": 60.80087700486183, | |
"count()": 64.54209099709988, | |
"collection.count()": 62.46202300488949 | |
}, | |
"288000": { | |
"find().count()": 61.04900100827217, | |
"find().limit(1).count()": 63.03507299721241, | |
"count()": 60.973554000258446, | |
"collection.count()": 63.0823509991169 | |
}, | |
"289000": { | |
"find().count()": 65.63221700489521, | |
"find().limit(1).count()": 66.92960599064827, | |
"count()": 61.25363600254059, | |
"collection.count()": 62.315426006913185 | |
}, | |
"290000": { | |
"find().count()": 63.14208398759365, | |
"find().limit(1).count()": 62.32155300676823, | |
"count()": 63.15274599194527, | |
"collection.count()": 62.30831399559975 | |
}, | |
"291000": { | |
"find().count()": 61.34487199783325, | |
"find().limit(1).count()": 64.93964000046253, | |
"count()": 61.26774299144745, | |
"collection.count()": 64.24428199231625 | |
}, | |
"292000": { | |
"find().count()": 61.429909989237785, | |
"find().limit(1).count()": 64.08590699732304, | |
"count()": 64.21624998748302, | |
"collection.count()": 63.23905199766159 | |
}, | |
"293000": { | |
"find().count()": 61.25769899785519, | |
"find().limit(1).count()": 62.47740000486374, | |
"count()": 61.68545800447464, | |
"collection.count()": 62.289866998791695 | |
}, | |
"294000": { | |
"find().count()": 65.28607599437237, | |
"find().limit(1).count()": 64.28811000287533, | |
"count()": 61.36191500723362, | |
"collection.count()": 63.06046199798584 | |
}, | |
"295000": { | |
"find().count()": 61.56303299963474, | |
"find().limit(1).count()": 62.747061997652054, | |
"count()": 64.31918999552727, | |
"collection.count()": 63.51871798932552 | |
}, | |
"296000": { | |
"find().count()": 61.23835299909115, | |
"find().limit(1).count()": 63.83906298875809, | |
"count()": 72.00710999965668, | |
"collection.count()": 63.76708801090717 | |
}, | |
"297000": { | |
"find().count()": 63.73090100288391, | |
"find().limit(1).count()": 62.50227400660515, | |
"count()": 67.40356700122356, | |
"collection.count()": 62.93511800467968 | |
}, | |
"298000": { | |
"find().count()": 79.72565299272537, | |
"find().limit(1).count()": 63.8894279897213, | |
"count()": 61.275104001164436, | |
"collection.count()": 66.43245600163937 | |
}, | |
"299000": { | |
"find().count()": 64.60856398940086, | |
"find().limit(1).count()": 62.2058229893446, | |
"count()": 61.62108299136162, | |
"collection.count()": 63.768127009272575 | |
}, | |
"300000": { | |
"find().count()": 68.76730300486088, | |
"find().limit(1).count()": 63.95211499929428, | |
"count()": 66.9822190105915, | |
"collection.count()": 64.5350999981165 | |
}, | |
"301000": { | |
"find().count()": 60.998517006635666, | |
"find().limit(1).count()": 71.98429399728775, | |
"count()": 61.31392300128937, | |
"collection.count()": 62.509285002946854 | |
}, | |
"302000": { | |
"find().count()": 69.49438099563122, | |
"find().limit(1).count()": 65.51623401045799, | |
"count()": 61.14797800779343, | |
"collection.count()": 62.78050599992275 | |
}, | |
"303000": { | |
"find().count()": 63.11623999476433, | |
"find().limit(1).count()": 62.27031700313091, | |
"count()": 61.54424299299717, | |
"collection.count()": 65.69205901026726 | |
}, | |
"304000": { | |
"find().count()": 61.262275993824005, | |
"find().limit(1).count()": 62.120031014084816, | |
"count()": 62.96213199198246, | |
"collection.count()": 63.97487500309944 | |
}, | |
"305000": { | |
"find().count()": 62.84335400164127, | |
"find().limit(1).count()": 62.309163987636566, | |
"count()": 71.76813200116158, | |
"collection.count()": 64.8992410004139 | |
}, | |
"306000": { | |
"find().count()": 61.33057101070881, | |
"find().limit(1).count()": 66.53050799667835, | |
"count()": 64.9118870049715, | |
"collection.count()": 62.14009501039982 | |
}, | |
"307000": { | |
"find().count()": 61.78607799112797, | |
"find().limit(1).count()": 62.96635200083256, | |
"count()": 64.40880699455738, | |
"collection.count()": 62.12862500548363 | |
}, | |
"308000": { | |
"find().count()": 61.813133999705315, | |
"find().limit(1).count()": 63.30666999518871, | |
"count()": 61.17448200285435, | |
"collection.count()": 64.351876989007 | |
}, | |
"309000": { | |
"find().count()": 61.321443006396294, | |
"find().limit(1).count()": 63.14572401344776, | |
"count()": 61.38926699757576, | |
"collection.count()": 62.59623700380325 | |
}, | |
"310000": { | |
"find().count()": 61.22170400619507, | |
"find().limit(1).count()": 62.251990005373955, | |
"count()": 61.210638001561165, | |
"collection.count()": 63.166316002607346 | |
}, | |
"311000": { | |
"find().count()": 65.12382599711418, | |
"find().limit(1).count()": 62.543186008930206, | |
"count()": 65.2484120130539, | |
"collection.count()": 64.99247300624847 | |
}, | |
"312000": { | |
"find().count()": 63.554638996720314, | |
"find().limit(1).count()": 63.73011399805546, | |
"count()": 65.87329798936844, | |
"collection.count()": 63.059642001986504 | |
}, | |
"313000": { | |
"find().count()": 61.362057998776436, | |
"find().limit(1).count()": 63.97854499518871, | |
"count()": 65.62155199050903, | |
"collection.count()": 61.07974100112915 | |
}, | |
"314000": { | |
"find().count()": 61.14002299308777, | |
"find().limit(1).count()": 64.82347500324249, | |
"count()": 62.694000005722046, | |
"collection.count()": 62.082157000899315 | |
}, | |
"315000": { | |
"find().count()": 61.280712991952896, | |
"find().limit(1).count()": 62.318645998835564, | |
"count()": 62.687280997633934, | |
"collection.count()": 61.57326300442219 | |
}, | |
"316000": { | |
"find().count()": 63.84399800002575, | |
"find().limit(1).count()": 61.30552799999714, | |
"count()": 62.00469298660755, | |
"collection.count()": 64.95841799676418 | |
}, | |
"317000": { | |
"find().count()": 64.88161198794842, | |
"find().limit(1).count()": 61.8805949985981, | |
"count()": 62.56413599848747, | |
"collection.count()": 65.98119999468327 | |
}, | |
"318000": { | |
"find().count()": 62.93401899933815, | |
"find().limit(1).count()": 63.102878004312515, | |
"count()": 67.82502900063992, | |
"collection.count()": 61.647975996136665 | |
}, | |
"319000": { | |
"find().count()": 64.13917000591755, | |
"find().limit(1).count()": 61.24085499346256, | |
"count()": 63.12956799566746, | |
"collection.count()": 61.20566499233246 | |
}, | |
"320000": { | |
"find().count()": 61.54697300493717, | |
"find().limit(1).count()": 63.838369995355606, | |
"count()": 62.244864001870155, | |
"collection.count()": 66.5646490007639 | |
}, | |
"321000": { | |
"find().count()": 60.94719299674034, | |
"find().limit(1).count()": 61.65394701063633, | |
"count()": 62.47596399486065, | |
"collection.count()": 63.49209898710251 | |
}, | |
"322000": { | |
"find().count()": 61.49837701022625, | |
"find().limit(1).count()": 63.94826200604439, | |
"count()": 64.79534900188446, | |
"collection.count()": 61.4468180090189 | |
}, | |
"323000": { | |
"find().count()": 62.79841800034046, | |
"find().limit(1).count()": 62.0760890096426, | |
"count()": 63.84029400348663, | |
"collection.count()": 61.418618991971016 | |
}, | |
"324000": { | |
"find().count()": 63.775428995490074, | |
"find().limit(1).count()": 61.26891899108887, | |
"count()": 65.72976399958134, | |
"collection.count()": 61.73013399541378 | |
}, | |
"325000": { | |
"find().count()": 62.73129799962044, | |
"find().limit(1).count()": 64.48342099785805, | |
"count()": 62.44174200296402, | |
"collection.count()": 62.85055901110172 | |
}, | |
"326000": { | |
"find().count()": 67.27846899628639, | |
"find().limit(1).count()": 62.38205100595951, | |
"count()": 66.97567799687386, | |
"collection.count()": 61.738582000136375 | |
}, | |
"327000": { | |
"find().count()": 66.88665799796581, | |
"find().limit(1).count()": 64.59965100884438, | |
"count()": 62.50076100230217, | |
"collection.count()": 61.411472991108894 | |
}, | |
"328000": { | |
"find().count()": 61.933219999074936, | |
"find().limit(1).count()": 61.379794001579285, | |
"count()": 72.01386499404907, | |
"collection.count()": 61.073849990963936 | |
}, | |
"329000": { | |
"find().count()": 61.3243910074234, | |
"find().limit(1).count()": 61.94047100841999, | |
"count()": 62.61635999381542, | |
"collection.count()": 60.9743499904871 | |
}, | |
"330000": { | |
"find().count()": 61.57428899407387, | |
"find().limit(1).count()": 62.40261700749397, | |
"count()": 62.478217005729675, | |
"collection.count()": 61.20854100584984 | |
}, | |
"331000": { | |
"find().count()": 62.45915900170803, | |
"find().limit(1).count()": 70.58422400057316, | |
"count()": 63.53475400805473, | |
"collection.count()": 61.24567699432373 | |
}, | |
"332000": { | |
"find().count()": 62.2940209954977, | |
"find().limit(1).count()": 61.05749100446701, | |
"count()": 65.13842299580574, | |
"collection.count()": 61.79315799474716 | |
}, | |
"333000": { | |
"find().count()": 64.8642570078373, | |
"find().limit(1).count()": 66.69532099366188, | |
"count()": 63.54896900057793, | |
"collection.count()": 62.98877499997616 | |
}, | |
"334000": { | |
"find().count()": 64.60918699204922, | |
"find().limit(1).count()": 63.466666996479034, | |
"count()": 68.09890300035477, | |
"collection.count()": 60.932532995939255 | |
}, | |
"335000": { | |
"find().count()": 63.941019997000694, | |
"find().limit(1).count()": 61.64043501019478, | |
"count()": 66.25643999874592, | |
"collection.count()": 63.87471500039101 | |
}, | |
"336000": { | |
"find().count()": 60.94880999624729, | |
"find().limit(1).count()": 61.60021699965, | |
"count()": 64.68571400642395, | |
"collection.count()": 62.51038300991058 | |
}, | |
"337000": { | |
"find().count()": 62.01622700691223, | |
"find().limit(1).count()": 61.09452301263809, | |
"count()": 62.44491098821163, | |
"collection.count()": 64.37300400435925 | |
}, | |
"338000": { | |
"find().count()": 63.64020898938179, | |
"find().limit(1).count()": 62.68538500368595, | |
"count()": 63.78420099616051, | |
"collection.count()": 62.47661601006985 | |
}, | |
"339000": { | |
"find().count()": 61.43368500471115, | |
"find().limit(1).count()": 62.63560800254345, | |
"count()": 64.6124469935894, | |
"collection.count()": 62.418175995349884 | |
}, | |
"340000": { | |
"find().count()": 61.30358700454235, | |
"find().limit(1).count()": 64.35541599988937, | |
"count()": 61.5894829928875, | |
"collection.count()": 62.50892399251461 | |
}, | |
"341000": { | |
"find().count()": 62.97573499381542, | |
"find().limit(1).count()": 63.92584100365639, | |
"count()": 61.592428997159004, | |
"collection.count()": 62.48403300344944 | |
}, | |
"342000": { | |
"find().count()": 61.93851301074028, | |
"find().limit(1).count()": 61.35518500208855, | |
"count()": 61.21154299378395, | |
"collection.count()": 62.389897003769875 | |
}, | |
"343000": { | |
"find().count()": 63.13674798607826, | |
"find().limit(1).count()": 63.20398001372814, | |
"count()": 61.00053599476814, | |
"collection.count()": 62.20940700173378 | |
}, | |
"344000": { | |
"find().count()": 61.92907799780369, | |
"find().limit(1).count()": 62.40449100732803, | |
"count()": 63.63606099784374, | |
"collection.count()": 62.691275000572205 | |
}, | |
"345000": { | |
"find().count()": 62.15749201178551, | |
"find().limit(1).count()": 63.988403990864754, | |
"count()": 62.20277699828148, | |
"collection.count()": 62.319510996341705 | |
}, | |
"346000": { | |
"find().count()": 61.04177300632, | |
"find().limit(1).count()": 64.10857899487019, | |
"count()": 72.59123800694942, | |
"collection.count()": 63.58093699812889 | |
}, | |
"347000": { | |
"find().count()": 63.73454700410366, | |
"find().limit(1).count()": 63.93982298672199, | |
"count()": 68.42375200986862, | |
"collection.count()": 68.23517100512981 | |
}, | |
"348000": { | |
"find().count()": 63.80610699951649, | |
"find().limit(1).count()": 62.75475400686264, | |
"count()": 322.11517499387264, | |
"collection.count()": 62.65946099162102 | |
}, | |
"349000": { | |
"find().count()": 61.90691700577736, | |
"find().limit(1).count()": 64.70372800529003, | |
"count()": 62.710717007517815, | |
"collection.count()": 63.12574999034405 | |
}, | |
"350000": { | |
"find().count()": 61.62290699779987, | |
"find().limit(1).count()": 65.76564200222492, | |
"count()": 61.83040899038315, | |
"collection.count()": 62.288586005568504 | |
}, | |
"351000": { | |
"find().count()": 61.36097100377083, | |
"find().limit(1).count()": 72.97767600417137, | |
"count()": 61.49806599318981, | |
"collection.count()": 62.32030500471592 | |
}, | |
"352000": { | |
"find().count()": 62.15179800987244, | |
"find().limit(1).count()": 71.63017399609089, | |
"count()": 61.700032994151115, | |
"collection.count()": 62.5860799998045 | |
}, | |
"353000": { | |
"find().count()": 62.115517988801, | |
"find().limit(1).count()": 98.7683679908514, | |
"count()": 61.02740699052811, | |
"collection.count()": 62.73336300253868 | |
}, | |
"354000": { | |
"find().count()": 61.46736700832844, | |
"find().limit(1).count()": 96.31105199456215, | |
"count()": 62.165123999118805, | |
"collection.count()": 62.22029501199722 | |
}, | |
"355000": { | |
"find().count()": 63.185838997364044, | |
"find().limit(1).count()": 61.016434997320175, | |
"count()": 63.77253399789333, | |
"collection.count()": 62.147284001111984 | |
}, | |
"356000": { | |
"find().count()": 61.52635100483894, | |
"find().limit(1).count()": 64.61902898550034, | |
"count()": 61.155690997838974, | |
"collection.count()": 62.77038599550724 | |
}, | |
"357000": { | |
"find().count()": 64.78882999718189, | |
"find().limit(1).count()": 62.11659701168537, | |
"count()": 61.381322994828224, | |
"collection.count()": 66.20813000202179 | |
}, | |
"358000": { | |
"find().count()": 64.75659300386906, | |
"find().limit(1).count()": 61.08824101090431, | |
"count()": 61.45321200788021, | |
"collection.count()": 66.09202900528908 | |
}, | |
"359000": { | |
"find().count()": 62.16323600709438, | |
"find().limit(1).count()": 75.10157398879528, | |
"count()": 63.87133499979973, | |
"collection.count()": 62.29337400197983 | |
}, | |
"360000": { | |
"find().count()": 62.4573470056057, | |
"find().limit(1).count()": 67.78151899576187, | |
"count()": 64.88117501139641, | |
"collection.count()": 61.16804999113083 | |
}, | |
"361000": { | |
"find().count()": 75.85798300802708, | |
"find().limit(1).count()": 65.51296100020409, | |
"count()": 62.26454500854015, | |
"collection.count()": 61.21849098801613 | |
}, | |
"362000": { | |
"find().count()": 61.924728989601135, | |
"find().limit(1).count()": 75.61946900188923, | |
"count()": 61.56647101044655, | |
"collection.count()": 61.17722900211811 | |
}, | |
"363000": { | |
"find().count()": 62.09027199447155, | |
"find().limit(1).count()": 83.0324999988079, | |
"count()": 61.861796990036964, | |
"collection.count()": 61.910374999046326 | |
}, | |
"364000": { | |
"find().count()": 62.88145700097084, | |
"find().limit(1).count()": 132.66314700245857, | |
"count()": 64.64170800149441, | |
"collection.count()": 61.76044400036335 | |
}, | |
"365000": { | |
"find().count()": 67.1968220025301, | |
"find().limit(1).count()": 88.2742879986763, | |
"count()": 63.407484993338585, | |
"collection.count()": 61.35069300234318 | |
}, | |
"366000": { | |
"find().count()": 61.74603399634361, | |
"find().limit(1).count()": 102.5186949968338, | |
"count()": 64.42317600548267, | |
"collection.count()": 69.93561001121998 | |
}, | |
"367000": { | |
"find().count()": 61.31775899231434, | |
"find().limit(1).count()": 102.48596300184727, | |
"count()": 60.949506998062134, | |
"collection.count()": 60.98005799949169 | |
}, | |
"368000": { | |
"find().count()": 62.14957599341869, | |
"find().limit(1).count()": 96.19001498818398, | |
"count()": 61.13041999936104, | |
"collection.count()": 64.12038700282574 | |
}, | |
"369000": { | |
"find().count()": 61.73478201031685, | |
"find().limit(1).count()": 94.08982600271702, | |
"count()": 61.15224300324917, | |
"collection.count()": 61.23036000132561 | |
}, | |
"370000": { | |
"find().count()": 61.581744000315666, | |
"find().limit(1).count()": 76.95118600130081, | |
"count()": 62.899156004190445, | |
"collection.count()": 61.40652699768543 | |
}, | |
"371000": { | |
"find().count()": 62.45527200400829, | |
"find().limit(1).count()": 61.132177010178566, | |
"count()": 61.03420999646187, | |
"collection.count()": 62.524586990475655 | |
}, | |
"372000": { | |
"find().count()": 63.704006001353264, | |
"find().limit(1).count()": 62.316105008125305, | |
"count()": 61.03226999938488, | |
"collection.count()": 61.05272899568081 | |
}, | |
"373000": { | |
"find().count()": 63.38274900615215, | |
"find().limit(1).count()": 61.25575099885464, | |
"count()": 61.41159799695015, | |
"collection.count()": 61.73163598775864 | |
}, | |
"374000": { | |
"find().count()": 72.22642900049686, | |
"find().limit(1).count()": 61.71715000271797, | |
"count()": 61.381148993968964, | |
"collection.count()": 63.361701995134354 | |
}, | |
"375000": { | |
"find().count()": 63.216158002614975, | |
"find().limit(1).count()": 62.147027000784874, | |
"count()": 66.40026199817657, | |
"collection.count()": 62.228895992040634 | |
}, | |
"376000": { | |
"find().count()": 63.46399499475956, | |
"find().limit(1).count()": 62.27632699906826, | |
"count()": 61.11514200270176, | |
"collection.count()": 63.304631009697914 | |
}, | |
"377000": { | |
"find().count()": 61.454699993133545, | |
"find().limit(1).count()": 61.19378499686718, | |
"count()": 67.89342500269413, | |
"collection.count()": 61.55670000612736 | |
}, | |
"378000": { | |
"find().count()": 63.44956700503826, | |
"find().limit(1).count()": 61.10836400091648, | |
"count()": 63.97232799232006, | |
"collection.count()": 61.57359999418259 | |
}, | |
"379000": { | |
"find().count()": 61.48642200231552, | |
"find().limit(1).count()": 63.85391700267792, | |
"count()": 66.33986300230026, | |
"collection.count()": 61.306936994194984 | |
}, | |
"380000": { | |
"find().count()": 61.119442000985146, | |
"find().limit(1).count()": 63.423528000712395, | |
"count()": 61.1502770036459, | |
"collection.count()": 62.12735000252724 | |
}, | |
"381000": { | |
"find().count()": 61.45917399227619, | |
"find().limit(1).count()": 61.42376799881458, | |
"count()": 62.51228900253773, | |
"collection.count()": 61.18205299973488 | |
}, | |
"382000": { | |
"find().count()": 61.93819101154804, | |
"find().limit(1).count()": 62.26903900504112, | |
"count()": 62.50957000255585, | |
"collection.count()": 61.037070006132126 | |
}, | |
"383000": { | |
"find().count()": 61.51233199238777, | |
"find().limit(1).count()": 61.24567100405693, | |
"count()": 60.90949800610542, | |
"collection.count()": 63.93759699165821 | |
}, | |
"384000": { | |
"find().count()": 64.23444299399853, | |
"find().limit(1).count()": 62.271765008568764, | |
"count()": 61.32194098830223, | |
"collection.count()": 60.97251600027084 | |
}, | |
"385000": { | |
"find().count()": 325.6474140137434, | |
"find().limit(1).count()": 65.16448400914669, | |
"count()": 61.249699994921684, | |
"collection.count()": 61.316359996795654 | |
}, | |
"386000": { | |
"find().count()": 61.741296008229256, | |
"find().limit(1).count()": 61.838029995560646, | |
"count()": 67.21110700070858, | |
"collection.count()": 61.280454993247986 | |
}, | |
"387000": { | |
"find().count()": 61.86029601097107, | |
"find().limit(1).count()": 61.358996987342834, | |
"count()": 61.23728600144386, | |
"collection.count()": 62.6182059943676 | |
}, | |
"388000": { | |
"find().count()": 64.94556500017643, | |
"find().limit(1).count()": 65.5312930047512, | |
"count()": 61.20479300618172, | |
"collection.count()": 60.69489799439907 | |
}, | |
"389000": { | |
"find().count()": 61.5714880079031, | |
"find().limit(1).count()": 62.809490010142326, | |
"count()": 61.19081400334835, | |
"collection.count()": 61.218087002635 | |
}, | |
"390000": { | |
"find().count()": 61.42706300318241, | |
"find().limit(1).count()": 62.4390310049057, | |
"count()": 62.67993099987507, | |
"collection.count()": 62.77504399418831 | |
}, | |
"391000": { | |
"find().count()": 61.16906599700451, | |
"find().limit(1).count()": 64.26818199455738, | |
"count()": 64.90920799970627, | |
"collection.count()": 60.87009999155998 | |
}, | |
"392000": { | |
"find().count()": 61.70347000658512, | |
"find().limit(1).count()": 69.59629699587822, | |
"count()": 60.94061800837517, | |
"collection.count()": 60.971169993281364 | |
}, | |
"393000": { | |
"find().count()": 61.560929998755455, | |
"find().limit(1).count()": 62.341388002038, | |
"count()": 66.2131599932909, | |
"collection.count()": 61.21571800112724 | |
}, | |
"394000": { | |
"find().count()": 61.977370992302895, | |
"find().limit(1).count()": 62.63935700058937, | |
"count()": 61.05259199440479, | |
"collection.count()": 62.66931399703026 | |
}, | |
"395000": { | |
"find().count()": 63.62345299124718, | |
"find().limit(1).count()": 63.6791699975729, | |
"count()": 63.30458600819111, | |
"collection.count()": 64.3035579919815 | |
}, | |
"396000": { | |
"find().count()": 61.46085399389267, | |
"find().limit(1).count()": 61.5674260109663, | |
"count()": 64.60644200444221, | |
"collection.count()": 80.79785199463367 | |
}, | |
"397000": { | |
"find().count()": 61.591843008995056, | |
"find().limit(1).count()": 60.94784601032734, | |
"count()": 64.07251299917698, | |
"collection.count()": 61.036903008818626 | |
}, | |
"398000": { | |
"find().count()": 65.87704899907112, | |
"find().limit(1).count()": 61.83559000492096, | |
"count()": 61.380125001072884, | |
"collection.count()": 68.18162100017071 | |
}, | |
"399000": { | |
"find().count()": 61.71067300438881, | |
"find().limit(1).count()": 65.05643099546432, | |
"count()": 64.03281199932098, | |
"collection.count()": 62.935340002179146 | |
}, | |
"400000": { | |
"find().count()": 61.57671199738979, | |
"find().limit(1).count()": 61.51746401190758, | |
"count()": 63.247844994068146, | |
"collection.count()": 64.33163200318813 | |
}, | |
"401000": { | |
"find().count()": 64.24379700422287, | |
"find().limit(1).count()": 61.248007997870445, | |
"count()": 63.58176900446415, | |
"collection.count()": 61.74427801370621 | |
}, | |
"402000": { | |
"find().count()": 64.68640100955963, | |
"find().limit(1).count()": 61.388806000351906, | |
"count()": 62.156203001737595, | |
"collection.count()": 61.26389999687672 | |
}, | |
"403000": { | |
"find().count()": 62.90054699778557, | |
"find().limit(1).count()": 61.065522000193596, | |
"count()": 62.3360760062933, | |
"collection.count()": 61.21040800213814 | |
}, | |
"404000": { | |
"find().count()": 61.40386600792408, | |
"find().limit(1).count()": 65.28022199869156, | |
"count()": 63.19758699834347, | |
"collection.count()": 61.21170599758625 | |
}, | |
"405000": { | |
"find().count()": 65.5580580085516, | |
"find().limit(1).count()": 63.667587995529175, | |
"count()": 61.02078899741173, | |
"collection.count()": 61.38571299612522 | |
}, | |
"406000": { | |
"find().count()": 63.04388798773289, | |
"find().limit(1).count()": 68.93984900414944, | |
"count()": 61.514749988913536, | |
"collection.count()": 61.38909800350666 | |
}, | |
"407000": { | |
"find().count()": 62.806345999240875, | |
"find().limit(1).count()": 61.43297900259495, | |
"count()": 62.57038301229477, | |
"collection.count()": 61.89939600229263 | |
}, | |
"408000": { | |
"find().count()": 64.99271799623966, | |
"find().limit(1).count()": 63.13018600642681, | |
"count()": 63.387226998806, | |
"collection.count()": 61.249946013092995 | |
}, | |
"409000": { | |
"find().count()": 62.11404000222683, | |
"find().limit(1).count()": 61.48285600543022, | |
"count()": 61.03976500034332, | |
"collection.count()": 61.07412999868393 | |
}, | |
"410000": { | |
"find().count()": 61.51895999908447, | |
"find().limit(1).count()": 61.06980800628662, | |
"count()": 61.89344300329685, | |
"collection.count()": 61.370982989668846 | |
}, | |
"411000": { | |
"find().count()": 63.61080099642277, | |
"find().limit(1).count()": 63.604996010661125, | |
"count()": 61.227971002459526, | |
"collection.count()": 61.907748997211456 | |
}, | |
"412000": { | |
"find().count()": 61.99590499699116, | |
"find().limit(1).count()": 61.26086699962616, | |
"count()": 69.68674500286579, | |
"collection.count()": 61.48978400230408 | |
}, | |
"413000": { | |
"find().count()": 66.28104700148106, | |
"find().limit(1).count()": 64.7591560035944, | |
"count()": 61.303534001111984, | |
"collection.count()": 62.551997005939484 | |
}, | |
"414000": { | |
"find().count()": 72.27717499434948, | |
"find().limit(1).count()": 61.84749700129032, | |
"count()": 61.435258999466896, | |
"collection.count()": 61.06926201283932 | |
}, | |
"415000": { | |
"find().count()": 64.55102699995041, | |
"find().limit(1).count()": 61.86079499125481, | |
"count()": 60.98974999785423, | |
"collection.count()": 66.51842600107193 | |
}, | |
"416000": { | |
"find().count()": 64.81921000778675, | |
"find().limit(1).count()": 69.60211099684238, | |
"count()": 63.19998599588871, | |
"collection.count()": 62.44489400088787 | |
}, | |
"417000": { | |
"find().count()": 63.8085980117321, | |
"find().limit(1).count()": 63.37041300535202, | |
"count()": 61.409775987267494, | |
"collection.count()": 63.785114005208015 | |
}, | |
"418000": { | |
"find().count()": 61.45717500150204, | |
"find().limit(1).count()": 62.81946198642254, | |
"count()": 67.43881000578403, | |
"collection.count()": 63.93365199863911 | |
}, | |
"419000": { | |
"find().count()": 61.51033599674702, | |
"find().limit(1).count()": 63.03848800063133, | |
"count()": 62.62322999536991, | |
"collection.count()": 63.00441700220108 | |
}, | |
"420000": { | |
"find().count()": 61.274501994252205, | |
"find().limit(1).count()": 61.09518198668957, | |
"count()": 64.41390800476074, | |
"collection.count()": 63.39937400817871 | |
}, | |
"421000": { | |
"find().count()": 61.87490500509739, | |
"find().limit(1).count()": 64.40693899989128, | |
"count()": 66.56595100462437, | |
"collection.count()": 64.05344299972057 | |
}, | |
"422000": { | |
"find().count()": 61.46731400489807, | |
"find().limit(1).count()": 61.37702299654484, | |
"count()": 60.967601001262665, | |
"collection.count()": 62.68263199925423 | |
}, | |
"423000": { | |
"find().count()": 61.96759198606014, | |
"find().limit(1).count()": 65.08646200597286, | |
"count()": 62.40726700425148, | |
"collection.count()": 63.21645900607109 | |
}, | |
"424000": { | |
"find().count()": 61.2170440107584, | |
"find().limit(1).count()": 61.748300999403, | |
"count()": 66.47896300256252, | |
"collection.count()": 62.38137699663639 | |
}, | |
"425000": { | |
"find().count()": 62.69794799387455, | |
"find().limit(1).count()": 62.12633500993252, | |
"count()": 63.1212719976902, | |
"collection.count()": 62.39768899977207 | |
}, | |
"426000": { | |
"find().count()": 63.847026005387306, | |
"find().limit(1).count()": 61.31404799222946, | |
"count()": 62.36830899119377, | |
"collection.count()": 62.27845101058483 | |
}, | |
"427000": { | |
"find().count()": 65.42098098993301, | |
"find().limit(1).count()": 61.20973500609398, | |
"count()": 66.3641420006752, | |
"collection.count()": 63.922004997730255 | |
}, | |
"428000": { | |
"find().count()": 63.49770601093769, | |
"find().limit(1).count()": 62.32079499959946, | |
"count()": 62.423456996679306, | |
"collection.count()": 62.83057899773121 | |
}, | |
"429000": { | |
"find().count()": 67.61219100654125, | |
"find().limit(1).count()": 65.27305999398232, | |
"count()": 64.66687400639057, | |
"collection.count()": 64.20082800090313 | |
}, | |
"430000": { | |
"find().count()": 62.77044400572777, | |
"find().limit(1).count()": 61.376137003302574, | |
"count()": 62.13773800432682, | |
"collection.count()": 62.11659599840641 | |
}, | |
"431000": { | |
"find().count()": 63.0202260017395, | |
"find().limit(1).count()": 62.55338700115681, | |
"count()": 66.32358101010323, | |
"collection.count()": 62.20025800168514 | |
}, | |
"432000": { | |
"find().count()": 62.83713500201702, | |
"find().limit(1).count()": 61.592265009880066, | |
"count()": 62.18800500035286, | |
"collection.count()": 64.71439899504185 | |
}, | |
"433000": { | |
"find().count()": 64.92920000851154, | |
"find().limit(1).count()": 65.18189200758934, | |
"count()": 67.65969298779964, | |
"collection.count()": 62.86050400137901 | |
}, | |
"434000": { | |
"find().count()": 61.82947500050068, | |
"find().limit(1).count()": 62.47086100280285, | |
"count()": 62.530024990439415, | |
"collection.count()": 63.024237006902695 | |
}, | |
"435000": { | |
"find().count()": 61.9116789996624, | |
"find().limit(1).count()": 63.57097400724888, | |
"count()": 70.13487800955772, | |
"collection.count()": 62.59593500196934 | |
}, | |
"436000": { | |
"find().count()": 64.94033800065517, | |
"find().limit(1).count()": 61.4055350124836, | |
"count()": 63.703083992004395, | |
"collection.count()": 62.14697900414467 | |
}, | |
"437000": { | |
"find().count()": 61.36242100596428, | |
"find().limit(1).count()": 63.00355400145054, | |
"count()": 64.92651200294495, | |
"collection.count()": 67.2239620089531 | |
}, | |
"438000": { | |
"find().count()": 61.587004005908966, | |
"find().limit(1).count()": 75.39311000704765, | |
"count()": 65.46931199729443, | |
"collection.count()": 62.623782992362976 | |
}, | |
"439000": { | |
"find().count()": 62.15742298960686, | |
"find().limit(1).count()": 61.426653012633324, | |
"count()": 64.50939500331879, | |
"collection.count()": 64.52599999308586 | |
}, | |
"440000": { | |
"find().count()": 61.65860100090504, | |
"find().limit(1).count()": 61.802022993564606, | |
"count()": 63.07388699054718, | |
"collection.count()": 62.45661699771881 | |
}, | |
"441000": { | |
"find().count()": 62.12244500219822, | |
"find().limit(1).count()": 64.45746698975563, | |
"count()": 63.1117389947176, | |
"collection.count()": 61.102550998330116 | |
}, | |
"442000": { | |
"find().count()": 64.66075900197029, | |
"find().limit(1).count()": 61.02106000483036, | |
"count()": 70.28642900288105, | |
"collection.count()": 62.65033499896526 | |
}, | |
"443000": { | |
"find().count()": 61.437714993953705, | |
"find().limit(1).count()": 64.52832199633121, | |
"count()": 64.63422699272633, | |
"collection.count()": 64.63087199628353 | |
}, | |
"444000": { | |
"find().count()": 62.01248399913311, | |
"find().limit(1).count()": 61.262345001101494, | |
"count()": 62.29940800368786, | |
"collection.count()": 63.45865899324417 | |
}, | |
"445000": { | |
"find().count()": 61.133622005581856, | |
"find().limit(1).count()": 61.124276012182236, | |
"count()": 64.82352900505066, | |
"collection.count()": 62.34288799762726 | |
}, | |
"446000": { | |
"find().count()": 61.74704998731613, | |
"find().limit(1).count()": 64.54082399606705, | |
"count()": 62.61993199586868, | |
"collection.count()": 62.32407699525356 | |
}, | |
"447000": { | |
"find().count()": 62.72529700398445, | |
"find().limit(1).count()": 61.589380994439125, | |
"count()": 70.14559599757195, | |
"collection.count()": 72.51300700008869 | |
}, | |
"448000": { | |
"find().count()": 61.2083850055933, | |
"find().limit(1).count()": 61.48734800517559, | |
"count()": 62.279335007071495, | |
"collection.count()": 66.26657599210739 | |
}, | |
"449000": { | |
"find().count()": 63.4337709993124, | |
"find().limit(1).count()": 62.375459000468254, | |
"count()": 68.95834900438786, | |
"collection.count()": 63.77607099711895 | |
}, | |
"450000": { | |
"find().count()": 61.177698999643326, | |
"find().limit(1).count()": 64.16440300643444, | |
"count()": 64.38478699326515, | |
"collection.count()": 63.61314000189304 | |
}, | |
"451000": { | |
"find().count()": 61.29137100279331, | |
"find().limit(1).count()": 70.39852200448513, | |
"count()": 61.103478997945786, | |
"collection.count()": 62.87399500608444 | |
}, | |
"452000": { | |
"find().count()": 61.6553720086813, | |
"find().limit(1).count()": 62.98447300493717, | |
"count()": 61.6480879932642, | |
"collection.count()": 66.94495099782944 | |
}, | |
"453000": { | |
"find().count()": 61.054397001862526, | |
"find().limit(1).count()": 67.14562100172043, | |
"count()": 72.39680700004101, | |
"collection.count()": 62.59670300781727 | |
}, | |
"454000": { | |
"find().count()": 63.453676000237465, | |
"find().limit(1).count()": 62.62798599898815, | |
"count()": 61.70551601052284, | |
"collection.count()": 62.53262200951576 | |
}, | |
"455000": { | |
"find().count()": 61.363830000162125, | |
"find().limit(1).count()": 62.09649400413036, | |
"count()": 62.306073009967804, | |
"collection.count()": 65.9537919908762 | |
}, | |
"456000": { | |
"find().count()": 62.17927700281143, | |
"find().limit(1).count()": 67.90092699229717, | |
"count()": 62.24912901222706, | |
"collection.count()": 62.62491600215435 | |
}, | |
"457000": { | |
"find().count()": 311.1713590025902, | |
"find().limit(1).count()": 63.46252100169659, | |
"count()": 61.40718099474907, | |
"collection.count()": 62.471259996294975 | |
}, | |
"458000": { | |
"find().count()": 65.84980100393295, | |
"find().limit(1).count()": 70.14195100963116, | |
"count()": 66.47865100204945, | |
"collection.count()": 62.16059900820255 | |
}, | |
"459000": { | |
"find().count()": 63.40385599434376, | |
"find().limit(1).count()": 62.369186997413635, | |
"count()": 61.15337599813938, | |
"collection.count()": 62.162068009376526 | |
}, | |
"460000": { | |
"find().count()": 61.59121200442314, | |
"find().limit(1).count()": 65.52509999275208, | |
"count()": 61.10569900274277, | |
"collection.count()": 62.35867500305176 | |
}, | |
"461000": { | |
"find().count()": 62.28221298754215, | |
"find().limit(1).count()": 62.659939005970955, | |
"count()": 62.05426999926567, | |
"collection.count()": 62.27927100658417 | |
}, | |
"462000": { | |
"find().count()": 67.41614399850368, | |
"find().limit(1).count()": 63.1992260068655, | |
"count()": 61.67808699607849, | |
"collection.count()": 64.43319799005985 | |
}, | |
"463000": { | |
"find().count()": 63.755739986896515, | |
"find().limit(1).count()": 63.59001399576664, | |
"count()": 61.88953800499439, | |
"collection.count()": 62.494018003344536 | |
}, | |
"464000": { | |
"find().count()": 61.58621500432491, | |
"find().limit(1).count()": 67.19170899689198, | |
"count()": 65.83155500888824, | |
"collection.count()": 62.265240997076035 | |
}, | |
"465000": { | |
"find().count()": 62.72003099322319, | |
"find().limit(1).count()": 63.79019199311733, | |
"count()": 65.58148600161076, | |
"collection.count()": 62.42179599404335 | |
}, | |
"466000": { | |
"find().count()": 61.357032999396324, | |
"find().limit(1).count()": 63.98429799079895, | |
"count()": 61.42399199306965, | |
"collection.count()": 62.316612005233765 | |
}, | |
"467000": { | |
"find().count()": 61.560240000486374, | |
"find().limit(1).count()": 63.38023799657822, | |
"count()": 63.25967800617218, | |
"collection.count()": 64.88102500140667 | |
}, | |
"468000": { | |
"find().count()": 62.274250999093056, | |
"find().limit(1).count()": 65.10600000619888, | |
"count()": 61.01213400065899, | |
"collection.count()": 62.43301799893379 | |
}, | |
"469000": { | |
"find().count()": 62.587262988090515, | |
"find().limit(1).count()": 62.46203899383545, | |
"count()": 60.973792999982834, | |
"collection.count()": 64.52975200116634 | |
}, | |
"470000": { | |
"find().count()": 62.61088599264622, | |
"find().limit(1).count()": 65.14207799732685, | |
"count()": 61.193477004766464, | |
"collection.count()": 62.76976099610329 | |
}, | |
"471000": { | |
"find().count()": 63.8255609869957, | |
"find().limit(1).count()": 63.79133398830891, | |
"count()": 61.47546000778675, | |
"collection.count()": 65.34773001074791 | |
}, | |
"472000": { | |
"find().count()": 62.79987199604511, | |
"find().limit(1).count()": 65.14289599657059, | |
"count()": 61.148740991950035, | |
"collection.count()": 62.3252239972353 | |
}, | |
"473000": { | |
"find().count()": 63.42299199104309, | |
"find().limit(1).count()": 63.59883201122284, | |
"count()": 62.9234109967947, | |
"collection.count()": 65.08519400656223 | |
}, | |
"474000": { | |
"find().count()": 61.544202998280525, | |
"find().limit(1).count()": 62.638383001089096, | |
"count()": 61.40905199944973, | |
"collection.count()": 67.10354600846767 | |
}, | |
"475000": { | |
"find().count()": 63.46385200321674, | |
"find().limit(1).count()": 63.48991999030113, | |
"count()": 61.963323995471, | |
"collection.count()": 62.7435310035944 | |
}, | |
"476000": { | |
"find().count()": 61.93972499668598, | |
"find().limit(1).count()": 64.0090350061655, | |
"count()": 61.2085549980402, | |
"collection.count()": 62.144492998719215 | |
}, | |
"477000": { | |
"find().count()": 62.270594000816345, | |
"find().limit(1).count()": 62.93580400943756, | |
"count()": 63.11440201103687, | |
"collection.count()": 62.00893700122833 | |
}, | |
"478000": { | |
"find().count()": 62.08166000247002, | |
"find().limit(1).count()": 63.68961399793625, | |
"count()": 61.336228996515274, | |
"collection.count()": 62.37896700203419 | |
}, | |
"479000": { | |
"find().count()": 62.13499501347542, | |
"find().limit(1).count()": 64.10086300969124, | |
"count()": 61.158666998147964, | |
"collection.count()": 65.57632099092007 | |
}, | |
"480000": { | |
"find().count()": 64.54914399981499, | |
"find().limit(1).count()": 62.570013999938965, | |
"count()": 61.6764379888773, | |
"collection.count()": 62.52238900959492 | |
}, | |
"481000": { | |
"find().count()": 68.07879300415516, | |
"find().limit(1).count()": 67.18636099994183, | |
"count()": 61.28107799589634, | |
"collection.count()": 64.9667140096426 | |
}, | |
"482000": { | |
"find().count()": 62.31767399609089, | |
"find().limit(1).count()": 325.44603599607944, | |
"count()": 61.27073800563812, | |
"collection.count()": 64.08918099105358 | |
}, | |
"483000": { | |
"find().count()": 63.93297600746155, | |
"find().limit(1).count()": 62.49177899956703, | |
"count()": 61.134563997387886, | |
"collection.count()": 65.44154100120068 | |
}, | |
"484000": { | |
"find().count()": 61.573239997029305, | |
"find().limit(1).count()": 64.20892399549484, | |
"count()": 67.25789000093937, | |
"collection.count()": 62.15571600198746 | |
}, | |
"485000": { | |
"find().count()": 61.29441700875759, | |
"find().limit(1).count()": 97.57079499959946, | |
"count()": 68.0222110003233, | |
"collection.count()": 64.56004500389099 | |
}, | |
"486000": { | |
"find().count()": 62.15624599158764, | |
"find().limit(1).count()": 66.16498500108719, | |
"count()": 65.71509699523449, | |
"collection.count()": 62.24195000529289 | |
}, | |
"487000": { | |
"find().count()": 68.0022390037775, | |
"find().limit(1).count()": 64.25735399127007, | |
"count()": 62.06463301181793, | |
"collection.count()": 62.23547498881817 | |
}, | |
"488000": { | |
"find().count()": 61.70542599260807, | |
"find().limit(1).count()": 62.52949500083923, | |
"count()": 64.00267200171947, | |
"collection.count()": 62.25207099318504 | |
}, | |
"489000": { | |
"find().count()": 62.61304700374603, | |
"find().limit(1).count()": 62.600085988640785, | |
"count()": 62.56649398803711, | |
"collection.count()": 62.08486099541187 | |
}, | |
"490000": { | |
"find().count()": 64.27843300998211, | |
"find().limit(1).count()": 63.29866400361061, | |
"count()": 62.24938300251961, | |
"collection.count()": 62.178198993206024 | |
}, | |
"491000": { | |
"find().count()": 63.55282600224018, | |
"find().limit(1).count()": 65.38857199251652, | |
"count()": 62.545628011226654, | |
"collection.count()": 64.70626699924469 | |
}, | |
"492000": { | |
"find().count()": 61.9426039904356, | |
"find().limit(1).count()": 62.467530995607376, | |
"count()": 63.18647401034832, | |
"collection.count()": 64.95031899213791 | |
}, | |
"493000": { | |
"find().count()": 61.60333000123501, | |
"find().limit(1).count()": 62.81885699927807, | |
"count()": 63.17773599922657, | |
"collection.count()": 64.88060100376606 | |
}, | |
"494000": { | |
"find().count()": 61.96456898748875, | |
"find().limit(1).count()": 65.94353200495243, | |
"count()": 61.12577499449253, | |
"collection.count()": 62.1151369959116 | |
}, | |
"495000": { | |
"find().count()": 61.4047159999609, | |
"find().limit(1).count()": 63.24498100578785, | |
"count()": 62.55077899992466, | |
"collection.count()": 62.00945200026035 | |
}, | |
"496000": { | |
"find().count()": 62.87659700214863, | |
"find().limit(1).count()": 62.90796199440956, | |
"count()": 63.947822988033295, | |
"collection.count()": 62.20712399482727 | |
}, | |
"497000": { | |
"find().count()": 63.43510100245476, | |
"find().limit(1).count()": 118.43879699707031, | |
"count()": 61.23515699803829, | |
"collection.count()": 64.05283500254154 | |
}, | |
"498000": { | |
"find().count()": 61.552183002233505, | |
"find().limit(1).count()": 97.55236200988293, | |
"count()": 61.18319000303745, | |
"collection.count()": 62.36792300641537 | |
}, | |
"499000": { | |
"find().count()": 61.52672599256039, | |
"find().limit(1).count()": 62.0918859988451, | |
"count()": 79.41150999069214, | |
"collection.count()": 62.32134000957012 | |
}, | |
"500000": { | |
"find().count()": 62.42926898598671, | |
"find().limit(1).count()": 68.5603020042181, | |
"count()": 70.97771799564362, | |
"collection.count()": 63.84228499233723 | |
}, | |
"501000": { | |
"find().count()": 61.34258599579334, | |
"find().limit(1).count()": 122.30189700424671, | |
"count()": 62.88159799575806, | |
"collection.count()": 64.29912500083447 | |
}, | |
"502000": { | |
"find().count()": 61.3024709969759, | |
"find().limit(1).count()": 68.39142000675201, | |
"count()": 60.940254002809525, | |
"collection.count()": 61.927107989788055 | |
}, | |
"503000": { | |
"find().count()": 63.63945800065994, | |
"find().limit(1).count()": 68.7798869907856, | |
"count()": 62.847706988453865, | |
"collection.count()": 62.40674701333046 | |
}, | |
"504000": { | |
"find().count()": 62.798518002033234, | |
"find().limit(1).count()": 62.615440011024475, | |
"count()": 62.51842001080513, | |
"collection.count()": 63.82209999859333 | |
}, | |
"505000": { | |
"find().count()": 328.34917499125004, | |
"find().limit(1).count()": 64.68950599431992, | |
"count()": 62.76768799126148, | |
"collection.count()": 63.60963499546051 | |
}, | |
"506000": { | |
"find().count()": 64.94672700762749, | |
"find().limit(1).count()": 63.47025901079178, | |
"count()": 65.43510501086712, | |
"collection.count()": 62.48837301135063 | |
}, | |
"507000": { | |
"find().count()": 61.83025500178337, | |
"find().limit(1).count()": 64.45083099603653, | |
"count()": 62.275351002812386, | |
"collection.count()": 83.4179349988699 | |
}, | |
"508000": { | |
"find().count()": 61.21673199534416, | |
"find().limit(1).count()": 63.26322899758816, | |
"count()": 63.05281700193882, | |
"collection.count()": 62.64028300344944 | |
}, | |
"509000": { | |
"find().count()": 61.86490701138973, | |
"find().limit(1).count()": 64.84579400718212, | |
"count()": 63.946291998028755, | |
"collection.count()": 62.65669599175453 | |
}, | |
"510000": { | |
"find().count()": 62.42843300104141, | |
"find().limit(1).count()": 62.98946100473404, | |
"count()": 62.31173799932003, | |
"collection.count()": 62.512437000870705 | |
}, | |
"511000": { | |
"find().count()": 79.38665300607681, | |
"find().limit(1).count()": 62.34645500779152, | |
"count()": 62.35945600271225, | |
"collection.count()": 62.59918500483036 | |
}, | |
"512000": { | |
"find().count()": 61.688993006944656, | |
"find().limit(1).count()": 63.01148600876331, | |
"count()": 66.1888180077076, | |
"collection.count()": 64.2671649903059 | |
}, | |
"513000": { | |
"find().count()": 62.01971700787544, | |
"find().limit(1).count()": 62.843291997909546, | |
"count()": 69.10519398748875, | |
"collection.count()": 62.98850700259209 | |
}, | |
"514000": { | |
"find().count()": 66.47822599112988, | |
"find().limit(1).count()": 62.28845900297165, | |
"count()": 62.707244008779526, | |
"collection.count()": 62.34095500409603 | |
}, | |
"515000": { | |
"find().count()": 64.34513799846172, | |
"find().limit(1).count()": 120.75456799566746, | |
"count()": 70.92136700451374, | |
"collection.count()": 62.434985995292664 | |
}, | |
"516000": { | |
"find().count()": 64.56422200798988, | |
"find().limit(1).count()": 107.53150999546051, | |
"count()": 62.6584400087595, | |
"collection.count()": 62.12811699509621 | |
}, | |
"517000": { | |
"find().count()": 61.982554003596306, | |
"find().limit(1).count()": 62.37015700340271, | |
"count()": 62.40101799368858, | |
"collection.count()": 63.79820600152016 | |
}, | |
"518000": { | |
"find().count()": 61.56649599969387, | |
"find().limit(1).count()": 64.62201699614525, | |
"count()": 67.4856970012188, | |
"collection.count()": 62.29924300312996 | |
}, | |
"519000": { | |
"find().count()": 62.91972699761391, | |
"find().limit(1).count()": 64.89449900388718, | |
"count()": 62.41688899695873, | |
"collection.count()": 62.277905002236366 | |
}, | |
"520000": { | |
"find().count()": 64.33005300164223, | |
"find().limit(1).count()": 66.24852100014687, | |
"count()": 62.25213600695133, | |
"collection.count()": 62.762082010507584 | |
}, | |
"521000": { | |
"find().count()": 71.27076600492, | |
"find().limit(1).count()": 62.18752999603748, | |
"count()": 68.04151301085949, | |
"collection.count()": 61.04219099879265 | |
}, | |
"522000": { | |
"find().count()": 61.722704991698265, | |
"find().limit(1).count()": 62.64935700595379, | |
"count()": 62.036733001470566, | |
"collection.count()": 61.44672600924969 | |
}, | |
"523000": { | |
"find().count()": 64.44357599318027, | |
"find().limit(1).count()": 62.7839919924736, | |
"count()": 62.70151400566101, | |
"collection.count()": 61.33423300087452 | |
}, | |
"524000": { | |
"find().count()": 61.78599700331688, | |
"find().limit(1).count()": 64.14600199460983, | |
"count()": 62.278580009937286, | |
"collection.count()": 61.153821006417274 | |
}, | |
"525000": { | |
"find().count()": 62.19933299720287, | |
"find().limit(1).count()": 62.735872000455856, | |
"count()": 65.80565498769283, | |
"collection.count()": 61.31783299148083 | |
}, | |
"526000": { | |
"find().count()": 61.59297400712967, | |
"find().limit(1).count()": 64.53589498996735, | |
"count()": 62.49263899028301, | |
"collection.count()": 61.28203199803829 | |
}, | |
"527000": { | |
"find().count()": 62.19996400177479, | |
"find().limit(1).count()": 66.16383899748325, | |
"count()": 63.00161200761795, | |
"collection.count()": 65.76658099889755 | |
}, | |
"528000": { | |
"find().count()": 61.82728199660778, | |
"find().limit(1).count()": 62.5927589982748, | |
"count()": 62.16805899143219, | |
"collection.count()": 61.79619599878788 | |
}, | |
"529000": { | |
"find().count()": 64.50844299793243, | |
"find().limit(1).count()": 63.116979002952576, | |
"count()": 63.06472399830818, | |
"collection.count()": 61.0869520008564 | |
}, | |
"530000": { | |
"find().count()": 61.51400899887085, | |
"find().limit(1).count()": 62.42066499590874, | |
"count()": 62.372675999999046, | |
"collection.count()": 60.98173199594021 | |
}, | |
"531000": { | |
"find().count()": 63.02418699860573, | |
"find().limit(1).count()": 63.979053005576134, | |
"count()": 62.731700003147125, | |
"collection.count()": 61.278732001781464 | |
}, | |
"532000": { | |
"find().count()": 69.5118999928236, | |
"find().limit(1).count()": 63.107877999544144, | |
"count()": 61.0125569999218, | |
"collection.count()": 61.813564002513885 | |
}, | |
"533000": { | |
"find().count()": 64.5799880027771, | |
"find().limit(1).count()": 63.25752900540829, | |
"count()": 64.4615700095892, | |
"collection.count()": 61.12261100113392 | |
}, | |
"534000": { | |
"find().count()": 61.742896005511284, | |
"find().limit(1).count()": 64.84479500353336, | |
"count()": 60.99694100022316, | |
"collection.count()": 61.082830995321274 | |
}, | |
"535000": { | |
"find().count()": 61.62222599983215, | |
"find().limit(1).count()": 63.15150099992752, | |
"count()": 62.9140390008688, | |
"collection.count()": 62.37645500898361 | |
}, | |
"536000": { | |
"find().count()": 64.57082299888134, | |
"find().limit(1).count()": 62.56930901110172, | |
"count()": 61.2479699999094, | |
"collection.count()": 62.14349699020386 | |
}, | |
"537000": { | |
"find().count()": 61.611120000481606, | |
"find().limit(1).count()": 62.723293006420135, | |
"count()": 61.686604991555214, | |
"collection.count()": 72.81272000074387 | |
}, | |
"538000": { | |
"find().count()": 61.88423399627209, | |
"find().limit(1).count()": 63.59280899167061, | |
"count()": 62.53176701068878, | |
"collection.count()": 64.78118500113487 | |
}, | |
"539000": { | |
"find().count()": 64.48305501043797, | |
"find().limit(1).count()": 64.6034529954195, | |
"count()": 68.06631900370121, | |
"collection.count()": 63.66058000922203 | |
}, | |
"540000": { | |
"find().count()": 61.717419013381004, | |
"find().limit(1).count()": 63.604736000299454, | |
"count()": 61.6841049939394, | |
"collection.count()": 61.13986900448799 | |
}, | |
"541000": { | |
"find().count()": 64.69117300212383, | |
"find().limit(1).count()": 64.77746799588203, | |
"count()": 62.45470900833607, | |
"collection.count()": 68.63723699748516 | |
}, | |
"542000": { | |
"find().count()": 61.67210300266743, | |
"find().limit(1).count()": 107.14051100611687, | |
"count()": 61.32763200998306, | |
"collection.count()": 61.32964700460434 | |
}, | |
"543000": { | |
"find().count()": 61.29246400296688, | |
"find().limit(1).count()": 63.84297698736191, | |
"count()": 61.08998399972916, | |
"collection.count()": 61.15584500133991 | |
}, | |
"544000": { | |
"find().count()": 61.98217399418354, | |
"find().limit(1).count()": 62.3796000033617, | |
"count()": 61.98965398967266, | |
"collection.count()": 61.0236250013113 | |
}, | |
"545000": { | |
"find().count()": 62.901022002100945, | |
"find().limit(1).count()": 62.696614012122154, | |
"count()": 62.22546900808811, | |
"collection.count()": 61.53167000412941 | |
}, | |
"546000": { | |
"find().count()": 61.59410700201988, | |
"find().limit(1).count()": 62.18639099597931, | |
"count()": 60.89685100317001, | |
"collection.count()": 61.11038699746132 | |
}, | |
"547000": { | |
"find().count()": 62.17877599596977, | |
"find().limit(1).count()": 62.48957300186157, | |
"count()": 61.2742919921875, | |
"collection.count()": 63.061958000063896 | |
}, | |
"548000": { | |
"find().count()": 61.62148401141167, | |
"find().limit(1).count()": 62.42902299761772, | |
"count()": 61.03592900931835, | |
"collection.count()": 61.032060995697975 | |
}, | |
"549000": { | |
"find().count()": 63.788668006658554, | |
"find().limit(1).count()": 62.422009006142616, | |
"count()": 62.525188997387886, | |
"collection.count()": 62.274909004569054 | |
}, | |
"550000": { | |
"find().count()": 64.13414099812508, | |
"find().limit(1).count()": 67.01179699599743, | |
"count()": 61.1866279989481, | |
"collection.count()": 63.18536399304867 | |
}, | |
"551000": { | |
"find().count()": 64.16159300506115, | |
"find().limit(1).count()": 66.64152200520039, | |
"count()": 61.41247500479221, | |
"collection.count()": 64.38745200634003 | |
}, | |
"552000": { | |
"find().count()": 62.06716799736023, | |
"find().limit(1).count()": 62.36345501244068, | |
"count()": 61.002418011426926, | |
"collection.count()": 62.01451800763607 | |
}, | |
"553000": { | |
"find().count()": 62.88376599550247, | |
"find().limit(1).count()": 65.15687499940395, | |
"count()": 63.020404011011124, | |
"collection.count()": 61.084102004766464 | |
}, | |
"554000": { | |
"find().count()": 62.35600499808788, | |
"find().limit(1).count()": 62.8517500013113, | |
"count()": 62.30394199490547, | |
"collection.count()": 63.752581000328064 | |
}, | |
"555000": { | |
"find().count()": 61.48902100324631, | |
"find().limit(1).count()": 62.12671799957752, | |
"count()": 61.862996995449066, | |
"collection.count()": 61.468706995248795 | |
}, | |
"556000": { | |
"find().count()": 66.61094100773335, | |
"find().limit(1).count()": 63.26351299881935, | |
"count()": 62.08328099548817, | |
"collection.count()": 64.29130400717258 | |
}, | |
"557000": { | |
"find().count()": 61.92630599439144, | |
"find().limit(1).count()": 63.09316599369049, | |
"count()": 64.01714000105858, | |
"collection.count()": 61.34723898768425 | |
}, | |
"558000": { | |
"find().count()": 65.64920499920845, | |
"find().limit(1).count()": 62.56300599873066, | |
"count()": 60.99599300324917, | |
"collection.count()": 78.21275100111961 | |
}, | |
"559000": { | |
"find().count()": 61.65412600338459, | |
"find().limit(1).count()": 65.14852699637413, | |
"count()": 74.65518799424171, | |
"collection.count()": 62.792162001132965 | |
}, | |
"560000": { | |
"find().count()": 61.48113100230694, | |
"find().limit(1).count()": 63.97602799534798, | |
"count()": 64.47206699848175, | |
"collection.count()": 61.0844299942255 | |
}, | |
"561000": { | |
"find().count()": 64.50262300670147, | |
"find().limit(1).count()": 62.26530499756336, | |
"count()": 65.12680900096893, | |
"collection.count()": 65.15742200613022 | |
}, | |
"562000": { | |
"find().count()": 61.645921006798744, | |
"find().limit(1).count()": 62.67483600974083, | |
"count()": 62.84373700618744, | |
"collection.count()": 67.92876200377941 | |
}, | |
"563000": { | |
"find().count()": 68.38567200303078, | |
"find().limit(1).count()": 65.79223999381065, | |
"count()": 62.343193992972374, | |
"collection.count()": 62.91686299443245 | |
}, | |
"564000": { | |
"find().count()": 64.02436201274395, | |
"find().limit(1).count()": 62.782992005348206, | |
"count()": 62.25560300052166, | |
"collection.count()": 61.09839300811291 | |
}, | |
"565000": { | |
"find().count()": 61.50880101323128, | |
"find().limit(1).count()": 67.14154499769211, | |
"count()": 67.47249300777912, | |
"collection.count()": 61.425494000315666 | |
}, | |
"566000": { | |
"find().count()": 64.55154800415039, | |
"find().limit(1).count()": 63.76763901114464, | |
"count()": 63.650606006383896, | |
"collection.count()": 60.957322001457214 | |
}, | |
"567000": { | |
"find().count()": 62.05944499373436, | |
"find().limit(1).count()": 62.64444899559021, | |
"count()": 63.267547994852066, | |
"collection.count()": 63.96381199359894 | |
}, | |
"568000": { | |
"find().count()": 62.05066899955273, | |
"find().limit(1).count()": 62.71771401166916, | |
"count()": 62.16192600131035, | |
"collection.count()": 60.98131701350212 | |
}, | |
"569000": { | |
"find().count()": 69.55100800096989, | |
"find().limit(1).count()": 70.50239101052284, | |
"count()": 67.45233099162579, | |
"collection.count()": 61.29410399496555 | |
}, | |
"570000": { | |
"find().count()": 61.755053997039795, | |
"find().limit(1).count()": 65.6231320053339, | |
"count()": 62.26891799271107, | |
"collection.count()": 61.43553499877453 | |
}, | |
"571000": { | |
"find().count()": 62.14069800078869, | |
"find().limit(1).count()": 63.18178200721741, | |
"count()": 62.42330498993397, | |
"collection.count()": 63.19530799984932 | |
}, | |
"572000": { | |
"find().count()": 61.71219800412655, | |
"find().limit(1).count()": 66.63995999097824, | |
"count()": 62.346928000450134, | |
"collection.count()": 61.15359300374985 | |
}, | |
"573000": { | |
"find().count()": 63.218549996614456, | |
"find().limit(1).count()": 62.4254370033741, | |
"count()": 65.05139400064945, | |
"collection.count()": 61.019900009036064 | |
}, | |
"574000": { | |
"find().count()": 65.39719200134277, | |
"find().limit(1).count()": 62.27158500254154, | |
"count()": 63.365203991532326, | |
"collection.count()": 61.35085201263428 | |
}, | |
"575000": { | |
"find().count()": 63.51273199915886, | |
"find().limit(1).count()": 63.183292001485825, | |
"count()": 62.51369300484657, | |
"collection.count()": 61.2419950067997 | |
}, | |
"576000": { | |
"find().count()": 61.54701401293278, | |
"find().limit(1).count()": 62.30103699862957, | |
"count()": 65.1206040084362, | |
"collection.count()": 66.32872700691223 | |
}, | |
"577000": { | |
"find().count()": 61.72428399324417, | |
"find().limit(1).count()": 62.676342993974686, | |
"count()": 69.36505399644375, | |
"collection.count()": 62.44804899394512 | |
}, | |
"578000": { | |
"find().count()": 61.401189997792244, | |
"find().limit(1).count()": 61.05687700212002, | |
"count()": 62.89852800965309, | |
"collection.count()": 64.28302000463009 | |
}, | |
"579000": { | |
"find().count()": 61.790554001927376, | |
"find().limit(1).count()": 61.572816997766495, | |
"count()": 62.37817099690437, | |
"collection.count()": 64.54645000398159 | |
}, | |
"580000": { | |
"find().count()": 61.66898700594902, | |
"find().limit(1).count()": 61.03016799688339, | |
"count()": 62.591664999723434, | |
"collection.count()": 65.60989500582218 | |
}, | |
"581000": { | |
"find().count()": 61.91166600584984, | |
"find().limit(1).count()": 62.28998799622059, | |
"count()": 63.933373004198074, | |
"collection.count()": 62.84019599854946 | |
}, | |
"582000": { | |
"find().count()": 61.88589499890804, | |
"find().limit(1).count()": 62.20527300238609, | |
"count()": 62.227539002895355, | |
"collection.count()": 65.45763799548149 | |
}, | |
"583000": { | |
"find().count()": 63.732042998075485, | |
"find().limit(1).count()": 62.606963992118835, | |
"count()": 62.32972098886967, | |
"collection.count()": 62.34800098836422 | |
}, | |
"584000": { | |
"find().count()": 62.90218798816204, | |
"find().limit(1).count()": 63.506420999765396, | |
"count()": 62.32445999979973, | |
"collection.count()": 64.83858400583267 | |
}, | |
"585000": { | |
"find().count()": 62.80441200733185, | |
"find().limit(1).count()": 61.08493599295616, | |
"count()": 62.566462993621826, | |
"collection.count()": 62.55973398685455 | |
}, | |
"586000": { | |
"find().count()": 61.49551598727703, | |
"find().limit(1).count()": 64.11664201319218, | |
"count()": 63.2563059926033, | |
"collection.count()": 65.91533900797367 | |
}, | |
"587000": { | |
"find().count()": 66.53838600218296, | |
"find().limit(1).count()": 61.49509298801422, | |
"count()": 61.576799005270004, | |
"collection.count()": 62.34450799226761 | |
}, | |
"588000": { | |
"find().count()": 61.497338995337486, | |
"find().limit(1).count()": 63.40973399579525, | |
"count()": 62.6604779958725, | |
"collection.count()": 62.94812500476837 | |
}, | |
"589000": { | |
"find().count()": 61.768480002880096, | |
"find().limit(1).count()": 62.20272698998451, | |
"count()": 64.14549800753593, | |
"collection.count()": 62.24455100297928 | |
}, | |
"590000": { | |
"find().count()": 62.91254399716854, | |
"find().limit(1).count()": 61.93589599430561, | |
"count()": 67.09800601005554, | |
"collection.count()": 62.58592300117016 | |
}, | |
"591000": { | |
"find().count()": 63.90079899132252, | |
"find().limit(1).count()": 61.64223200082779, | |
"count()": 63.33188199996948, | |
"collection.count()": 62.96469500660896 | |
}, | |
"592000": { | |
"find().count()": 61.4781269878149, | |
"find().limit(1).count()": 62.302339002490044, | |
"count()": 62.648056998848915, | |
"collection.count()": 62.24064099788666 | |
}, | |
"593000": { | |
"find().count()": 63.21994200348854, | |
"find().limit(1).count()": 64.61295799911022, | |
"count()": 63.01842398941517, | |
"collection.count()": 62.24362799525261 | |
}, | |
"594000": { | |
"find().count()": 64.90736500918865, | |
"find().limit(1).count()": 61.07142399251461, | |
"count()": 70.26764799654484, | |
"collection.count()": 62.09502199292183 | |
}, | |
"595000": { | |
"find().count()": 61.41076000034809, | |
"find().limit(1).count()": 61.8206640034914, | |
"count()": 62.60208301246166, | |
"collection.count()": 64.66302900016308 | |
}, | |
"596000": { | |
"find().count()": 63.00601500272751, | |
"find().limit(1).count()": 81.15831899642944, | |
"count()": 68.96441198885441, | |
"collection.count()": 62.20499201118946 | |
}, | |
"597000": { | |
"find().count()": 64.35786800086498, | |
"find().limit(1).count()": 62.79108498990536, | |
"count()": 63.50651100277901, | |
"collection.count()": 63.00405599176884 | |
}, | |
"598000": { | |
"find().count()": 61.501158997416496, | |
"find().limit(1).count()": 62.71579200029373, | |
"count()": 62.99269999563694, | |
"collection.count()": 65.43322798609734 | |
}, | |
"599000": { | |
"find().count()": 61.45585200190544, | |
"find().limit(1).count()": 60.97664299607277, | |
"count()": 62.62977699935436, | |
"collection.count()": 62.40949299931526 | |
}, | |
"600000": { | |
"find().count()": 61.443580999970436, | |
"find().limit(1).count()": 61.52659100294113, | |
"count()": 62.33158899843693, | |
"collection.count()": 62.37873899936676 | |
}, | |
"601000": { | |
"find().count()": 62.48752300441265, | |
"find().limit(1).count()": 61.21433599293232, | |
"count()": 65.22826300561428, | |
"collection.count()": 62.8456159979105 | |
}, | |
"602000": { | |
"find().count()": 62.88528499007225, | |
"find().limit(1).count()": 61.96422399580479, | |
"count()": 67.40448400378227, | |
"collection.count()": 63.46935600042343 | |
}, | |
"603000": { | |
"find().count()": 61.422670006752014, | |
"find().limit(1).count()": 61.23325599730015, | |
"count()": 67.08727100491524, | |
"collection.count()": 62.20173600316048 | |
}, | |
"604000": { | |
"find().count()": 62.028826013207436, | |
"find().limit(1).count()": 61.019652009010315, | |
"count()": 62.44937399029732, | |
"collection.count()": 62.09555000066757 | |
}, | |
"605000": { | |
"find().count()": 61.780433997511864, | |
"find().limit(1).count()": 64.66429299116135, | |
"count()": 62.49806800484657, | |
"collection.count()": 63.46999999880791 | |
}, | |
"606000": { | |
"find().count()": 63.29884199798107, | |
"find().limit(1).count()": 62.98279099166393, | |
"count()": 65.47072899341583, | |
"collection.count()": 113.99663200974464 | |
}, | |
"607000": { | |
"find().count()": 61.20421199500561, | |
"find().limit(1).count()": 61.72684799134731, | |
"count()": 62.36813600361347, | |
"collection.count()": 62.22199200093746 | |
}, | |
"608000": { | |
"find().count()": 61.306014999747276, | |
"find().limit(1).count()": 65.89701800048351, | |
"count()": 64.01029600203037, | |
"collection.count()": 65.18595199286938 | |
}, | |
"609000": { | |
"find().count()": 70.24387998878956, | |
"find().limit(1).count()": 63.75494000315666, | |
"count()": 62.89551700651646, | |
"collection.count()": 65.16157400608063 | |
}, | |
"610000": { | |
"find().count()": 65.9797660112381, | |
"find().limit(1).count()": 61.43673600256443, | |
"count()": 62.436195001006126, | |
"collection.count()": 64.86365999281406 | |
}, | |
"611000": { | |
"find().count()": 61.45806400477886, | |
"find().limit(1).count()": 61.32495500147343, | |
"count()": 62.55974701046944, | |
"collection.count()": 66.65054300427437 | |
}, | |
"612000": { | |
"find().count()": 61.41577400267124, | |
"find().limit(1).count()": 61.89378999173641, | |
"count()": 63.093877002596855, | |
"collection.count()": 62.873098000884056 | |
}, | |
"613000": { | |
"find().count()": 61.58222000300884, | |
"find().limit(1).count()": 61.10642699897289, | |
"count()": 62.841257989406586, | |
"collection.count()": 63.552692010998726 | |
}, | |
"614000": { | |
"find().count()": 61.881077989935875, | |
"find().limit(1).count()": 62.518222987651825, | |
"count()": 62.23842999339104, | |
"collection.count()": 62.08644299209118 | |
}, | |
"615000": { | |
"find().count()": 63.66380199790001, | |
"find().limit(1).count()": 259.36951899528503, | |
"count()": 63.5431489944458, | |
"collection.count()": 66.22987000644207 | |
}, | |
"616000": { | |
"find().count()": 62.389654994010925, | |
"find().limit(1).count()": 62.09111399948597, | |
"count()": 64.2759899944067, | |
"collection.count()": 62.36742100119591 | |
}, | |
"617000": { | |
"find().count()": 61.473284006118774, | |
"find().limit(1).count()": 61.55951601266861, | |
"count()": 63.874012991786, | |
"collection.count()": 62.23368099331856 | |
}, | |
"618000": { | |
"find().count()": 61.32786799967289, | |
"find().limit(1).count()": 61.81850700080395, | |
"count()": 61.91992101073265, | |
"collection.count()": 62.483053013682365 | |
}, | |
"619000": { | |
"find().count()": 61.654072999954224, | |
"find().limit(1).count()": 62.35702998936176, | |
"count()": 61.535606011748314, | |
"collection.count()": 62.20787900686264 | |
}, | |
"620000": { | |
"find().count()": 63.99592000246048, | |
"find().limit(1).count()": 61.60741899907589, | |
"count()": 66.49666200578213, | |
"collection.count()": 62.040638998150826 | |
}, | |
"621000": { | |
"find().count()": 65.18255300819874, | |
"find().limit(1).count()": 62.20522400736809, | |
"count()": 61.71324199438095, | |
"collection.count()": 62.266086995601654 | |
}, | |
"622000": { | |
"find().count()": 61.603731989860535, | |
"find().limit(1).count()": 61.40368999540806, | |
"count()": 61.74082601070404, | |
"collection.count()": 64.74771898984909 | |
}, | |
"623000": { | |
"find().count()": 63.60108199715614, | |
"find().limit(1).count()": 61.59516200423241, | |
"count()": 62.73388400673866, | |
"collection.count()": 63.971406012773514 | |
}, | |
"624000": { | |
"find().count()": 66.28909100592136, | |
"find().limit(1).count()": 64.96526400744915, | |
"count()": 61.64868301153183, | |
"collection.count()": 64.85900001227856 | |
}, | |
"625000": { | |
"find().count()": 62.12715199589729, | |
"find().limit(1).count()": 63.39098700881004, | |
"count()": 61.06580200791359, | |
"collection.count()": 62.313316002488136 | |
}, | |
"626000": { | |
"find().count()": 61.04277300834656, | |
"find().limit(1).count()": 66.24550999701023, | |
"count()": 63.0842179954052, | |
"collection.count()": 66.0174420028925 | |
}, | |
"627000": { | |
"find().count()": 61.14242300391197, | |
"find().limit(1).count()": 62.316368997097015, | |
"count()": 64.34810899198055, | |
"collection.count()": 62.22079199552536 | |
}, | |
"628000": { | |
"find().count()": 64.90958200395107, | |
"find().limit(1).count()": 65.21255299448967, | |
"count()": 63.525823995471, | |
"collection.count()": 62.29027199745178 | |
}, | |
"629000": { | |
"find().count()": 61.078664004802704, | |
"find().limit(1).count()": 64.71445299685001, | |
"count()": 63.85182298719883, | |
"collection.count()": 63.712674006819725 | |
}, | |
"630000": { | |
"find().count()": 61.28271099925041, | |
"find().limit(1).count()": 69.18593999743462, | |
"count()": 61.11368200182915, | |
"collection.count()": 62.018645003437996 | |
}, | |
"631000": { | |
"find().count()": 60.98657900094986, | |
"find().limit(1).count()": 62.78711500763893, | |
"count()": 61.95294600725174, | |
"collection.count()": 62.76061999797821 | |
}, | |
"632000": { | |
"find().count()": 61.61660699546337, | |
"find().limit(1).count()": 62.63340699672699, | |
"count()": 63.45111799240112, | |
"collection.count()": 64.57069599628448 | |
}, | |
"633000": { | |
"find().count()": 63.58806699514389, | |
"find().limit(1).count()": 62.05189900100231, | |
"count()": 62.68513000011444, | |
"collection.count()": 61.225924998521805 | |
}, | |
"634000": { | |
"find().count()": 61.26571199297905, | |
"find().limit(1).count()": 62.24653200805187, | |
"count()": 61.1856369972229, | |
"collection.count()": 61.337091997265816 | |
}, | |
"635000": { | |
"find().count()": 61.52392500638962, | |
"find().limit(1).count()": 62.8919910043478, | |
"count()": 67.03296700119972, | |
"collection.count()": 60.969631999731064 | |
}, | |
"636000": { | |
"find().count()": 61.12968099117279, | |
"find().limit(1).count()": 67.46239700913429, | |
"count()": 61.58323900401592, | |
"collection.count()": 62.87650999426842 | |
}, | |
"637000": { | |
"find().count()": 63.517116993665695, | |
"find().limit(1).count()": 65.00266599655151, | |
"count()": 63.5375500023365, | |
"collection.count()": 60.915049999952316 | |
}, | |
"638000": { | |
"find().count()": 63.43186900019646, | |
"find().limit(1).count()": 62.38189899921417, | |
"count()": 61.24504001438618, | |
"collection.count()": 63.08814100921154 | |
}, | |
"639000": { | |
"find().count()": 61.38084399700165, | |
"find().limit(1).count()": 64.0827260017395, | |
"count()": 61.59756499528885, | |
"collection.count()": 61.10912699997425 | |
}, | |
"640000": { | |
"find().count()": 61.73794800043106, | |
"find().limit(1).count()": 62.95297400653362, | |
"count()": 61.13542899489403, | |
"collection.count()": 61.830807000398636 | |
}, | |
"641000": { | |
"find().count()": 65.1701290011406, | |
"find().limit(1).count()": 62.49156600236893, | |
"count()": 61.570177003741264, | |
"collection.count()": 61.264314994215965 | |
}, | |
"642000": { | |
"find().count()": 61.376656994223595, | |
"find().limit(1).count()": 62.56816101074219, | |
"count()": 63.173182010650635, | |
"collection.count()": 60.953849002718925 | |
}, | |
"643000": { | |
"find().count()": 61.37729001045227, | |
"find().limit(1).count()": 62.435674011707306, | |
"count()": 62.42603100836277, | |
"collection.count()": 61.19124799966812 | |
}, | |
"644000": { | |
"find().count()": 63.85065099596977, | |
"find().limit(1).count()": 62.61737298965454, | |
"count()": 62.30102600157261, | |
"collection.count()": 62.046076998114586 | |
}, | |
"645000": { | |
"find().count()": 61.51360799372196, | |
"find().limit(1).count()": 67.0453850030899, | |
"count()": 63.00669699907303, | |
"collection.count()": 61.107884988188744 | |
}, | |
"646000": { | |
"find().count()": 62.315184995532036, | |
"find().limit(1).count()": 64.51857200264931, | |
"count()": 62.379372000694275, | |
"collection.count()": 63.46458899974823 | |
}, | |
"647000": { | |
"find().count()": 61.83552199602127, | |
"find().limit(1).count()": 63.80089099705219, | |
"count()": 61.51581300795078, | |
"collection.count()": 62.27345898747444 | |
}, | |
"648000": { | |
"find().count()": 63.53744900226593, | |
"find().limit(1).count()": 65.61594299972057, | |
"count()": 62.6640419960022, | |
"collection.count()": 63.718690007925034 | |
}, | |
"649000": { | |
"find().count()": 61.20508100092411, | |
"find().limit(1).count()": 87.62359599769115, | |
"count()": 61.052101999521255, | |
"collection.count()": 61.05410900712013 | |
}, | |
"650000": { | |
"find().count()": 61.68751099705696, | |
"find().limit(1).count()": 67.32168500125408, | |
"count()": 61.16637098789215, | |
"collection.count()": 60.95794799923897 | |
}, | |
"651000": { | |
"find().count()": 323.19529899954796, | |
"find().limit(1).count()": 63.885234996676445, | |
"count()": 61.45513699948788, | |
"collection.count()": 61.06122200191021 | |
}, | |
"652000": { | |
"find().count()": 61.603645995259285, | |
"find().limit(1).count()": 64.00968900322914, | |
"count()": 61.74841099977493, | |
"collection.count()": 61.04618100821972 | |
}, | |
"653000": { | |
"find().count()": 64.08208601176739, | |
"find().limit(1).count()": 63.005057007074356, | |
"count()": 66.35960198938847, | |
"collection.count()": 60.98367300629616 | |
}, | |
"654000": { | |
"find().count()": 62.911639004945755, | |
"find().limit(1).count()": 63.07202699780464, | |
"count()": 63.11480900645256, | |
"collection.count()": 61.26027600467205 | |
}, | |
"655000": { | |
"find().count()": 61.308133006095886, | |
"find().limit(1).count()": 62.35616999864578, | |
"count()": 61.62815898656845, | |
"collection.count()": 61.01138299703598 | |
}, | |
"656000": { | |
"find().count()": 61.118856996297836, | |
"find().limit(1).count()": 65.06996899843216, | |
"count()": 61.03586599230766, | |
"collection.count()": 61.14849799871445 | |
}, | |
"657000": { | |
"find().count()": 61.833856999874115, | |
"find().limit(1).count()": 63.33489899337292, | |
"count()": 66.30086599290371, | |
"collection.count()": 61.3048789948225 | |
}, | |
"658000": { | |
"find().count()": 61.9466589987278, | |
"find().limit(1).count()": 63.205296009778976, | |
"count()": 61.266924008727074, | |
"collection.count()": 69.58012600243092 | |
}, | |
"659000": { | |
"find().count()": 63.52559098601341, | |
"find().limit(1).count()": 66.10030500590801, | |
"count()": 63.591908007860184, | |
"collection.count()": 61.359503999352455 | |
}, | |
"660000": { | |
"find().count()": 63.545561000704765, | |
"find().limit(1).count()": 68.04122699797153, | |
"count()": 61.71621899306774, | |
"collection.count()": 60.897450000047684 | |
}, | |
"661000": { | |
"find().count()": 61.759129002690315, | |
"find().limit(1).count()": 69.22877798974514, | |
"count()": 64.81334000825882, | |
"collection.count()": 61.98479801416397 | |
}, | |
"662000": { | |
"find().count()": 67.37390099465847, | |
"find().limit(1).count()": 64.69150000810623, | |
"count()": 62.40130101144314, | |
"collection.count()": 64.20443899929523 | |
}, | |
"663000": { | |
"find().count()": 66.37163899838924, | |
"find().limit(1).count()": 62.40744899213314, | |
"count()": 61.83754500746727, | |
"collection.count()": 62.07686099410057 | |
}, | |
"664000": { | |
"find().count()": 62.726878985762596, | |
"find().limit(1).count()": 66.12118799984455, | |
"count()": 61.326811999082565, | |
"collection.count()": 62.24551700055599 | |
}, | |
"665000": { | |
"find().count()": 62.30101199448109, | |
"find().limit(1).count()": 64.28984199464321, | |
"count()": 62.62442100048065, | |
"collection.count()": 64.64919500052929 | |
}, | |
"666000": { | |
"find().count()": 66.78806500136852, | |
"find().limit(1).count()": 62.963443994522095, | |
"count()": 63.23155100643635, | |
"collection.count()": 63.65531700849533 | |
}, | |
"667000": { | |
"find().count()": 64.26592800021172, | |
"find().limit(1).count()": 62.348379999399185, | |
"count()": 61.08447800576687, | |
"collection.count()": 67.78478500247002 | |
}, | |
"668000": { | |
"find().count()": 61.26627700030804, | |
"find().limit(1).count()": 62.99626399576664, | |
"count()": 63.94564600288868, | |
"collection.count()": 61.89487899839878 | |
}, | |
"669000": { | |
"find().count()": 61.841330006718636, | |
"find().limit(1).count()": 63.3143689930439, | |
"count()": 61.374797001481056, | |
"collection.count()": 62.36068499088287 | |
}, | |
"670000": { | |
"find().count()": 62.89139398932457, | |
"find().limit(1).count()": 63.05834999680519, | |
"count()": 61.17289298772812, | |
"collection.count()": 63.31442400813103 | |
}, | |
"671000": { | |
"find().count()": 66.3376639932394, | |
"find().limit(1).count()": 64.81325000524521, | |
"count()": 61.05715200304985, | |
"collection.count()": 62.63137200474739 | |
}, | |
"672000": { | |
"find().count()": 62.73808500170708, | |
"find().limit(1).count()": 68.12946999073029, | |
"count()": 62.47017198801041, | |
"collection.count()": 62.20244799554348 | |
}, | |
"673000": { | |
"find().count()": 63.34614199399948, | |
"find().limit(1).count()": 63.25154601037502, | |
"count()": 62.84484799206257, | |
"collection.count()": 62.04672199487686 | |
}, | |
"674000": { | |
"find().count()": 63.62076999247074, | |
"find().limit(1).count()": 63.099563002586365, | |
"count()": 61.41178700327873, | |
"collection.count()": 62.34841500222683 | |
}, | |
"675000": { | |
"find().count()": 64.39643700420856, | |
"find().limit(1).count()": 67.86834600567818, | |
"count()": 60.906553000211716, | |
"collection.count()": 62.433887004852295 | |
}, | |
"676000": { | |
"find().count()": 65.59354899823666, | |
"find().limit(1).count()": 64.48230600357056, | |
"count()": 85.78067000210285, | |
"collection.count()": 62.281288996338844 | |
}, | |
"677000": { | |
"find().count()": 61.69483099877834, | |
"find().limit(1).count()": 62.92915199697018, | |
"count()": 61.83868399262428, | |
"collection.count()": 62.369617000222206 | |
}, | |
"678000": { | |
"find().count()": 76.0862890034914, | |
"find().limit(1).count()": 62.4257699996233, | |
"count()": 65.36524400115013, | |
"collection.count()": 66.64016799628735 | |
}, | |
"679000": { | |
"find().count()": 70.61724299192429, | |
"find().limit(1).count()": 64.46998399496078, | |
"count()": 60.88083501160145, | |
"collection.count()": 62.24821299314499 | |
}, | |
"680000": { | |
"find().count()": 61.41466599702835, | |
"find().limit(1).count()": 64.94405999779701, | |
"count()": 60.81816899776459, | |
"collection.count()": 62.55134400725365 | |
}, | |
"681000": { | |
"find().count()": 63.082236006855965, | |
"find().limit(1).count()": 63.061350002884865, | |
"count()": 61.93939000368118, | |
"collection.count()": 63.56778399646282 | |
}, | |
"682000": { | |
"find().count()": 62.15567700564861, | |
"find().limit(1).count()": 63.317555010318756, | |
"count()": 63.28747199475765, | |
"collection.count()": 63.417076990008354 | |
}, | |
"683000": { | |
"find().count()": 61.192044004797935, | |
"find().limit(1).count()": 63.89443700015545, | |
"count()": 62.98018999397755, | |
"collection.count()": 62.04848000407219 | |
}, | |
"684000": { | |
"find().count()": 61.011078998446465, | |
"find().limit(1).count()": 61.60903400182724, | |
"count()": 61.15861600637436, | |
"collection.count()": 62.18597799539566 | |
}, | |
"685000": { | |
"find().count()": 63.945684999227524, | |
"find().limit(1).count()": 64.86599700152874, | |
"count()": 62.38102599978447, | |
"collection.count()": 65.27344401180744 | |
}, | |
"686000": { | |
"find().count()": 62.06709299981594, | |
"find().limit(1).count()": 62.18442000448704, | |
"count()": 61.264645993709564, | |
"collection.count()": 71.66140499711037 | |
}, | |
"687000": { | |
"find().count()": 61.702324002981186, | |
"find().limit(1).count()": 65.03611199557781, | |
"count()": 61.01046501100063, | |
"collection.count()": 64.70703899860382 | |
}, | |
"688000": { | |
"find().count()": 63.81843100488186, | |
"find().limit(1).count()": 61.51290899515152, | |
"count()": 61.43911001086235, | |
"collection.count()": 62.025104001164436 | |
}, | |
"689000": { | |
"find().count()": 61.15546798706055, | |
"find().limit(1).count()": 64.24519200623035, | |
"count()": 62.14449700713158, | |
"collection.count()": 64.10462300479412 | |
}, | |
"690000": { | |
"find().count()": 61.61818300187588, | |
"find().limit(1).count()": 61.168513998389244, | |
"count()": 61.060173004865646, | |
"collection.count()": 64.84085500240326 | |
}, | |
"691000": { | |
"find().count()": 68.22553099691868, | |
"find().limit(1).count()": 61.31732700765133, | |
"count()": 61.51232099533081, | |
"collection.count()": 62.36372199654579 | |
}, | |
"692000": { | |
"find().count()": 63.879207998514175, | |
"find().limit(1).count()": 61.81620600819588, | |
"count()": 61.31801900267601, | |
"collection.count()": 62.31064800918102 | |
}, | |
"693000": { | |
"find().count()": 78.13368199765682, | |
"find().limit(1).count()": 61.74663399159908, | |
"count()": 61.11032100021839, | |
"collection.count()": 62.558809995651245 | |
}, | |
"694000": { | |
"find().count()": 61.34479799866676, | |
"find().limit(1).count()": 61.28504799306393, | |
"count()": 65.52286499738693, | |
"collection.count()": 66.18767699599266 | |
}, | |
"695000": { | |
"find().count()": 61.31453900039196, | |
"find().limit(1).count()": 61.86142399907112, | |
"count()": 63.16007199883461, | |
"collection.count()": 62.31166100502014 | |
}, | |
"696000": { | |
"find().count()": 61.16347600519657, | |
"find().limit(1).count()": 63.20132599771023, | |
"count()": 61.278581008315086, | |
"collection.count()": 63.221432998776436 | |
}, | |
"697000": { | |
"find().count()": 63.97180700302124, | |
"find().limit(1).count()": 61.374113991856575, | |
"count()": 68.55501300096512, | |
"collection.count()": 62.47220300137997 | |
}, | |
"698000": { | |
"find().count()": 61.115856006741524, | |
"find().limit(1).count()": 61.54789300262928, | |
"count()": 61.06119100749493, | |
"collection.count()": 62.87446700036526 | |
}, | |
"699000": { | |
"find().count()": 64.18293799459934, | |
"find().limit(1).count()": 61.105170011520386, | |
"count()": 61.24106100201607, | |
"collection.count()": 62.188316002488136 | |
}, | |
"700000": { | |
"find().count()": 62.54689200222492, | |
"find().limit(1).count()": 61.106867000460625, | |
"count()": 62.678024992346764, | |
"collection.count()": 64.3842000067234 | |
}, | |
"701000": { | |
"find().count()": 66.75310300290585, | |
"find().limit(1).count()": 64.41173699498177, | |
"count()": 64.45090100169182, | |
"collection.count()": 68.22465200722218 | |
}, | |
"702000": { | |
"find().count()": 61.24089899659157, | |
"find().limit(1).count()": 61.02913799881935, | |
"count()": 63.842353999614716, | |
"collection.count()": 64.53359399735928 | |
}, | |
"703000": { | |
"find().count()": 62.99488599598408, | |
"find().limit(1).count()": 61.10683599114418, | |
"count()": 62.6847570091486, | |
"collection.count()": 64.4639790058136 | |
}, | |
"704000": { | |
"find().count()": 61.38478000462055, | |
"find().limit(1).count()": 66.20592999458313, | |
"count()": 61.96205298602581, | |
"collection.count()": 62.25686100125313 | |
}, | |
"705000": { | |
"find().count()": 63.10785199701786, | |
"find().limit(1).count()": 61.713686004281044, | |
"count()": 62.25126101076603, | |
"collection.count()": 62.12389600276947 | |
}, | |
"706000": { | |
"find().count()": 62.84360499680042, | |
"find().limit(1).count()": 65.69656099379063, | |
"count()": 64.70084600150585, | |
"collection.count()": 62.18980400264263 | |
}, | |
"707000": { | |
"find().count()": 61.627589002251625, | |
"find().limit(1).count()": 62.27766300737858, | |
"count()": 71.86508800089359, | |
"collection.count()": 64.05863200128078 | |
}, | |
"708000": { | |
"find().count()": 61.23157700896263, | |
"find().limit(1).count()": 62.92198100686073, | |
"count()": 65.96669100224972, | |
"collection.count()": 62.58803899586201 | |
}, | |
"709000": { | |
"find().count()": 61.16939300298691, | |
"find().limit(1).count()": 71.48094400763512, | |
"count()": 63.77256999909878, | |
"collection.count()": 63.87018300592899 | |
}, | |
"710000": { | |
"find().count()": 62.39077199995518, | |
"find().limit(1).count()": 62.22468899190426, | |
"count()": 64.38730800151825, | |
"collection.count()": 63.692120000720024 | |
}, | |
"711000": { | |
"find().count()": 61.688540995121, | |
"find().limit(1).count()": 65.96326500177383, | |
"count()": 62.60971800982952, | |
"collection.count()": 62.51511099934578 | |
}, | |
"712000": { | |
"find().count()": 64.03986199200153, | |
"find().limit(1).count()": 64.7047780007124, | |
"count()": 62.39919899404049, | |
"collection.count()": 62.30416199564934 | |
}, | |
"713000": { | |
"find().count()": 63.45658300817013, | |
"find().limit(1).count()": 62.637451991438866, | |
"count()": 64.44307899475098, | |
"collection.count()": 64.29187700152397 | |
}, | |
"714000": { | |
"find().count()": 61.32302498817444, | |
"find().limit(1).count()": 62.95883700251579, | |
"count()": 62.26679100096226, | |
"collection.count()": 64.70806799829006 | |
}, | |
"715000": { | |
"find().count()": 63.61642800271511, | |
"find().limit(1).count()": 65.62551300227642, | |
"count()": 62.12431800365448, | |
"collection.count()": 63.75143601000309 | |
}, | |
"716000": { | |
"find().count()": 62.15514899790287, | |
"find().limit(1).count()": 63.13343699276447, | |
"count()": 64.06935299932957, | |
"collection.count()": 62.44542399048805 | |
}, | |
"717000": { | |
"find().count()": 68.12100499868393, | |
"find().limit(1).count()": 329.71659399569035, | |
"count()": 62.41219200193882, | |
"collection.count()": 63.312194004654884 | |
}, | |
"718000": { | |
"find().count()": 64.64557901024818, | |
"find().limit(1).count()": 62.81596899032593, | |
"count()": 69.91399100422859, | |
"collection.count()": 61.76369999349117 | |
}, | |
"719000": { | |
"find().count()": 62.96953999996185, | |
"find().limit(1).count()": 66.1179249882698, | |
"count()": 322.59989100694656, | |
"collection.count()": 65.04518499970436 | |
}, | |
"720000": { | |
"find().count()": 63.50355200469494, | |
"find().limit(1).count()": 64.06609100103378, | |
"count()": 62.64026600122452, | |
"collection.count()": 61.40676499903202 | |
}, | |
"721000": { | |
"find().count()": 61.364601001143456, | |
"find().limit(1).count()": 62.842272996902466, | |
"count()": 63.47985799610615, | |
"collection.count()": 61.34384800493717 | |
}, | |
"722000": { | |
"find().count()": 62.822811007499695, | |
"find().limit(1).count()": 63.01331700384617, | |
"count()": 62.25245499610901, | |
"collection.count()": 62.455879002809525 | |
}, | |
"723000": { | |
"find().count()": 61.45684899389744, | |
"find().limit(1).count()": 62.65851700305939, | |
"count()": 64.2916619926691, | |
"collection.count()": 61.13512000441551 | |
}, | |
"724000": { | |
"find().count()": 61.51988600194454, | |
"find().limit(1).count()": 62.66795900464058, | |
"count()": 65.01668500900269, | |
"collection.count()": 61.10162599384785 | |
}, | |
"725000": { | |
"find().count()": 62.12306000292301, | |
"find().limit(1).count()": 62.60942900180817, | |
"count()": 65.02875100076199, | |
"collection.count()": 61.14494600892067 | |
}, | |
"726000": { | |
"find().count()": 63.85988399386406, | |
"find().limit(1).count()": 66.788660004735, | |
"count()": 61.007092997431755, | |
"collection.count()": 63.2481340020895 | |
}, | |
"727000": { | |
"find().count()": 61.9798239916563, | |
"find().limit(1).count()": 63.94074200093746, | |
"count()": 62.82880599796772, | |
"collection.count()": 61.40179800987244 | |
}, | |
"728000": { | |
"find().count()": 63.070262998342514, | |
"find().limit(1).count()": 63.940426006913185, | |
"count()": 61.33170299232006, | |
"collection.count()": 60.84500199556351 | |
}, | |
"729000": { | |
"find().count()": 62.42994400858879, | |
"find().limit(1).count()": 65.13555699586868, | |
"count()": 66.56024999916553, | |
"collection.count()": 61.55135598778725 | |
}, | |
"730000": { | |
"find().count()": 61.48565100133419, | |
"find().limit(1).count()": 63.69329001009464, | |
"count()": 67.47567699849606, | |
"collection.count()": 63.289274990558624 | |
}, | |
"731000": { | |
"find().count()": 61.43128500878811, | |
"find().limit(1).count()": 62.713443994522095, | |
"count()": 61.03211098909378, | |
"collection.count()": 61.13579399883747 | |
}, | |
"732000": { | |
"find().count()": 67.05399100482464, | |
"find().limit(1).count()": 62.67535799741745, | |
"count()": 61.1058139950037, | |
"collection.count()": 61.143693998456 | |
}, | |
"733000": { | |
"find().count()": 62.15286299586296, | |
"find().limit(1).count()": 61.38677200675011, | |
"count()": 62.20337000489235, | |
"collection.count()": 61.36665800213814 | |
}, | |
"734000": { | |
"find().count()": 62.96101500093937, | |
"find().limit(1).count()": 61.08885999023914, | |
"count()": 61.969654992222786, | |
"collection.count()": 60.84751500189304 | |
}, | |
"735000": { | |
"find().count()": 61.65313000977039, | |
"find().limit(1).count()": 60.92086699604988, | |
"count()": 61.265928998589516, | |
"collection.count()": 61.903391003608704 | |
}, | |
"736000": { | |
"find().count()": 61.38997399806976, | |
"find().limit(1).count()": 61.16518799960613, | |
"count()": 61.64818899333477, | |
"collection.count()": 62.21719899773598 | |
}, | |
"737000": { | |
"find().count()": 61.688225001096725, | |
"find().limit(1).count()": 61.71937198936939, | |
"count()": 61.93217299878597, | |
"collection.count()": 61.19541800022125 | |
}, | |
"738000": { | |
"find().count()": 63.62912701070309, | |
"find().limit(1).count()": 61.55178500711918, | |
"count()": 66.02065299451351, | |
"collection.count()": 61.69797699153423 | |
}, | |
"739000": { | |
"find().count()": 62.36575201153755, | |
"find().limit(1).count()": 61.96628299355507, | |
"count()": 61.64931100606918, | |
"collection.count()": 61.16968700289726 | |
}, | |
"740000": { | |
"find().count()": 63.199005007743835, | |
"find().limit(1).count()": 61.46011300384998, | |
"count()": 61.1570769995451, | |
"collection.count()": 61.29866801202297 | |
}, | |
"741000": { | |
"find().count()": 63.36777600646019, | |
"find().limit(1).count()": 64.57526399195194, | |
"count()": 74.59464798867702, | |
"collection.count()": 62.8712719976902 | |
}, | |
"742000": { | |
"find().count()": 63.969476997852325, | |
"find().limit(1).count()": 63.537743002176285, | |
"count()": 61.45778000354767, | |
"collection.count()": 61.312875002622604 | |
}, | |
"743000": { | |
"find().count()": 63.14683900773525, | |
"find().limit(1).count()": 61.20593500137329, | |
"count()": 61.89819800853729, | |
"collection.count()": 61.73133400082588 | |
}, | |
"744000": { | |
"find().count()": 66.4504359960556, | |
"find().limit(1).count()": 61.399740010499954, | |
"count()": 62.48353800177574, | |
"collection.count()": 62.8150279968977 | |
}, | |
"745000": { | |
"find().count()": 63.17492799460888, | |
"find().limit(1).count()": 64.07508799433708, | |
"count()": 61.28218001127243, | |
"collection.count()": 64.80210700631142 | |
}, | |
"746000": { | |
"find().count()": 62.05917799472809, | |
"find().limit(1).count()": 61.673176005482674, | |
"count()": 63.12544798851013, | |
"collection.count()": 64.75876098871231 | |
}, | |
"747000": { | |
"find().count()": 64.62623399496078, | |
"find().limit(1).count()": 61.316705003380775, | |
"count()": 61.509963005781174, | |
"collection.count()": 62.08441498875618 | |
}, | |
"748000": { | |
"find().count()": 62.51622898876667, | |
"find().limit(1).count()": 68.30765099823475, | |
"count()": 61.94684199988842, | |
"collection.count()": 62.28990499675274 | |
}, | |
"749000": { | |
"find().count()": 64.20178399980068, | |
"find().limit(1).count()": 63.3254339993, | |
"count()": 61.19200499355793, | |
"collection.count()": 62.205448001623154 | |
}, | |
"750000": { | |
"find().count()": 62.48998899757862, | |
"find().limit(1).count()": 61.60259100794792, | |
"count()": 62.7780140042305, | |
"collection.count()": 62.18173399567604 | |
}, | |
"751000": { | |
"find().count()": 62.33681400120258, | |
"find().limit(1).count()": 61.18959400057793, | |
"count()": 66.44399499893188, | |
"collection.count()": 65.89727100729942 | |
}, | |
"752000": { | |
"find().count()": 69.18017600476742, | |
"find().limit(1).count()": 63.46654300391674, | |
"count()": 62.40058299899101, | |
"collection.count()": 65.54235100746155 | |
}, | |
"753000": { | |
"find().count()": 62.830981999635696, | |
"find().limit(1).count()": 61.622492000460625, | |
"count()": 63.615432009100914, | |
"collection.count()": 65.60946901142597 | |
}, | |
"754000": { | |
"find().count()": 62.500712007284164, | |
"find().limit(1).count()": 64.86157800257206, | |
"count()": 62.849575996398926, | |
"collection.count()": 62.42265300452709 | |
}, | |
"755000": { | |
"find().count()": 62.3813039958477, | |
"find().limit(1).count()": 63.625221997499466, | |
"count()": 84.8185900002718, | |
"collection.count()": 62.462329000234604 | |
}, | |
"756000": { | |
"find().count()": 65.24157400429249, | |
"find().limit(1).count()": 67.61980898678303, | |
"count()": 63.47174499928951, | |
"collection.count()": 62.789114996790886 | |
}, | |
"757000": { | |
"find().count()": 62.326736986637115, | |
"find().limit(1).count()": 64.89416599273682, | |
"count()": 62.973806008696556, | |
"collection.count()": 62.66176201403141 | |
}, | |
"758000": { | |
"find().count()": 62.450700998306274, | |
"find().limit(1).count()": 64.25237299501896, | |
"count()": 62.76599200069904, | |
"collection.count()": 62.35064400732517 | |
}, | |
"759000": { | |
"find().count()": 65.18869899213314, | |
"find().limit(1).count()": 61.00826899707317, | |
"count()": 64.64768299460411, | |
"collection.count()": 65.73312899470329 | |
}, | |
"760000": { | |
"find().count()": 63.09160199761391, | |
"find().limit(1).count()": 61.66679801046848, | |
"count()": 75.56884600222111, | |
"collection.count()": 62.32634399831295 | |
}, | |
"761000": { | |
"find().count()": 64.73752799630165, | |
"find().limit(1).count()": 61.453848004341125, | |
"count()": 62.304810002446175, | |
"collection.count()": 64.78879900276661 | |
}, | |
"762000": { | |
"find().count()": 84.80017399787903, | |
"find().limit(1).count()": 61.21034599840641, | |
"count()": 65.30792099237442, | |
"collection.count()": 62.31120000779629 | |
}, | |
"763000": { | |
"find().count()": 62.53143799304962, | |
"find().limit(1).count()": 61.101538002491, | |
"count()": 62.52563700079918, | |
"collection.count()": 62.272210001945496 | |
}, | |
"764000": { | |
"find().count()": 62.33260598778725, | |
"find().limit(1).count()": 61.304298996925354, | |
"count()": 63.16268499195576, | |
"collection.count()": 65.32910799980164 | |
}, | |
"765000": { | |
"find().count()": 64.63079999387264, | |
"find().limit(1).count()": 62.28897699713707, | |
"count()": 64.35908100008965, | |
"collection.count()": 62.29358400404453 | |
}, | |
"766000": { | |
"find().count()": 65.1190769970417, | |
"find().limit(1).count()": 61.16482399404049, | |
"count()": 63.296235010027885, | |
"collection.count()": 62.34476700425148 | |
}, | |
"767000": { | |
"find().count()": 63.599304005503654, | |
"find().limit(1).count()": 63.621558994054794, | |
"count()": 62.54467299580574, | |
"collection.count()": 62.353896006941795 | |
}, | |
"768000": { | |
"find().count()": 61.94675800204277, | |
"find().limit(1).count()": 61.580971986055374, | |
"count()": 64.51163899898529, | |
"collection.count()": 64.89316900074482 | |
}, | |
"769000": { | |
"find().count()": 61.242585986852646, | |
"find().limit(1).count()": 61.33662700653076, | |
"count()": 62.50856700539589, | |
"collection.count()": 61.97342899441719 | |
}, | |
"770000": { | |
"find().count()": 61.090737000107765, | |
"find().limit(1).count()": 61.63425999879837, | |
"count()": 62.2975879907608, | |
"collection.count()": 63.56821300089359 | |
}, | |
"771000": { | |
"find().count()": 63.82161699235439, | |
"find().limit(1).count()": 61.293088003993034, | |
"count()": 62.18672700226307, | |
"collection.count()": 63.88779400289059 | |
}, | |
"772000": { | |
"find().count()": 61.38458399474621, | |
"find().limit(1).count()": 66.57386900484562, | |
"count()": 62.66006800532341, | |
"collection.count()": 62.37754200398922 | |
}, | |
"773000": { | |
"find().count()": 61.555143013596535, | |
"find().limit(1).count()": 61.04180799424648, | |
"count()": 66.85088400542736, | |
"collection.count()": 63.497828990221024 | |
}, | |
"774000": { | |
"find().count()": 61.20306698977947, | |
"find().limit(1).count()": 61.70398600399494, | |
"count()": 68.59634400904179, | |
"collection.count()": 64.41414999961853 | |
}, | |
"775000": { | |
"find().count()": 61.28345100581646, | |
"find().limit(1).count()": 61.18189500272274, | |
"count()": 62.905609995126724, | |
"collection.count()": 62.28328800201416 | |
}, | |
"776000": { | |
"find().count()": 61.5060880035162, | |
"find().limit(1).count()": 62.07958200573921, | |
"count()": 61.00321198999882, | |
"collection.count()": 64.52608999609947 | |
}, | |
"777000": { | |
"find().count()": 62.045570001006126, | |
"find().limit(1).count()": 66.21515698730946, | |
"count()": 63.15522000193596, | |
"collection.count()": 64.10191199183464 | |
}, | |
"778000": { | |
"find().count()": 63.40100200474262, | |
"find().limit(1).count()": 60.937217995524406, | |
"count()": 61.35528899729252, | |
"collection.count()": 64.84724698960781 | |
}, | |
"779000": { | |
"find().count()": 83.17744098603725, | |
"find().limit(1).count()": 61.15937200188637, | |
"count()": 61.23129199445248, | |
"collection.count()": 62.08345599472523 | |
}, | |
"780000": { | |
"find().count()": 61.49940100312233, | |
"find().limit(1).count()": 61.161805003881454, | |
"count()": 61.30299700796604, | |
"collection.count()": 62.33839999139309 | |
}, | |
"781000": { | |
"find().count()": 61.54501500725746, | |
"find().limit(1).count()": 63.08143098652363, | |
"count()": 61.05036799609661, | |
"collection.count()": 62.489154011011124 | |
}, | |
"782000": { | |
"find().count()": 64.44269099831581, | |
"find().limit(1).count()": 64.20777499675751, | |
"count()": 63.58005200326443, | |
"collection.count()": 62.39485900104046 | |
}, | |
"783000": { | |
"find().count()": 64.44164599478245, | |
"find().limit(1).count()": 62.516433000564575, | |
"count()": 62.369103997945786, | |
"collection.count()": 62.78583100438118 | |
}, | |
"784000": { | |
"find().count()": 63.43640799820423, | |
"find().limit(1).count()": 64.91603499650955, | |
"count()": 61.525864005088806, | |
"collection.count()": 63.93208199739456 | |
}, | |
"785000": { | |
"find().count()": 61.42992700636387, | |
"find().limit(1).count()": 66.29257899522781, | |
"count()": 61.40036299824715, | |
"collection.count()": 62.59024299681187 | |
}, | |
"786000": { | |
"find().count()": 63.277910992503166, | |
"find().limit(1).count()": 61.56324899196625, | |
"count()": 61.678035005927086, | |
"collection.count()": 67.20091100037098 | |
}, | |
"787000": { | |
"find().count()": 61.76874199509621, | |
"find().limit(1).count()": 63.14716298878193, | |
"count()": 61.04066599905491, | |
"collection.count()": 62.990110993385315 | |
}, | |
"788000": { | |
"find().count()": 63.33953799307346, | |
"find().limit(1).count()": 64.22063198685646, | |
"count()": 65.22705599665642, | |
"collection.count()": 65.00593899190426 | |
}, | |
"789000": { | |
"find().count()": 61.58867000043392, | |
"find().limit(1).count()": 64.48723900318146, | |
"count()": 61.99357299506664, | |
"collection.count()": 62.39888100326061 | |
}, | |
"790000": { | |
"find().count()": 64.83668200671673, | |
"find().limit(1).count()": 65.4796549975872, | |
"count()": 61.58438999950886, | |
"collection.count()": 63.24297599494457 | |
}, | |
"791000": { | |
"find().count()": 61.21202400326729, | |
"find().limit(1).count()": 61.06549400091171, | |
"count()": 61.5295490026474, | |
"collection.count()": 62.69812600314617 | |
}, | |
"792000": { | |
"find().count()": 61.2109149992466, | |
"find().limit(1).count()": 64.9291699975729, | |
"count()": 62.970576003193855, | |
"collection.count()": 62.3780650049448 | |
}, | |
"793000": { | |
"find().count()": 61.30883200466633, | |
"find().limit(1).count()": 66.42305000126362, | |
"count()": 62.58661799132824, | |
"collection.count()": 62.370289996266365 | |
}, | |
"794000": { | |
"find().count()": 62.05697900056839, | |
"find().limit(1).count()": 62.38869199156761, | |
"count()": 62.20620600879192, | |
"collection.count()": 62.26671800017357 | |
}, | |
"795000": { | |
"find().count()": 92.70516599714756, | |
"find().limit(1).count()": 65.28427198529243, | |
"count()": 61.92783899605274, | |
"collection.count()": 63.70203299820423 | |
}, | |
"796000": { | |
"find().count()": 66.32441399991512, | |
"find().limit(1).count()": 63.83755500614643, | |
"count()": 63.502856999635696, | |
"collection.count()": 62.28805500268936 | |
}, | |
"797000": { | |
"find().count()": 62.36445999145508, | |
"find().limit(1).count()": 62.466837003827095, | |
"count()": 67.68095400929451, | |
"collection.count()": 67.14643600583076 | |
}, | |
"798000": { | |
"find().count()": 62.416570991277695, | |
"find().limit(1).count()": 61.70218899846077, | |
"count()": 61.28498300909996, | |
"collection.count()": 61.969903990626335 | |
}, | |
"799000": { | |
"find().count()": 64.10844001173973, | |
"find().limit(1).count()": 65.73002798855305, | |
"count()": 61.70085100829601, | |
"collection.count()": 62.22579899430275 | |
}, | |
"800000": { | |
"find().count()": 63.26120600104332, | |
"find().limit(1).count()": 61.71504199504852, | |
"count()": 61.29784499108791, | |
"collection.count()": 62.291444003582 | |
}, | |
"801000": { | |
"find().count()": 63.86554600298405, | |
"find().limit(1).count()": 63.129025995731354, | |
"count()": 63.6963319927454, | |
"collection.count()": 63.33915999531746 | |
}, | |
"802000": { | |
"find().count()": 63.52268399298191, | |
"find().limit(1).count()": 61.184137001633644, | |
"count()": 65.93190900981426, | |
"collection.count()": 68.98809298872948 | |
}, | |
"803000": { | |
"find().count()": 70.6811999976635, | |
"find().limit(1).count()": 62.23079998791218, | |
"count()": 61.52070499956608, | |
"collection.count()": 64.20920699834824 | |
}, | |
"804000": { | |
"find().count()": 67.27796399593353, | |
"find().limit(1).count()": 61.462410002946854, | |
"count()": 62.98758099973202, | |
"collection.count()": 72.0935399979353 | |
}, | |
"805000": { | |
"find().count()": 62.42793199419975, | |
"find().limit(1).count()": 326.8638840019703, | |
"count()": 67.48838700354099, | |
"collection.count()": 61.08568499982357 | |
}, | |
"806000": { | |
"find().count()": 62.47412499785423, | |
"find().limit(1).count()": 63.68175099790096, | |
"count()": 63.548284992575645, | |
"collection.count()": 63.438042998313904 | |
}, | |
"807000": { | |
"find().count()": 64.17605900764465, | |
"find().limit(1).count()": 61.07063400745392, | |
"count()": 62.61628699302673, | |
"collection.count()": 61.04626300930977 | |
}, | |
"808000": { | |
"find().count()": 64.66701799631119, | |
"find().limit(1).count()": 61.438054010272026, | |
"count()": 63.4009879976511, | |
"collection.count()": 60.95626398921013 | |
}, | |
"809000": { | |
"find().count()": 64.14007100462914, | |
"find().limit(1).count()": 61.67586100101471, | |
"count()": 64.25435300171375, | |
"collection.count()": 64.31821599602699 | |
}, | |
"810000": { | |
"find().count()": 63.36937099695206, | |
"find().limit(1).count()": 65.02925600111485, | |
"count()": 65.94310200214386, | |
"collection.count()": 84.11915899813175 | |
}, | |
"811000": { | |
"find().count()": 63.28160300850868, | |
"find().limit(1).count()": 60.920304000377655, | |
"count()": 63.20989300310612, | |
"collection.count()": 61.352212995290756 | |
}, | |
"812000": { | |
"find().count()": 62.37701100111008, | |
"find().limit(1).count()": 61.25019699335098, | |
"count()": 62.19310000538826, | |
"collection.count()": 61.31040500104427 | |
}, | |
"813000": { | |
"find().count()": 62.588448002934456, | |
"find().limit(1).count()": 63.004978001117706, | |
"count()": 67.18730299174786, | |
"collection.count()": 61.202323004603386 | |
}, | |
"814000": { | |
"find().count()": 63.22743700444698, | |
"find().limit(1).count()": 61.20576100051403, | |
"count()": 62.71729800105095, | |
"collection.count()": 61.02319699525833 | |
}, | |
"815000": { | |
"find().count()": 62.937468990683556, | |
"find().limit(1).count()": 63.09297600388527, | |
"count()": 65.95811998844147, | |
"collection.count()": 61.083272993564606 | |
}, | |
"816000": { | |
"find().count()": 66.28438200056553, | |
"find().limit(1).count()": 61.948493003845215, | |
"count()": 62.68751800060272, | |
"collection.count()": 61.0526310056448 | |
}, | |
"817000": { | |
"find().count()": 64.5462189912796, | |
"find().limit(1).count()": 61.49845300614834, | |
"count()": 67.4764170050621, | |
"collection.count()": 61.35689899325371 | |
}, | |
"818000": { | |
"find().count()": 62.27268999814987, | |
"find().limit(1).count()": 61.23626199364662, | |
"count()": 62.04645599424839, | |
"collection.count()": 62.402829989790916 | |
}, | |
"819000": { | |
"find().count()": 62.863586992025375, | |
"find().limit(1).count()": 61.13451200723648, | |
"count()": 62.24284200370312, | |
"collection.count()": 61.12110900878906 | |
}, | |
"820000": { | |
"find().count()": 62.3354140073061, | |
"find().limit(1).count()": 61.14642299711704, | |
"count()": 62.1514899879694, | |
"collection.count()": 61.063202008605 | |
}, | |
"821000": { | |
"find().count()": 62.734842002391815, | |
"find().limit(1).count()": 62.85842600464821, | |
"count()": 62.36368200182915, | |
"collection.count()": 61.39169600605965 | |
}, | |
"822000": { | |
"find().count()": 62.164775997400284, | |
"find().limit(1).count()": 61.070259004831314, | |
"count()": 62.75830300152302, | |
"collection.count()": 66.09652900695801 | |
}, | |
"823000": { | |
"find().count()": 62.31215600669384, | |
"find().limit(1).count()": 61.25934699177742, | |
"count()": 62.5112340003252, | |
"collection.count()": 61.368425995111465 | |
}, | |
"824000": { | |
"find().count()": 61.47778399288654, | |
"find().limit(1).count()": 65.44874399900436, | |
"count()": 67.13201899826527, | |
"collection.count()": 60.91408200562 | |
}, | |
"825000": { | |
"find().count()": 61.716334000229836, | |
"find().limit(1).count()": 63.084270998835564, | |
"count()": 64.93419699370861, | |
"collection.count()": 62.58917200565338 | |
}, | |
"826000": { | |
"find().count()": 61.37306199967861, | |
"find().limit(1).count()": 64.08094500005245, | |
"count()": 62.80403399467468, | |
"collection.count()": 61.375554993748665 | |
}, | |
"827000": { | |
"find().count()": 64.11226999759674, | |
"find().limit(1).count()": 61.215320989489555, | |
"count()": 62.013534009456635, | |
"collection.count()": 61.173794999718666 | |
}, | |
"828000": { | |
"find().count()": 61.26878499984741, | |
"find().limit(1).count()": 64.24090899527073, | |
"count()": 62.02889999747276, | |
"collection.count()": 64.79356199502945 | |
}, | |
"829000": { | |
"find().count()": 62.160012006759644, | |
"find().limit(1).count()": 61.332424998283386, | |
"count()": 61.67899399995804, | |
"collection.count()": 61.051421999931335 | |
}, | |
"830000": { | |
"find().count()": 63.74926699697971, | |
"find().limit(1).count()": 62.40004800260067, | |
"count()": 62.56071199476719, | |
"collection.count()": 62.458175003528595 | |
}, | |
"831000": { | |
"find().count()": 65.89898799359798, | |
"find().limit(1).count()": 61.14170399308205, | |
"count()": 61.220225006341934, | |
"collection.count()": 61.089877009391785 | |
}, | |
"832000": { | |
"find().count()": 61.30892999470234, | |
"find().limit(1).count()": 61.325449004769325, | |
"count()": 60.798012003302574, | |
"collection.count()": 60.921056002378464 | |
}, | |
"833000": { | |
"find().count()": 62.527900993824005, | |
"find().limit(1).count()": 64.97649499773979, | |
"count()": 61.687707990407944, | |
"collection.count()": 61.09618499875069 | |
}, | |
"834000": { | |
"find().count()": 61.07335498929024, | |
"find().limit(1).count()": 64.37848599255085, | |
"count()": 63.374012008309364, | |
"collection.count()": 61.706738993525505 | |
}, | |
"835000": { | |
"find().count()": 60.88842299580574, | |
"find().limit(1).count()": 67.91329500079155, | |
"count()": 62.800395995378494, | |
"collection.count()": 62.34382100403309 | |
}, | |
"836000": { | |
"find().count()": 61.47995099425316, | |
"find().limit(1).count()": 65.22369700670242, | |
"count()": 62.74493499100208, | |
"collection.count()": 60.9308709949255 | |
}, | |
"837000": { | |
"find().count()": 64.03958900272846, | |
"find().limit(1).count()": 61.99135400354862, | |
"count()": 61.08090101182461, | |
"collection.count()": 61.66437900066376 | |
}, | |
"838000": { | |
"find().count()": 61.26816299557686, | |
"find().limit(1).count()": 61.305739000439644, | |
"count()": 64.29922299087048, | |
"collection.count()": 63.02532801032066 | |
}, | |
"839000": { | |
"find().count()": 64.25971099734306, | |
"find().limit(1).count()": 61.212920010089874, | |
"count()": 61.23183700442314, | |
"collection.count()": 61.21653799712658 | |
}, | |
"840000": { | |
"find().count()": 61.27927300333977, | |
"find().limit(1).count()": 64.66415399312973, | |
"count()": 64.30442899465561, | |
"collection.count()": 61.4682579934597 | |
}, | |
"841000": { | |
"find().count()": 61.44693899154663, | |
"find().limit(1).count()": 61.56527300179005, | |
"count()": 63.123182997107506, | |
"collection.count()": 61.32148599624634 | |
}, | |
"842000": { | |
"find().count()": 63.74751600623131, | |
"find().limit(1).count()": 63.47420299053192, | |
"count()": 67.37705400586128, | |
"collection.count()": 63.993406012654305 | |
}, | |
"843000": { | |
"find().count()": 62.321206003427505, | |
"find().limit(1).count()": 64.52264299988747, | |
"count()": 61.615189999341965, | |
"collection.count()": 65.11597199738026 | |
}, | |
"844000": { | |
"find().count()": 62.091086998581886, | |
"find().limit(1).count()": 61.27387399971485, | |
"count()": 61.482130005955696, | |
"collection.count()": 61.127769991755486 | |
}, | |
"845000": { | |
"find().count()": 64.68532900512218, | |
"find().limit(1).count()": 61.64180800318718, | |
"count()": 61.89073200523853, | |
"collection.count()": 63.56317999958992 | |
}, | |
"846000": { | |
"find().count()": 61.42365200817585, | |
"find().limit(1).count()": 62.97792799770832, | |
"count()": 62.50524801015854, | |
"collection.count()": 61.11055099964142 | |
}, | |
"847000": { | |
"find().count()": 62.85325700044632, | |
"find().limit(1).count()": 61.45405699312687, | |
"count()": 61.5111840069294, | |
"collection.count()": 60.901194989681244 | |
}, | |
"848000": { | |
"find().count()": 64.09879299998283, | |
"find().limit(1).count()": 62.952901005744934, | |
"count()": 61.42476299405098, | |
"collection.count()": 62.161991998553276 | |
}, | |
"849000": { | |
"find().count()": 61.508374989032745, | |
"find().limit(1).count()": 61.76233598589897, | |
"count()": 61.410949006676674, | |
"collection.count()": 66.69998998939991 | |
}, | |
"850000": { | |
"find().count()": 67.09541699290276, | |
"find().limit(1).count()": 61.423712000250816, | |
"count()": 64.24854299426079, | |
"collection.count()": 62.52910800278187 | |
}, | |
"851000": { | |
"find().count()": 65.91854199767113, | |
"find().limit(1).count()": 61.15258400142193, | |
"count()": 61.069674998521805, | |
"collection.count()": 61.319004997611046 | |
}, | |
"852000": { | |
"find().count()": 61.437470987439156, | |
"find().limit(1).count()": 64.056410998106, | |
"count()": 61.23962800204754, | |
"collection.count()": 61.05632299184799 | |
}, | |
"853000": { | |
"find().count()": 63.61768300831318, | |
"find().limit(1).count()": 62.18798899650574, | |
"count()": 61.56242600083351, | |
"collection.count()": 63.85827800631523 | |
}, | |
"854000": { | |
"find().count()": 71.40162700414658, | |
"find().limit(1).count()": 61.151701003313065, | |
"count()": 62.353709012269974, | |
"collection.count()": 61.596332997083664 | |
}, | |
"855000": { | |
"find().count()": 61.06827199459076, | |
"find().limit(1).count()": 61.527379006147385, | |
"count()": 79.66403000056744, | |
"collection.count()": 61.27255900204182 | |
}, | |
"856000": { | |
"find().count()": 61.36724899709225, | |
"find().limit(1).count()": 65.2848130017519, | |
"count()": 63.08953000605106, | |
"collection.count()": 63.47744099795818 | |
}, | |
"857000": { | |
"find().count()": 62.0336090028286, | |
"find().limit(1).count()": 61.05448600649834, | |
"count()": 66.13791701197624, | |
"collection.count()": 61.34111000597477 | |
}, | |
"858000": { | |
"find().count()": 70.45228900015354, | |
"find().limit(1).count()": 61.64717899262905, | |
"count()": 63.352622002363205, | |
"collection.count()": 61.09704600274563 | |
}, | |
"859000": { | |
"find().count()": 68.01905399560928, | |
"find().limit(1).count()": 61.19258999824524, | |
"count()": 61.058278009295464, | |
"collection.count()": 63.94214700162411 | |
}, | |
"860000": { | |
"find().count()": 61.57454299926758, | |
"find().limit(1).count()": 62.97409500181675, | |
"count()": 61.336620002985, | |
"collection.count()": 60.94082500040531 | |
}, | |
"861000": { | |
"find().count()": 63.553287997841835, | |
"find().limit(1).count()": 63.29002599418163, | |
"count()": 65.12095400691032, | |
"collection.count()": 62.02623499929905 | |
}, | |
"862000": { | |
"find().count()": 66.15793199837208, | |
"find().limit(1).count()": 61.8692429959774, | |
"count()": 61.64707098901272, | |
"collection.count()": 61.34482499957085 | |
}, | |
"863000": { | |
"find().count()": 66.85205799341202, | |
"find().limit(1).count()": 63.8080630004406, | |
"count()": 61.85511499643326, | |
"collection.count()": 65.65066100656986 | |
}, | |
"864000": { | |
"find().count()": 66.46659499406815, | |
"find().limit(1).count()": 63.73055699467659, | |
"count()": 61.14783599972725, | |
"collection.count()": 61.537246003746986 | |
}, | |
"865000": { | |
"find().count()": 63.43404100835323, | |
"find().limit(1).count()": 62.693230003118515, | |
"count()": 65.638263002038, | |
"collection.count()": 62.69071400165558 | |
}, | |
"866000": { | |
"find().count()": 61.67653000354767, | |
"find().limit(1).count()": 62.86385099589825, | |
"count()": 62.82131101191044, | |
"collection.count()": 61.19032798707485 | |
}, | |
"867000": { | |
"find().count()": 61.420478999614716, | |
"find().limit(1).count()": 61.96498200297356, | |
"count()": 62.29850499331951, | |
"collection.count()": 62.81064800918102 | |
}, | |
"868000": { | |
"find().count()": 60.988647013902664, | |
"find().limit(1).count()": 61.208926007151604, | |
"count()": 61.565602004528046, | |
"collection.count()": 61.16414400935173 | |
}, | |
"869000": { | |
"find().count()": 63.08942300081253, | |
"find().limit(1).count()": 61.03675499558449, | |
"count()": 61.35845500230789, | |
"collection.count()": 61.13160599768162 | |
}, | |
"870000": { | |
"find().count()": 61.374287992715836, | |
"find().limit(1).count()": 69.95420201122761, | |
"count()": 61.23448100686073, | |
"collection.count()": 67.47429299354553 | |
}, | |
"871000": { | |
"find().count()": 63.549979999661446, | |
"find().limit(1).count()": 61.02447900176048, | |
"count()": 61.76681099832058, | |
"collection.count()": 61.40307800471783 | |
}, | |
"872000": { | |
"find().count()": 61.217948004603386, | |
"find().limit(1).count()": 61.42927199602127, | |
"count()": 61.153750002384186, | |
"collection.count()": 63.06833499670029 | |
}, | |
"873000": { | |
"find().count()": 61.3077379912138, | |
"find().limit(1).count()": 61.442799001932144, | |
"count()": 61.29526500403881, | |
"collection.count()": 60.906112000346184 | |
}, | |
"874000": { | |
"find().count()": 64.9121740013361, | |
"find().limit(1).count()": 74.51148499548435, | |
"count()": 61.08264000713825, | |
"collection.count()": 62.77311000227928 | |
}, | |
"875000": { | |
"find().count()": 61.595666006207466, | |
"find().limit(1).count()": 65.05186499655247, | |
"count()": 61.69823199510574, | |
"collection.count()": 61.34102998673916 | |
}, | |
"876000": { | |
"find().count()": 61.705962002277374, | |
"find().limit(1).count()": 66.92661099135876, | |
"count()": 62.06120599806309, | |
"collection.count()": 61.20307299494743 | |
}, | |
"877000": { | |
"find().count()": 66.64944699406624, | |
"find().limit(1).count()": 63.53402501344681, | |
"count()": 62.02404399216175, | |
"collection.count()": 61.08291399478912 | |
}, | |
"878000": { | |
"find().count()": 66.48998199403286, | |
"find().limit(1).count()": 61.34571799635887, | |
"count()": 65.45744900405407, | |
"collection.count()": 64.15544500946999 | |
}, | |
"879000": { | |
"find().count()": 66.93490299582481, | |
"find().limit(1).count()": 64.19514401257038, | |
"count()": 61.69512198865414, | |
"collection.count()": 62.39420899748802 | |
}, | |
"880000": { | |
"find().count()": 66.90690399706364, | |
"find().limit(1).count()": 62.671074002981186, | |
"count()": 61.13143999874592, | |
"collection.count()": 63.208190992474556 | |
}, | |
"881000": { | |
"find().count()": 63.085120007395744, | |
"find().limit(1).count()": 63.82461400330067, | |
"count()": 62.14351199567318, | |
"collection.count()": 61.072227999567986 | |
}, | |
"882000": { | |
"find().count()": 64.95355500280857, | |
"find().limit(1).count()": 63.95216999948025, | |
"count()": 61.06345799565315, | |
"collection.count()": 61.20713400840759 | |
}, | |
"883000": { | |
"find().count()": 64.51327899098396, | |
"find().limit(1).count()": 61.29032999277115, | |
"count()": 62.369613006711006, | |
"collection.count()": 63.309651002287865 | |
}, | |
"884000": { | |
"find().count()": 62.90295000374317, | |
"find().limit(1).count()": 61.44378599524498, | |
"count()": 63.547349005937576, | |
"collection.count()": 60.95156700909138 | |
}, | |
"885000": { | |
"find().count()": 63.12723399698734, | |
"find().limit(1).count()": 61.92305201292038, | |
"count()": 62.40916100144386, | |
"collection.count()": 61.33450798690319 | |
}, | |
"886000": { | |
"find().count()": 63.91064999997616, | |
"find().limit(1).count()": 62.022119000554085, | |
"count()": 62.56400300562382, | |
"collection.count()": 61.63120099902153 | |
}, | |
"887000": { | |
"find().count()": 62.27733299136162, | |
"find().limit(1).count()": 61.4831739962101, | |
"count()": 63.67252600193024, | |
"collection.count()": 63.47147299349308 | |
}, | |
"888000": { | |
"find().count()": 62.38076899945736, | |
"find().limit(1).count()": 64.20530499517918, | |
"count()": 65.87541799247265, | |
"collection.count()": 61.45637600123882 | |
}, | |
"889000": { | |
"find().count()": 64.06147100031376, | |
"find().limit(1).count()": 61.33858500421047, | |
"count()": 62.479593992233276, | |
"collection.count()": 61.00638699531555 | |
}, | |
"890000": { | |
"find().count()": 62.26350501179695, | |
"find().limit(1).count()": 61.3235640078783, | |
"count()": 62.67062199115753, | |
"collection.count()": 64.04935899376869 | |
}, | |
"891000": { | |
"find().count()": 62.7253869920969, | |
"find().limit(1).count()": 61.2647510021925, | |
"count()": 68.22117100656033, | |
"collection.count()": 61.33927398920059 | |
}, | |
"892000": { | |
"find().count()": 65.23448000848293, | |
"find().limit(1).count()": 64.28968599438667, | |
"count()": 64.61346399784088, | |
"collection.count()": 61.3286210000515 | |
}, | |
"893000": { | |
"find().count()": 65.81011700630188, | |
"find().limit(1).count()": 64.62857699394226, | |
"count()": 62.73056799173355, | |
"collection.count()": 61.657644003629684 | |
}, | |
"894000": { | |
"find().count()": 64.34433899819851, | |
"find().limit(1).count()": 62.24947299063206, | |
"count()": 62.7909509986639, | |
"collection.count()": 61.74109199643135 | |
}, | |
"895000": { | |
"find().count()": 62.31867100298405, | |
"find().limit(1).count()": 62.229995012283325, | |
"count()": 66.64996099472046, | |
"collection.count()": 63.346752002835274 | |
}, | |
"896000": { | |
"find().count()": 63.44464099407196, | |
"find().limit(1).count()": 64.94688899815083, | |
"count()": 62.09037899971008, | |
"collection.count()": 61.33404798805714 | |
}, | |
"897000": { | |
"find().count()": 66.35858000814915, | |
"find().limit(1).count()": 62.33532099425793, | |
"count()": 62.76696100831032, | |
"collection.count()": 61.103477999567986 | |
}, | |
"898000": { | |
"find().count()": 70.81592600047588, | |
"find().limit(1).count()": 62.115380987524986, | |
"count()": 62.31012700498104, | |
"collection.count()": 61.346165999770164 | |
}, | |
"899000": { | |
"find().count()": 66.06870299577713, | |
"find().limit(1).count()": 62.102608010172844, | |
"count()": 62.30866399407387, | |
"collection.count()": 62.62501899898052 | |
}, | |
"900000": { | |
"find().count()": 62.3120109885931, | |
"find().limit(1).count()": 67.08656400442123, | |
"count()": 62.93747700750828, | |
"collection.count()": 61.59885199368 | |
}, | |
"901000": { | |
"find().count()": 64.625329002738, | |
"find().limit(1).count()": 62.47246000170708, | |
"count()": 63.43811400234699, | |
"collection.count()": 60.94969899952412 | |
}, | |
"902000": { | |
"find().count()": 68.15423800051212, | |
"find().limit(1).count()": 66.14848200976849, | |
"count()": 62.16311299800873, | |
"collection.count()": 61.877075001597404 | |
}, | |
"903000": { | |
"find().count()": 65.51108899712563, | |
"find().limit(1).count()": 62.19121599197388, | |
"count()": 63.459965005517006, | |
"collection.count()": 60.89723800122738 | |
}, | |
"904000": { | |
"find().count()": 62.59071299433708, | |
"find().limit(1).count()": 63.32605899870396, | |
"count()": 62.169135004282, | |
"collection.count()": 63.68293400108814 | |
}, | |
"905000": { | |
"find().count()": 68.6018690019846, | |
"find().limit(1).count()": 62.3999529927969, | |
"count()": 62.54932700097561, | |
"collection.count()": 61.89147700369358 | |
}, | |
"906000": { | |
"find().count()": 63.23055300116539, | |
"find().limit(1).count()": 67.12023900449276, | |
"count()": 63.87260299921036, | |
"collection.count()": 60.87268500030041 | |
}, | |
"907000": { | |
"find().count()": 65.19902500510216, | |
"find().limit(1).count()": 62.72748200595379, | |
"count()": 62.52710600197315, | |
"collection.count()": 61.06860800087452 | |
}, | |
"908000": { | |
"find().count()": 64.37459300458431, | |
"find().limit(1).count()": 64.58216100931168, | |
"count()": 62.41501599550247, | |
"collection.count()": 61.275687992572784 | |
}, | |
"909000": { | |
"find().count()": 64.13326099514961, | |
"find().limit(1).count()": 588.8314139991999, | |
"count()": 64.62522301077843, | |
"collection.count()": 80.24070800840855 | |
}, | |
"910000": { | |
"find().count()": 66.32573500275612, | |
"find().limit(1).count()": 63.50085799396038, | |
"count()": 62.36826600134373, | |
"collection.count()": 62.64563399553299 | |
}, | |
"911000": { | |
"find().count()": 62.18216200172901, | |
"find().limit(1).count()": 62.46320898830891, | |
"count()": 62.95167499780655, | |
"collection.count()": 61.88613200187683 | |
}, | |
"912000": { | |
"find().count()": 64.32892599701881, | |
"find().limit(1).count()": 63.75585199892521, | |
"count()": 62.151958003640175, | |
"collection.count()": 63.52514900267124 | |
}, | |
"913000": { | |
"find().count()": 62.59449999034405, | |
"find().limit(1).count()": 64.12098699808121, | |
"count()": 65.19219098985195, | |
"collection.count()": 61.297602996230125 | |
}, | |
"914000": { | |
"find().count()": 62.17662800848484, | |
"find().limit(1).count()": 68.04169198870659, | |
"count()": 62.18852999806404, | |
"collection.count()": 63.18038500845432 | |
}, | |
"915000": { | |
"find().count()": 62.612114995718, | |
"find().limit(1).count()": 64.62114199995995, | |
"count()": 62.3239069879055, | |
"collection.count()": 60.96110899746418 | |
}, | |
"916000": { | |
"find().count()": 63.25254900753498, | |
"find().limit(1).count()": 62.236612007021904, | |
"count()": 62.763800993561745, | |
"collection.count()": 61.15377199649811 | |
}, | |
"917000": { | |
"find().count()": 62.363414004445076, | |
"find().limit(1).count()": 65.77116000652313, | |
"count()": 64.50022800266743, | |
"collection.count()": 61.59816999733448 | |
}, | |
"918000": { | |
"find().count()": 62.34197700023651, | |
"find().limit(1).count()": 65.83360700309277, | |
"count()": 62.07445099949837, | |
"collection.count()": 62.58366400003433 | |
}, | |
"919000": { | |
"find().count()": 62.08995199203491, | |
"find().limit(1).count()": 63.969127997756004, | |
"count()": 62.77361099421978, | |
"collection.count()": 60.89512300491333 | |
}, | |
"920000": { | |
"find().count()": 62.29091499745846, | |
"find().limit(1).count()": 62.143145993351936, | |
"count()": 62.5845989882946, | |
"collection.count()": 63.45228999853134 | |
}, | |
"921000": { | |
"find().count()": 62.16046200692654, | |
"find().limit(1).count()": 64.88275299966335, | |
"count()": 62.59541800618172, | |
"collection.count()": 61.352372005581856 | |
}, | |
"922000": { | |
"find().count()": 62.80494999885559, | |
"find().limit(1).count()": 63.213285997509956, | |
"count()": 62.138960003852844, | |
"collection.count()": 61.13519398868084 | |
}, | |
"923000": { | |
"find().count()": 64.60047200322151, | |
"find().limit(1).count()": 64.0139739960432, | |
"count()": 62.3536090105772, | |
"collection.count()": 63.28890299797058 | |
}, | |
"924000": { | |
"find().count()": 64.5785740017891, | |
"find().limit(1).count()": 62.540630996227264, | |
"count()": 67.21198499202728, | |
"collection.count()": 61.2182599902153 | |
}, | |
"925000": { | |
"find().count()": 62.287721991539, | |
"find().limit(1).count()": 62.47194400429726, | |
"count()": 64.47708900272846, | |
"collection.count()": 61.594457000494 | |
}, | |
"926000": { | |
"find().count()": 62.190334007143974, | |
"find().limit(1).count()": 65.98871499300003, | |
"count()": 64.46234700083733, | |
"collection.count()": 61.337670013308525 | |
}, | |
"927000": { | |
"find().count()": 62.77528500556946, | |
"find().limit(1).count()": 64.86217500269413, | |
"count()": 64.00901199877262, | |
"collection.count()": 61.507771000266075 | |
}, | |
"928000": { | |
"find().count()": 64.38001801073551, | |
"find().limit(1).count()": 62.43756699562073, | |
"count()": 62.35349500179291, | |
"collection.count()": 65.58619600534439 | |
}, | |
"929000": { | |
"find().count()": 62.56258299946785, | |
"find().limit(1).count()": 62.32316800951958, | |
"count()": 62.36215800046921, | |
"collection.count()": 63.92297700047493 | |
}, | |
"930000": { | |
"find().count()": 278.364377990365, | |
"find().limit(1).count()": 66.67876300215721, | |
"count()": 62.28700099885464, | |
"collection.count()": 61.22444799542427 | |
}, | |
"931000": { | |
"find().count()": 63.264406993985176, | |
"find().limit(1).count()": 63.942563995718956, | |
"count()": 65.78759101033211, | |
"collection.count()": 77.1608040034771 | |
}, | |
"932000": { | |
"find().count()": 62.5012079924345, | |
"find().limit(1).count()": 62.40974999964237, | |
"count()": 62.32763200998306, | |
"collection.count()": 61.109676003456116 | |
}, | |
"933000": { | |
"find().count()": 63.588099002838135, | |
"find().limit(1).count()": 62.83670599758625, | |
"count()": 64.0687559992075, | |
"collection.count()": 61.30111999809742 | |
}, | |
"934000": { | |
"find().count()": 62.6180340051651, | |
"find().limit(1).count()": 62.43707299232483, | |
"count()": 63.66081999242306, | |
"collection.count()": 65.05886399745941 | |
}, | |
"935000": { | |
"find().count()": 62.463186010718346, | |
"find().limit(1).count()": 62.48384799063206, | |
"count()": 62.14302098751068, | |
"collection.count()": 62.524999007582664 | |
}, | |
"936000": { | |
"find().count()": 66.44053000211716, | |
"find().limit(1).count()": 62.35505799949169, | |
"count()": 62.36055299639702, | |
"collection.count()": 61.859501004219055 | |
}, | |
"937000": { | |
"find().count()": 63.703085005283356, | |
"find().limit(1).count()": 62.71636700630188, | |
"count()": 64.79899999499321, | |
"collection.count()": 62.429643005132675 | |
}, | |
"938000": { | |
"find().count()": 68.18660600483418, | |
"find().limit(1).count()": 64.07973800599575, | |
"count()": 62.16892500221729, | |
"collection.count()": 66.12397100031376 | |
}, | |
"939000": { | |
"find().count()": 62.20726199448109, | |
"find().limit(1).count()": 68.56968200206757, | |
"count()": 62.42054599523544, | |
"collection.count()": 62.24796299636364 | |
}, | |
"940000": { | |
"find().count()": 62.88036400079727, | |
"find().limit(1).count()": 67.24041000008583, | |
"count()": 61.539093002676964, | |
"collection.count()": 61.29498100280762 | |
}, | |
"941000": { | |
"find().count()": 62.29384300112724, | |
"find().limit(1).count()": 65.01275199651718, | |
"count()": 61.44115500152111, | |
"collection.count()": 61.02579800784588 | |
}, | |
"942000": { | |
"find().count()": 62.7243449985981, | |
"find().limit(1).count()": 62.25206799805164, | |
"count()": 61.15916000306606, | |
"collection.count()": 61.11504600942135 | |
}, | |
"943000": { | |
"find().count()": 63.36823299527168, | |
"find().limit(1).count()": 62.145171999931335, | |
"count()": 62.14836999773979, | |
"collection.count()": 60.938054993748665 | |
}, | |
"944000": { | |
"find().count()": 65.02523499727249, | |
"find().limit(1).count()": 62.68391999602318, | |
"count()": 61.091828003525734, | |
"collection.count()": 61.219816997647285 | |
}, | |
"945000": { | |
"find().count()": 64.98548100888729, | |
"find().limit(1).count()": 62.26708199083805, | |
"count()": 61.271193996071815, | |
"collection.count()": 63.08387500047684 | |
}, | |
"946000": { | |
"find().count()": 62.42566300928593, | |
"find().limit(1).count()": 62.2362390011549, | |
"count()": 61.231112003326416, | |
"collection.count()": 61.208179995417595 | |
}, | |
"947000": { | |
"find().count()": 62.651545003056526, | |
"find().limit(1).count()": 62.23193800449371, | |
"count()": 62.09076601266861, | |
"collection.count()": 61.378176003694534 | |
}, | |
"948000": { | |
"find().count()": 63.56868700683117, | |
"find().limit(1).count()": 63.24055899679661, | |
"count()": 65.08554598689079, | |
"collection.count()": 61.19352298974991 | |
}, | |
"949000": { | |
"find().count()": 62.7715940028429, | |
"find().limit(1).count()": 62.38028100132942, | |
"count()": 61.142437011003494, | |
"collection.count()": 61.110017001628876 | |
}, | |
"950000": { | |
"find().count()": 62.77395199239254, | |
"find().limit(1).count()": 62.56002399325371, | |
"count()": 61.083607003092766, | |
"collection.count()": 61.127592012286186 | |
}, | |
"951000": { | |
"find().count()": 65.18767200410366, | |
"find().limit(1).count()": 65.31069299578667, | |
"count()": 63.32254500687122, | |
"collection.count()": 61.22726100683212 | |
}, | |
"952000": { | |
"find().count()": 62.83698199689388, | |
"find().limit(1).count()": 62.41058500111103, | |
"count()": 62.850495994091034, | |
"collection.count()": 65.34195399284363 | |
}, | |
"953000": { | |
"find().count()": 67.41647399961948, | |
"find().limit(1).count()": 62.74008800089359, | |
"count()": 61.47989000380039, | |
"collection.count()": 67.13914799690247 | |
}, | |
"954000": { | |
"find().count()": 62.202165991067886, | |
"find().limit(1).count()": 64.49027000367641, | |
"count()": 61.519565999507904, | |
"collection.count()": 63.539512008428574 | |
}, | |
"955000": { | |
"find().count()": 63.67889100313187, | |
"find().limit(1).count()": 64.37778998911381, | |
"count()": 61.23929800093174, | |
"collection.count()": 61.23194399476051 | |
}, | |
"956000": { | |
"find().count()": 62.77120800316334, | |
"find().limit(1).count()": 62.41698399186134, | |
"count()": 81.64235100150108, | |
"collection.count()": 62.168355002999306 | |
}, | |
"957000": { | |
"find().count()": 63.64463301002979, | |
"find().limit(1).count()": 62.33933500945568, | |
"count()": 60.990861997008324, | |
"collection.count()": 66.00029300153255 | |
}, | |
"958000": { | |
"find().count()": 63.40846601128578, | |
"find().limit(1).count()": 64.10365299880505, | |
"count()": 61.11506700515747, | |
"collection.count()": 60.982390001416206 | |
}, | |
"959000": { | |
"find().count()": 62.615797996520996, | |
"find().limit(1).count()": 64.27112199366093, | |
"count()": 60.92032000422478, | |
"collection.count()": 318.26459699869156 | |
}, | |
"960000": { | |
"find().count()": 64.27127599716187, | |
"find().limit(1).count()": 64.6458840072155, | |
"count()": 61.06437100470066, | |
"collection.count()": 61.392943009734154 | |
}, | |
"961000": { | |
"find().count()": 62.702918007969856, | |
"find().limit(1).count()": 74.29051001369953, | |
"count()": 61.61321000754833, | |
"collection.count()": 61.38128900527954 | |
}, | |
"962000": { | |
"find().count()": 63.93656300008297, | |
"find().limit(1).count()": 76.77779899537563, | |
"count()": 63.863490998744965, | |
"collection.count()": 63.363498002290726 | |
}, | |
"963000": { | |
"find().count()": 62.43671499192715, | |
"find().limit(1).count()": 64.38841301202774, | |
"count()": 61.425487995147705, | |
"collection.count()": 61.32420200109482 | |
}, | |
"964000": { | |
"find().count()": 64.67346100509167, | |
"find().limit(1).count()": 63.54798099398613, | |
"count()": 61.60376200079918, | |
"collection.count()": 64.26825900375843 | |
}, | |
"965000": { | |
"find().count()": 62.53113700449467, | |
"find().limit(1).count()": 62.4277940094471, | |
"count()": 63.066962003707886, | |
"collection.count()": 63.00647000968456 | |
}, | |
"966000": { | |
"find().count()": 62.18599300086498, | |
"find().limit(1).count()": 65.04239800572395, | |
"count()": 63.09477299451828, | |
"collection.count()": 60.94505698978901 | |
}, | |
"967000": { | |
"find().count()": 62.37880098819733, | |
"find().limit(1).count()": 62.25703901052475, | |
"count()": 61.20955801010132, | |
"collection.count()": 61.65419501066208 | |
}, | |
"968000": { | |
"find().count()": 62.264802008867264, | |
"find().limit(1).count()": 66.33837100863457, | |
"count()": 73.8557590097189, | |
"collection.count()": 61.11104500293732 | |
}, | |
"969000": { | |
"find().count()": 62.3673710078001, | |
"find().limit(1).count()": 62.60777899622917, | |
"count()": 62.04273399710655, | |
"collection.count()": 61.31838199496269 | |
}, | |
"970000": { | |
"find().count()": 64.07530499994755, | |
"find().limit(1).count()": 66.06259898841381, | |
"count()": 61.39047199487686, | |
"collection.count()": 61.13117599487305 | |
}, | |
"971000": { | |
"find().count()": 67.44428800046444, | |
"find().limit(1).count()": 63.15916799008846, | |
"count()": 61.62935200333595, | |
"collection.count()": 61.13348099589348 | |
}, | |
"972000": { | |
"find().count()": 62.71729399263859, | |
"find().limit(1).count()": 62.39197100698948, | |
"count()": 61.42707599699497, | |
"collection.count()": 60.88944099843502 | |
}, | |
"973000": { | |
"find().count()": 62.79695500433445, | |
"find().limit(1).count()": 62.2252189964056, | |
"count()": 62.740713998675346, | |
"collection.count()": 60.87543199956417 | |
}, | |
"974000": { | |
"find().count()": 66.07753100991249, | |
"find().limit(1).count()": 64.84351100027561, | |
"count()": 61.97710199654102, | |
"collection.count()": 61.2335480004549 | |
}, | |
"975000": { | |
"find().count()": 62.47716999053955, | |
"find().limit(1).count()": 63.79566399753094, | |
"count()": 62.21067000925541, | |
"collection.count()": 61.09664499759674 | |
}, | |
"976000": { | |
"find().count()": 63.180994004011154, | |
"find().limit(1).count()": 66.47531200945377, | |
"count()": 61.45068399608135, | |
"collection.count()": 61.23228099942207 | |
}, | |
"977000": { | |
"find().count()": 62.43650099635124, | |
"find().limit(1).count()": 65.86589999496937, | |
"count()": 61.1120660007, | |
"collection.count()": 61.34162400662899 | |
}, | |
"978000": { | |
"find().count()": 67.82000800967216, | |
"find().limit(1).count()": 62.29961700737476, | |
"count()": 60.89936500787735, | |
"collection.count()": 61.34520301222801 | |
}, | |
"979000": { | |
"find().count()": 62.967249006032944, | |
"find().limit(1).count()": 64.24704900383949, | |
"count()": 60.81156799197197, | |
"collection.count()": 62.59809400141239 | |
}, | |
"980000": { | |
"find().count()": 68.91647700965405, | |
"find().limit(1).count()": 62.441788002848625, | |
"count()": 61.416150003671646, | |
"collection.count()": 63.79681000113487 | |
}, | |
"981000": { | |
"find().count()": 62.420655995607376, | |
"find().limit(1).count()": 64.40031799674034, | |
"count()": 62.65989600121975, | |
"collection.count()": 61.25086300075054 | |
}, | |
"982000": { | |
"find().count()": 63.37183099985123, | |
"find().limit(1).count()": 64.63486801087856, | |
"count()": 64.62430499494076, | |
"collection.count()": 64.99642400443554 | |
}, | |
"983000": { | |
"find().count()": 62.363316997885704, | |
"find().limit(1).count()": 62.37114500999451, | |
"count()": 62.88944900035858, | |
"collection.count()": 61.71551099419594 | |
}, | |
"984000": { | |
"find().count()": 67.16342800855637, | |
"find().limit(1).count()": 62.59021300077438, | |
"count()": 61.23337200284004, | |
"collection.count()": 64.82365000247955 | |
}, | |
"985000": { | |
"find().count()": 62.97801299393177, | |
"find().limit(1).count()": 63.54576998949051, | |
"count()": 61.627080991864204, | |
"collection.count()": 64.07594600319862 | |
}, | |
"986000": { | |
"find().count()": 62.235954001545906, | |
"find().limit(1).count()": 62.37991799414158, | |
"count()": 62.42393200099468, | |
"collection.count()": 63.91805399954319 | |
}, | |
"987000": { | |
"find().count()": 62.51414801180363, | |
"find().limit(1).count()": 62.336312994360924, | |
"count()": 63.58107700943947, | |
"collection.count()": 61.04721799492836 | |
}, | |
"988000": { | |
"find().count()": 64.40958198904991, | |
"find().limit(1).count()": 62.35333099961281, | |
"count()": 63.7798839956522, | |
"collection.count()": 61.11372700333595 | |
}, | |
"989000": { | |
"find().count()": 62.7751130014658, | |
"find().limit(1).count()": 62.356178000569344, | |
"count()": 62.37179899215698, | |
"collection.count()": 61.50189200043678 | |
}, | |
"990000": { | |
"find().count()": 302.6970539987087, | |
"find().limit(1).count()": 62.911215990781784, | |
"count()": 62.87509199976921, | |
"collection.count()": 61.32419000566006 | |
}, | |
"991000": { | |
"find().count()": 67.73853400349617, | |
"find().limit(1).count()": 62.90495999157429, | |
"count()": 62.377178996801376, | |
"collection.count()": 61.55712200701237 | |
}, | |
"992000": { | |
"find().count()": 63.97427199780941, | |
"find().limit(1).count()": 65.08974400162697, | |
"count()": 63.18866100907326, | |
"collection.count()": 63.21537800133228 | |
}, | |
"993000": { | |
"find().count()": 64.31012299656868, | |
"find().limit(1).count()": 62.289708986878395, | |
"count()": 61.302350997924805, | |
"collection.count()": 62.212926000356674 | |
}, | |
"994000": { | |
"find().count()": 64.91462399065495, | |
"find().limit(1).count()": 62.52240999042988, | |
"count()": 60.92184600234032, | |
"collection.count()": 65.71326699852943 | |
}, | |
"995000": { | |
"find().count()": 62.496050000190735, | |
"find().limit(1).count()": 65.91149400174618, | |
"count()": 61.064764991402626, | |
"collection.count()": 62.95191100239754 | |
}, | |
"996000": { | |
"find().count()": 64.03314998745918, | |
"find().limit(1).count()": 65.23479999601841, | |
"count()": 63.42185699939728, | |
"collection.count()": 65.80869598686695 | |
}, | |
"997000": { | |
"find().count()": 63.00534500181675, | |
"find().limit(1).count()": 62.2892079949379, | |
"count()": 62.41253599524498, | |
"collection.count()": 63.722451001405716 | |
}, | |
"998000": { | |
"find().count()": 65.12347500026226, | |
"find().limit(1).count()": 62.782392993569374, | |
"count()": 62.330966994166374, | |
"collection.count()": 64.90810500085354 | |
}, | |
"999000": { | |
"find().count()": 62.526868999004364, | |
"find().limit(1).count()": 62.37948100268841, | |
"count()": 62.54315800964832, | |
"collection.count()": 65.17635700106621 | |
}, | |
"1000000": { | |
"find().count()": 64.6891539990902, | |
"find().limit(1).count()": 62.180745989084244, | |
"count()": 63.53275400400162, | |
"collection.count()": 63.29370200634003 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment