-
Notifications
You must be signed in to change notification settings - Fork 0
/
Running_Times.txt
57 lines (37 loc) · 1.57 KB
/
Running_Times.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
QUERY #1:
db.freeway_loopdata.find( { speed : { $gt : 100 } } ).explain("executionStats");
result: 6972
"executionSuccess" : true,
"nReturned" : 6972,
"executionTimeMillis" : 6853,
"totalKeysExamined" : 0,
"totalDocsExamined" : 17908260,
QUERY #2:
db.freeway_loopdata.find( { $and: [{ detectorid: { $in: detectorids } }, {starttime: { "$gte" : ISODate("2011-09-21"), "$lt" : ISODate("2011-09-22")}}]} ).explain("executionStats");
"executionSuccess" : true,
"nReturned" : 12960,
"executionTimeMillis" : 7065,
"totalKeysExamined" : 0,
"totalDocsExamined" : 17908260,
QUERY #3:
"executionSuccess" : true,
"nReturned" : 12960,
"executionTimeMillis" : 7110,
"totalKeysExamined" : 0,
"totalDocsExamined" : 17908260,
QUERY #4:
"executionStats" : {
"executionSuccess" : true,
"nReturned" : 2166,
"executionTimeMillis" : 11421,
"totalKeysExamined" : 0,
"totalDocsExamined" : 17908260,
QUERY #5:
"executionStats" : {
"executionSuccess" : true,
"nReturned" : 15884,
"executionTimeMillis" : 11577,
"totalKeysExamined" : 0,
"totalDocsExamined" : 17908260,
QUERY #6:
This query takes basically no time to execute since it involves only searching freeway_stations and the results return so fast.