mongoid_includes 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +6 -1
- data/lib/mongoid/includes/eager_load.rb +1 -1
- data/lib/mongoid/includes/version.rb +1 -1
- data/spec/mongo.log +1387 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8f800559814e59958b29997bde64c5b62a4a7ed
|
4
|
+
data.tar.gz: 8a94e2ea58c1c9fa26c213978b988cdc13c71813
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8f3d4ce4d2e507374dc6de5053c5a08b7c72ad2fc887cc2b513a54259d1005fe6b03d477377601243b5d69bc6249320c931749ffc8cdd325e1ecd31b40557ac
|
7
|
+
data.tar.gz: 235980d2b0a0c06f7adf56bb5191f7a1c7f7b2eb286914fac2fca2a1c627cff94fc396c62df89997f1ba1d838aae821508bf90e3455070d927cebefb4bb43c3c
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## Mongoid::Includes 1.1.1 (2016-01-12) ##
|
2
|
+
|
3
|
+
* Fix bug with nested includes when the related document is `nil`.
|
4
|
+
|
1
5
|
## Mongoid::Includes 1.1.0 (2015-11-04) ##
|
2
6
|
|
3
7
|
* Fix bug with optional polymorphic `belongs_to` relations where the name of the relation does not match an actual class name.
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Mongoid::Includes
|
|
7
7
|
[![Inline docs](http://inch-ci.org/github/ElMassimo/mongoid_includes.svg)](http://inch-ci.org/github/ElMassimo/mongoid_includes)
|
8
8
|
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ElMassimo/mongoid_includes/blob/master/LICENSE.txt)
|
9
9
|
|
10
|
-
`Mongoid::Includes` improves eager loading in Mongoid, supporting polymorphic associations, and
|
10
|
+
`Mongoid::Includes` improves eager loading in Mongoid, supporting polymorphic associations, and nested eager loading.
|
11
11
|
|
12
12
|
### Usage
|
13
13
|
|
@@ -15,6 +15,11 @@ Mongoid::Includes
|
|
15
15
|
Album.includes(:songs).includes(:musicians, from: :band)
|
16
16
|
|
17
17
|
Band.includes(:albums, with: ->(albums) { albums.gt(release: 1970) })
|
18
|
+
|
19
|
+
# The library supports nested eager loading using :from for terseness,
|
20
|
+
# but you can manually include nested associations using the :with option.
|
21
|
+
released_only = ->(albums) { albums.where(released: true) }
|
22
|
+
Musician.includes(:band, with: ->(bands) { bands.limit(2).includes(:albums, with: released_only) })
|
18
23
|
```
|
19
24
|
|
20
25
|
## Advantages
|
@@ -42,7 +42,7 @@ module Mongoid
|
|
42
42
|
# includes by that property are processed as usual.
|
43
43
|
def preload_nested(nested_inclusions, docs)
|
44
44
|
nested_inclusions.group_by(&:from).each do |from, inclusions|
|
45
|
-
preload(inclusions, docs.
|
45
|
+
preload(inclusions, docs.flat_map(&from).compact)
|
46
46
|
end
|
47
47
|
end
|
48
48
|
end
|
data/spec/mongo.log
CHANGED
@@ -1386,3 +1386,1390 @@ D, [2015-11-04T11:44:31.921555 #18729] DEBUG -- : MONGODB | localhost:27017 | mo
|
|
1386
1386
|
D, [2015-11-04T11:44:31.921942 #18729] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000339s
|
1387
1387
|
D, [2015-11-04T11:44:31.922821 #18729] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1388
1388
|
D, [2015-11-04T11:44:31.923096 #18729] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00021099999999999998s
|
1389
|
+
D, [2016-01-12T17:09:50.424519 #18796] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
|
1390
|
+
D, [2016-01-12T17:09:50.434092 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1391
|
+
D, [2016-01-12T17:09:50.434545 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00036100000000000005s
|
1392
|
+
D, [2016-01-12T17:09:50.436267 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1393
|
+
D, [2016-01-12T17:09:50.436670 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00029299999999999997s
|
1394
|
+
D, [2016-01-12T17:09:50.438015 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1395
|
+
D, [2016-01-12T17:09:50.438556 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000442s
|
1396
|
+
D, [2016-01-12T17:09:50.455658 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1397
|
+
D, [2016-01-12T17:09:50.456089 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000342s
|
1398
|
+
D, [2016-01-12T17:09:50.456973 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1399
|
+
D, [2016-01-12T17:09:50.457339 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000306s
|
1400
|
+
D, [2016-01-12T17:09:50.458300 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1401
|
+
D, [2016-01-12T17:09:50.458635 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000273s
|
1402
|
+
D, [2016-01-12T17:09:50.459479 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1403
|
+
D, [2016-01-12T17:09:50.459789 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00024900000000000004s
|
1404
|
+
D, [2016-01-12T17:09:50.460674 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1405
|
+
D, [2016-01-12T17:09:50.461001 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000263s
|
1406
|
+
D, [2016-01-12T17:09:50.462017 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1407
|
+
D, [2016-01-12T17:09:50.462353 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00027400000000000005s
|
1408
|
+
D, [2016-01-12T17:09:50.463463 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1409
|
+
D, [2016-01-12T17:09:50.463858 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00033800000000000003s
|
1410
|
+
D, [2016-01-12T17:09:50.464872 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1411
|
+
D, [2016-01-12T17:09:50.465189 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000261s
|
1412
|
+
D, [2016-01-12T17:09:50.468558 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000000'), "active"=>true, "name"=>"Pink Floyd", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1413
|
+
D, [2016-01-12T17:09:50.568975 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.100296s
|
1414
|
+
D, [2016-01-12T17:09:50.571442 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000001'), "name"=>"Wish You Were Here", "release"=>1975-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('56955d8e55193b496c000000'), "owner_type"=>"Band"}], "writeConcern"=>{:...
|
1415
|
+
D, [2016-01-12T17:09:50.602381 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.030837s
|
1416
|
+
D, [2016-01-12T17:09:50.604915 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000002'), "name"=>"The Dark Side of the Moon", "release"=>1973-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('56955d8e55193b496c000000'), "owner_type"=>"Band"}], "writeConce...
|
1417
|
+
D, [2016-01-12T17:09:50.605448 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00046499999999999997s
|
1418
|
+
D, [2016-01-12T17:09:50.606450 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{}}
|
1419
|
+
D, [2016-01-12T17:09:50.608197 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.001596s
|
1420
|
+
D, [2016-01-12T17:09:50.609303 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"albums", "filter"=>{"owner_id"=>{"$in"=>[BSON::ObjectId('56955d8e55193b496c000000')]}, "release"=>{"$lt"=>1974-01-01 00:00:00 UTC}}}
|
1421
|
+
D, [2016-01-12T17:09:50.609718 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035s
|
1422
|
+
D, [2016-01-12T17:09:50.611732 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"albums", "query"=>{"owner_id"=>BSON::ObjectId('56955d8e55193b496c000000'), "owner_type"=>"Band"}}
|
1423
|
+
D, [2016-01-12T17:09:50.612269 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.000455s
|
1424
|
+
D, [2016-01-12T17:09:50.613233 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1425
|
+
D, [2016-01-12T17:09:50.613743 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00044300000000000003s
|
1426
|
+
D, [2016-01-12T17:09:50.614111 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1427
|
+
D, [2016-01-12T17:09:50.640275 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.026057999999999998s
|
1428
|
+
D, [2016-01-12T17:09:50.640800 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"albums"}
|
1429
|
+
D, [2016-01-12T17:09:50.659992 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019089s
|
1430
|
+
D, [2016-01-12T17:09:50.661597 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1431
|
+
D, [2016-01-12T17:09:50.662055 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000395s
|
1432
|
+
D, [2016-01-12T17:09:50.663777 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1433
|
+
D, [2016-01-12T17:09:50.664099 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000261s
|
1434
|
+
D, [2016-01-12T17:09:50.728520 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000003'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1435
|
+
D, [2016-01-12T17:09:50.771570 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.042942s
|
1436
|
+
D, [2016-01-12T17:09:50.782749 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1437
|
+
D, [2016-01-12T17:09:50.783196 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000377s
|
1438
|
+
D, [2016-01-12T17:09:50.783547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1439
|
+
D, [2016-01-12T17:09:50.838228 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.054574s
|
1440
|
+
D, [2016-01-12T17:09:50.839929 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000004'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1441
|
+
D, [2016-01-12T17:09:50.873684 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.033212000000000005s
|
1442
|
+
D, [2016-01-12T17:09:50.875039 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000005')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1443
|
+
D, [2016-01-12T17:09:50.897052 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021914s
|
1444
|
+
D, [2016-01-12T17:09:50.897993 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000006')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1445
|
+
D, [2016-01-12T17:09:50.898367 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000316s
|
1446
|
+
D, [2016-01-12T17:09:50.899436 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000007'), "_type"=>"B", "c_id"=>BSON::ObjectId('56955d8e55193b496c000006')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1447
|
+
D, [2016-01-12T17:09:50.922182 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022654s
|
1448
|
+
D, [2016-01-12T17:09:50.923220 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"cs", "filter"=>{}}
|
1449
|
+
D, [2016-01-12T17:09:50.923581 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000288s
|
1450
|
+
D, [2016-01-12T17:09:50.924728 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"c_id"=>{"$in"=>[BSON::ObjectId('56955d8e55193b496c000005'), BSON::ObjectId('56955d8e55193b496c000006')]}, "_type"=>{"$in"=>["B"]}}}
|
1451
|
+
D, [2016-01-12T17:09:50.925147 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000354s
|
1452
|
+
D, [2016-01-12T17:09:50.926215 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1453
|
+
D, [2016-01-12T17:09:50.926674 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000396s
|
1454
|
+
D, [2016-01-12T17:09:50.927004 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"cs"}
|
1455
|
+
D, [2016-01-12T17:09:50.927494 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00043700000000000005s
|
1456
|
+
D, [2016-01-12T17:09:50.927791 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1457
|
+
D, [2016-01-12T17:09:50.939894 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012008999999999999s
|
1458
|
+
D, [2016-01-12T17:09:50.940281 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1459
|
+
D, [2016-01-12T17:09:50.954427 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.014056s
|
1460
|
+
D, [2016-01-12T17:09:50.955866 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8e55193b496c000008'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1461
|
+
D, [2016-01-12T17:09:51.003457 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.047487s
|
1462
|
+
D, [2016-01-12T17:09:51.004941 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000009')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1463
|
+
D, [2016-01-12T17:09:51.053422 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.047512000000000006s
|
1464
|
+
D, [2016-01-12T17:09:51.054614 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00000a')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1465
|
+
D, [2016-01-12T17:09:51.055203 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000464s
|
1466
|
+
D, [2016-01-12T17:09:51.056250 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00000b'), "_type"=>"B", "c_id"=>BSON::ObjectId('56955d8f55193b496c00000a')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1467
|
+
D, [2016-01-12T17:09:51.122779 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.066407s
|
1468
|
+
D, [2016-01-12T17:09:51.124041 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"cs", "filter"=>{}}
|
1469
|
+
D, [2016-01-12T17:09:51.124549 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000416s
|
1470
|
+
D, [2016-01-12T17:09:51.125634 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"c_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000009'), BSON::ObjectId('56955d8f55193b496c00000a')]}, "_type"=>{"$in"=>["B"]}}}
|
1471
|
+
D, [2016-01-12T17:09:51.126140 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000429s
|
1472
|
+
D, [2016-01-12T17:09:51.148802 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1473
|
+
D, [2016-01-12T17:09:51.149442 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000553s
|
1474
|
+
D, [2016-01-12T17:09:51.149836 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"cs"}
|
1475
|
+
D, [2016-01-12T17:09:51.150437 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00055s
|
1476
|
+
D, [2016-01-12T17:09:51.151025 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1477
|
+
D, [2016-01-12T17:09:51.169698 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018549s
|
1478
|
+
D, [2016-01-12T17:09:51.170407 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1479
|
+
D, [2016-01-12T17:09:51.183762 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013236s
|
1480
|
+
D, [2016-01-12T17:09:51.185400 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00000c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1481
|
+
D, [2016-01-12T17:09:51.220577 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.035041s
|
1482
|
+
D, [2016-01-12T17:09:51.222159 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00000d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1483
|
+
D, [2016-01-12T17:09:51.248345 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026084s
|
1484
|
+
D, [2016-01-12T17:09:51.249472 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00000e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1485
|
+
D, [2016-01-12T17:09:51.249878 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035299999999999996s
|
1486
|
+
D, [2016-01-12T17:09:51.250945 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00000f'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c00000e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1487
|
+
D, [2016-01-12T17:09:51.274029 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022361s
|
1488
|
+
D, [2016-01-12T17:09:51.275421 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000010'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c00000e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1489
|
+
D, [2016-01-12T17:09:51.275776 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030500000000000004s
|
1490
|
+
D, [2016-01-12T17:09:51.276567 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
|
1491
|
+
D, [2016-01-12T17:09:51.276905 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000276s
|
1492
|
+
D, [2016-01-12T17:09:51.277721 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c00000d'), BSON::ObjectId('56955d8f55193b496c00000e')]}, "_type"=>{"$in"=>["B"]}}}
|
1493
|
+
D, [2016-01-12T17:09:51.278030 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000259s
|
1494
|
+
D, [2016-01-12T17:09:51.278868 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c00000d'), BSON::ObjectId('56955d8f55193b496c00000e')]}, "_type"=>{"$in"=>["C"]}}}
|
1495
|
+
D, [2016-01-12T17:09:51.279187 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026900000000000003s
|
1496
|
+
D, [2016-01-12T17:09:51.279987 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1497
|
+
D, [2016-01-12T17:09:51.280391 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000351s
|
1498
|
+
D, [2016-01-12T17:09:51.280678 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
|
1499
|
+
D, [2016-01-12T17:09:51.281154 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000429s
|
1500
|
+
D, [2016-01-12T17:09:51.281432 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1501
|
+
D, [2016-01-12T17:09:51.293677 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012149s
|
1502
|
+
D, [2016-01-12T17:09:51.294050 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1503
|
+
D, [2016-01-12T17:09:51.313120 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018966999999999998s
|
1504
|
+
D, [2016-01-12T17:09:51.314834 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000011'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1505
|
+
D, [2016-01-12T17:09:51.338416 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023445999999999998s
|
1506
|
+
D, [2016-01-12T17:09:51.339912 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000012')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1507
|
+
D, [2016-01-12T17:09:51.366709 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026702s
|
1508
|
+
D, [2016-01-12T17:09:51.367664 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000013')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1509
|
+
D, [2016-01-12T17:09:51.368014 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000308s
|
1510
|
+
D, [2016-01-12T17:09:51.368793 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000014'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c000013')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1511
|
+
D, [2016-01-12T17:09:51.392555 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023023000000000002s
|
1512
|
+
D, [2016-01-12T17:09:51.393682 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000015'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c000013')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1513
|
+
D, [2016-01-12T17:09:51.394163 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00042699999999999997s
|
1514
|
+
D, [2016-01-12T17:09:51.394862 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
|
1515
|
+
D, [2016-01-12T17:09:51.395152 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000239s
|
1516
|
+
D, [2016-01-12T17:09:51.395852 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000012'), BSON::ObjectId('56955d8f55193b496c000013')]}, "_type"=>{"$in"=>["B"]}}}
|
1517
|
+
D, [2016-01-12T17:09:51.396226 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000254s
|
1518
|
+
D, [2016-01-12T17:09:51.396865 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000012'), BSON::ObjectId('56955d8f55193b496c000013')]}, "_type"=>{"$in"=>["C"]}}}
|
1519
|
+
D, [2016-01-12T17:09:51.397174 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026000000000000003s
|
1520
|
+
D, [2016-01-12T17:09:51.398141 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1521
|
+
D, [2016-01-12T17:09:51.398539 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000318s
|
1522
|
+
D, [2016-01-12T17:09:51.398888 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
|
1523
|
+
D, [2016-01-12T17:09:51.399386 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00044199999999999996s
|
1524
|
+
D, [2016-01-12T17:09:51.399672 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1525
|
+
D, [2016-01-12T17:09:51.412307 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012544000000000001s
|
1526
|
+
D, [2016-01-12T17:09:51.412698 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1527
|
+
D, [2016-01-12T17:09:51.424584 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011801s
|
1528
|
+
D, [2016-01-12T17:09:51.426051 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000016'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1529
|
+
D, [2016-01-12T17:09:51.447514 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021355s
|
1530
|
+
D, [2016-01-12T17:09:51.448760 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000017')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1531
|
+
D, [2016-01-12T17:09:51.469551 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020661s
|
1532
|
+
D, [2016-01-12T17:09:51.470530 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000018')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1533
|
+
D, [2016-01-12T17:09:51.470923 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000328s
|
1534
|
+
D, [2016-01-12T17:09:51.471813 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000019'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c000018')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1535
|
+
D, [2016-01-12T17:09:51.491996 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019496000000000003s
|
1536
|
+
D, [2016-01-12T17:09:51.493153 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00001a'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c000018')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1537
|
+
D, [2016-01-12T17:09:51.493608 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000411s
|
1538
|
+
D, [2016-01-12T17:09:51.494329 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
|
1539
|
+
D, [2016-01-12T17:09:51.494671 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000291s
|
1540
|
+
D, [2016-01-12T17:09:51.495657 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000017'), BSON::ObjectId('56955d8f55193b496c000018')]}, "_type"=>{"$in"=>["B"]}}}
|
1541
|
+
D, [2016-01-12T17:09:51.496064 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000351s
|
1542
|
+
D, [2016-01-12T17:09:51.496702 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000017'), BSON::ObjectId('56955d8f55193b496c000018')]}, "_type"=>{"$in"=>["C"]}}}
|
1543
|
+
D, [2016-01-12T17:09:51.497042 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000292s
|
1544
|
+
D, [2016-01-12T17:09:51.505875 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1545
|
+
D, [2016-01-12T17:09:51.506333 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000377s
|
1546
|
+
D, [2016-01-12T17:09:51.506708 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
|
1547
|
+
D, [2016-01-12T17:09:51.507243 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00047799999999999996s
|
1548
|
+
D, [2016-01-12T17:09:51.507571 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1549
|
+
D, [2016-01-12T17:09:51.525423 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017737000000000003s
|
1550
|
+
D, [2016-01-12T17:09:51.525984 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1551
|
+
D, [2016-01-12T17:09:51.543159 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017086999999999998s
|
1552
|
+
D, [2016-01-12T17:09:51.544699 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00001b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1553
|
+
D, [2016-01-12T17:09:51.565602 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020807s
|
1554
|
+
D, [2016-01-12T17:09:51.567873 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00001c')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1555
|
+
D, [2016-01-12T17:09:51.588624 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020656s
|
1556
|
+
D, [2016-01-12T17:09:51.589808 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00001d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1557
|
+
D, [2016-01-12T17:09:51.590177 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000295s
|
1558
|
+
D, [2016-01-12T17:09:51.591817 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00001e'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c00001d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1559
|
+
D, [2016-01-12T17:09:51.613155 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021244s
|
1560
|
+
D, [2016-01-12T17:09:51.614272 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00001f'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c00001d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1561
|
+
D, [2016-01-12T17:09:51.614662 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031800000000000003s
|
1562
|
+
D, [2016-01-12T17:09:51.615547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000020'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c00001d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1563
|
+
D, [2016-01-12T17:09:51.615878 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000281s
|
1564
|
+
D, [2016-01-12T17:09:51.616471 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000021'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c00001d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1565
|
+
D, [2016-01-12T17:09:51.616748 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000233s
|
1566
|
+
D, [2016-01-12T17:09:51.617378 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
|
1567
|
+
D, [2016-01-12T17:09:51.617655 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00023s
|
1568
|
+
D, [2016-01-12T17:09:51.618406 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c00001c'), BSON::ObjectId('56955d8f55193b496c00001d')]}, "_type"=>{"$in"=>["B"]}}}
|
1569
|
+
D, [2016-01-12T17:09:51.618733 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000272s
|
1570
|
+
D, [2016-01-12T17:09:51.619594 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c00001c'), BSON::ObjectId('56955d8f55193b496c00001d')]}, "_type"=>{"$in"=>["C"]}}}
|
1571
|
+
D, [2016-01-12T17:09:51.619939 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000266s
|
1572
|
+
D, [2016-01-12T17:09:51.620849 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1573
|
+
D, [2016-01-12T17:09:51.621275 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000371s
|
1574
|
+
D, [2016-01-12T17:09:51.621572 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
|
1575
|
+
D, [2016-01-12T17:09:51.623338 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.001699s
|
1576
|
+
D, [2016-01-12T17:09:51.623749 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1577
|
+
D, [2016-01-12T17:09:51.635864 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012034s
|
1578
|
+
D, [2016-01-12T17:09:51.636237 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1579
|
+
D, [2016-01-12T17:09:51.652921 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.016602s
|
1580
|
+
D, [2016-01-12T17:09:51.654329 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000022'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1581
|
+
D, [2016-01-12T17:09:51.676990 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022546s
|
1582
|
+
D, [2016-01-12T17:09:51.678508 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000023')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1583
|
+
D, [2016-01-12T17:09:51.699443 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020846s
|
1584
|
+
D, [2016-01-12T17:09:51.700661 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000024')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1585
|
+
D, [2016-01-12T17:09:51.700980 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000275s
|
1586
|
+
D, [2016-01-12T17:09:51.701789 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000025'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c000024')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1587
|
+
D, [2016-01-12T17:09:51.725935 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024050000000000002s
|
1588
|
+
D, [2016-01-12T17:09:51.727050 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000026'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c000024')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1589
|
+
D, [2016-01-12T17:09:51.727420 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000329s
|
1590
|
+
D, [2016-01-12T17:09:51.728216 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000027'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c000024')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1591
|
+
D, [2016-01-12T17:09:51.728585 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00032s
|
1592
|
+
D, [2016-01-12T17:09:51.729286 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000028'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c000024')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1593
|
+
D, [2016-01-12T17:09:51.729559 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000225s
|
1594
|
+
D, [2016-01-12T17:09:51.730194 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
|
1595
|
+
D, [2016-01-12T17:09:51.730544 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000269s
|
1596
|
+
D, [2016-01-12T17:09:51.731558 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000023'), BSON::ObjectId('56955d8f55193b496c000024')]}, "_type"=>{"$in"=>["B"]}}}
|
1597
|
+
D, [2016-01-12T17:09:51.731920 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00030399999999999996s
|
1598
|
+
D, [2016-01-12T17:09:51.732721 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c000023'), BSON::ObjectId('56955d8f55193b496c000024')]}, "_type"=>{"$in"=>["C"]}}}
|
1599
|
+
D, [2016-01-12T17:09:51.733038 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000258s
|
1600
|
+
D, [2016-01-12T17:09:51.734103 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1601
|
+
D, [2016-01-12T17:09:51.734552 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00039200000000000004s
|
1602
|
+
D, [2016-01-12T17:09:51.735605 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
|
1603
|
+
D, [2016-01-12T17:09:51.736137 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000482s
|
1604
|
+
D, [2016-01-12T17:09:51.736450 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1605
|
+
D, [2016-01-12T17:09:51.751288 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.014744s
|
1606
|
+
D, [2016-01-12T17:09:51.751730 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1607
|
+
D, [2016-01-12T17:09:51.777461 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.025629s
|
1608
|
+
D, [2016-01-12T17:09:51.779202 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c000029'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1609
|
+
D, [2016-01-12T17:09:51.805159 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025851s
|
1610
|
+
D, [2016-01-12T17:09:51.806618 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00002a')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1611
|
+
D, [2016-01-12T17:09:51.963527 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.15679800000000002s
|
1612
|
+
D, [2016-01-12T17:09:51.964931 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00002b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1613
|
+
D, [2016-01-12T17:09:51.965391 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000396s
|
1614
|
+
D, [2016-01-12T17:09:51.966437 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d8f55193b496c00002c'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c00002b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1615
|
+
D, [2016-01-12T17:09:52.020579 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.054023s
|
1616
|
+
D, [2016-01-12T17:09:52.022019 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00002d'), "_type"=>"B", "d_id"=>BSON::ObjectId('56955d8f55193b496c00002b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1617
|
+
D, [2016-01-12T17:09:52.022578 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000482s
|
1618
|
+
D, [2016-01-12T17:09:52.023625 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00002e'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c00002b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1619
|
+
D, [2016-01-12T17:09:52.024073 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000379s
|
1620
|
+
D, [2016-01-12T17:09:52.025005 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00002f'), "_type"=>"C", "d_id"=>BSON::ObjectId('56955d8f55193b496c00002b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1621
|
+
D, [2016-01-12T17:09:52.025423 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000342s
|
1622
|
+
D, [2016-01-12T17:09:52.026378 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
|
1623
|
+
D, [2016-01-12T17:09:52.026828 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000394s
|
1624
|
+
D, [2016-01-12T17:09:52.027887 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c00002a'), BSON::ObjectId('56955d8f55193b496c00002b')]}, "_type"=>{"$in"=>["B"]}}}
|
1625
|
+
D, [2016-01-12T17:09:52.029218 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000411s
|
1626
|
+
D, [2016-01-12T17:09:52.030261 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('56955d8f55193b496c00002a'), BSON::ObjectId('56955d8f55193b496c00002b')]}, "_type"=>{"$in"=>["C"]}}}
|
1627
|
+
D, [2016-01-12T17:09:52.030706 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000362s
|
1628
|
+
D, [2016-01-12T17:09:52.032235 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1629
|
+
D, [2016-01-12T17:09:52.032801 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000484s
|
1630
|
+
D, [2016-01-12T17:09:52.033255 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
|
1631
|
+
D, [2016-01-12T17:09:52.033864 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000547s
|
1632
|
+
D, [2016-01-12T17:09:52.034222 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1633
|
+
D, [2016-01-12T17:09:52.052671 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018335s
|
1634
|
+
D, [2016-01-12T17:09:52.053284 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
|
1635
|
+
D, [2016-01-12T17:09:52.092938 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.039551s
|
1636
|
+
D, [2016-01-12T17:09:52.094567 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000030'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1637
|
+
D, [2016-01-12T17:09:52.119857 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025189s
|
1638
|
+
D, [2016-01-12T17:09:52.121445 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1639
|
+
D, [2016-01-12T17:09:52.121869 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00036500000000000004s
|
1640
|
+
D, [2016-01-12T17:09:52.122214 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1641
|
+
D, [2016-01-12T17:09:52.122769 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000495s
|
1642
|
+
D, [2016-01-12T17:09:52.123864 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000031'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:...
|
1643
|
+
D, [2016-01-12T17:09:52.153645 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.029653s
|
1644
|
+
D, [2016-01-12T17:09:52.155856 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000032'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9055193b496c000031')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1645
|
+
D, [2016-01-12T17:09:52.178085 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022081s
|
1646
|
+
D, [2016-01-12T17:09:52.179093 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000031')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1647
|
+
D, [2016-01-12T17:09:52.179551 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000411s
|
1648
|
+
D, [2016-01-12T17:09:52.180301 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
|
1649
|
+
D, [2016-01-12T17:09:52.181347 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033s
|
1650
|
+
D, [2016-01-12T17:09:52.182027 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c000031')]}}}
|
1651
|
+
D, [2016-01-12T17:09:52.182441 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000343s
|
1652
|
+
D, [2016-01-12T17:09:52.182869 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
|
1653
|
+
D, [2016-01-12T17:09:52.183146 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00022s
|
1654
|
+
D, [2016-01-12T17:09:52.184055 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1655
|
+
D, [2016-01-12T17:09:52.184453 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00034300000000000004s
|
1656
|
+
D, [2016-01-12T17:09:52.184740 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1657
|
+
D, [2016-01-12T17:09:52.185220 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000434s
|
1658
|
+
D, [2016-01-12T17:09:52.185461 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
1659
|
+
D, [2016-01-12T17:09:52.199039 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013483s
|
1660
|
+
D, [2016-01-12T17:09:52.200421 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000033'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1661
|
+
D, [2016-01-12T17:09:52.221441 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020953s
|
1662
|
+
D, [2016-01-12T17:09:52.223109 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000034'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:...
|
1663
|
+
D, [2016-01-12T17:09:52.223663 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00046899999999999996s
|
1664
|
+
D, [2016-01-12T17:09:52.225269 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000035'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9055193b496c000033')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1665
|
+
D, [2016-01-12T17:09:52.245958 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020536000000000002s
|
1666
|
+
D, [2016-01-12T17:09:52.246940 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000033')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1667
|
+
D, [2016-01-12T17:09:52.247390 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039999999999999996s
|
1668
|
+
D, [2016-01-12T17:09:52.248422 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000036'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9055193b496c000034')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1669
|
+
D, [2016-01-12T17:09:52.248735 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000291s
|
1670
|
+
D, [2016-01-12T17:09:52.249281 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000034')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1671
|
+
D, [2016-01-12T17:09:52.250298 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000348s
|
1672
|
+
D, [2016-01-12T17:09:52.251351 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
|
1673
|
+
D, [2016-01-12T17:09:52.251691 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000287s
|
1674
|
+
D, [2016-01-12T17:09:52.252355 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c000033')]}}}
|
1675
|
+
D, [2016-01-12T17:09:52.252738 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000327s
|
1676
|
+
D, [2016-01-12T17:09:52.253776 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1677
|
+
D, [2016-01-12T17:09:52.254183 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000352s
|
1678
|
+
D, [2016-01-12T17:09:52.254615 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1679
|
+
D, [2016-01-12T17:09:52.255271 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000596s
|
1680
|
+
D, [2016-01-12T17:09:52.255524 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
1681
|
+
D, [2016-01-12T17:09:52.266810 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011188s
|
1682
|
+
D, [2016-01-12T17:09:52.268433 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000037'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:...
|
1683
|
+
D, [2016-01-12T17:09:52.289053 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020532s
|
1684
|
+
D, [2016-01-12T17:09:52.290465 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000038'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1685
|
+
D, [2016-01-12T17:09:52.290852 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00032900000000000003s
|
1686
|
+
D, [2016-01-12T17:09:52.292213 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000039'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9055193b496c000037')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1687
|
+
D, [2016-01-12T17:09:52.323489 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.031167s
|
1688
|
+
D, [2016-01-12T17:09:52.324731 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000037')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1689
|
+
D, [2016-01-12T17:09:52.325354 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000547s
|
1690
|
+
D, [2016-01-12T17:09:52.326813 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00003a'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9055193b496c000038')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1691
|
+
D, [2016-01-12T17:09:52.327289 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000406s
|
1692
|
+
D, [2016-01-12T17:09:52.328109 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000038')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1693
|
+
D, [2016-01-12T17:09:52.329520 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0004890000000000001s
|
1694
|
+
D, [2016-01-12T17:09:52.330374 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
|
1695
|
+
D, [2016-01-12T17:09:52.330829 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00038s
|
1696
|
+
D, [2016-01-12T17:09:52.331704 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c000037')]}}}
|
1697
|
+
D, [2016-01-12T17:09:52.332277 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000473s
|
1698
|
+
D, [2016-01-12T17:09:52.333435 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1699
|
+
D, [2016-01-12T17:09:52.333944 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00042899999999999997s
|
1700
|
+
D, [2016-01-12T17:09:52.334419 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1701
|
+
D, [2016-01-12T17:09:52.335058 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005470000000000001s
|
1702
|
+
D, [2016-01-12T17:09:52.335460 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
1703
|
+
D, [2016-01-12T17:09:52.363033 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.027467s
|
1704
|
+
D, [2016-01-12T17:09:52.364535 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00003b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1705
|
+
D, [2016-01-12T17:09:52.410983 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.046333s
|
1706
|
+
D, [2016-01-12T17:09:52.412719 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00003c'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1707
|
+
D, [2016-01-12T17:09:52.413271 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000491s
|
1708
|
+
D, [2016-01-12T17:09:52.414668 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00003d'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9055193b496c00003b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1709
|
+
D, [2016-01-12T17:09:52.470976 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.056208999999999995s
|
1710
|
+
D, [2016-01-12T17:09:52.472079 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00003b')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1711
|
+
D, [2016-01-12T17:09:52.472547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000412s
|
1712
|
+
D, [2016-01-12T17:09:52.473756 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00003e'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9055193b496c00003c')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1713
|
+
D, [2016-01-12T17:09:52.474083 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000271s
|
1714
|
+
D, [2016-01-12T17:09:52.475426 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00003c')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1715
|
+
D, [2016-01-12T17:09:52.475788 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000316s
|
1716
|
+
D, [2016-01-12T17:09:52.476649 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}}
|
1717
|
+
D, [2016-01-12T17:09:52.478883 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.002124s
|
1718
|
+
D, [2016-01-12T17:09:52.479912 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c00003c')]}}}
|
1719
|
+
D, [2016-01-12T17:09:52.480386 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000406s
|
1720
|
+
D, [2016-01-12T17:09:52.481488 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1721
|
+
D, [2016-01-12T17:09:52.481953 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00041s
|
1722
|
+
D, [2016-01-12T17:09:52.482339 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1723
|
+
D, [2016-01-12T17:09:52.482896 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000495s
|
1724
|
+
D, [2016-01-12T17:09:52.483204 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
1725
|
+
D, [2016-01-12T17:09:52.503319 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.020011s
|
1726
|
+
D, [2016-01-12T17:09:52.505038 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00003f'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1727
|
+
D, [2016-01-12T17:09:52.529188 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024044s
|
1728
|
+
D, [2016-01-12T17:09:52.530870 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000040'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1729
|
+
D, [2016-01-12T17:09:52.531330 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00039099999999999996s
|
1730
|
+
D, [2016-01-12T17:09:52.532710 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000041'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9055193b496c00003f')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1731
|
+
D, [2016-01-12T17:09:52.553544 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020758s
|
1732
|
+
D, [2016-01-12T17:09:52.554598 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00003f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1733
|
+
D, [2016-01-12T17:09:52.555043 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000399s
|
1734
|
+
D, [2016-01-12T17:09:52.556071 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000042'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9055193b496c000040')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1735
|
+
D, [2016-01-12T17:09:52.556346 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000231s
|
1736
|
+
D, [2016-01-12T17:09:52.557612 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000040')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1737
|
+
D, [2016-01-12T17:09:52.557986 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00032599999999999996s
|
1738
|
+
D, [2016-01-12T17:09:52.558760 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}}
|
1739
|
+
D, [2016-01-12T17:09:52.559124 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033s
|
1740
|
+
D, [2016-01-12T17:09:52.559706 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c000040')]}}}
|
1741
|
+
D, [2016-01-12T17:09:52.560068 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000311s
|
1742
|
+
D, [2016-01-12T17:09:52.560546 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>1}}
|
1743
|
+
D, [2016-01-12T17:09:52.560890 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027s
|
1744
|
+
D, [2016-01-12T17:09:52.561752 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00003f')}}
|
1745
|
+
D, [2016-01-12T17:09:52.562114 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000265s
|
1746
|
+
D, [2016-01-12T17:09:52.563170 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1747
|
+
D, [2016-01-12T17:09:52.563615 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000389s
|
1748
|
+
D, [2016-01-12T17:09:52.563961 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1749
|
+
D, [2016-01-12T17:09:52.564482 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00046199999999999995s
|
1750
|
+
D, [2016-01-12T17:09:52.564740 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
1751
|
+
D, [2016-01-12T17:09:52.576963 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01212s
|
1752
|
+
D, [2016-01-12T17:09:52.578389 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000043'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1753
|
+
D, [2016-01-12T17:09:52.607862 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022776s
|
1754
|
+
D, [2016-01-12T17:09:52.609728 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000044'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1755
|
+
D, [2016-01-12T17:09:52.610182 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000386s
|
1756
|
+
D, [2016-01-12T17:09:52.611586 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000045'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9055193b496c000043')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1757
|
+
D, [2016-01-12T17:09:52.633721 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022039s
|
1758
|
+
D, [2016-01-12T17:09:52.635020 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000043')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1759
|
+
D, [2016-01-12T17:09:52.636206 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00041s
|
1760
|
+
D, [2016-01-12T17:09:52.637388 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000046'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9055193b496c000044')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1761
|
+
D, [2016-01-12T17:09:52.637705 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000272s
|
1762
|
+
D, [2016-01-12T17:09:52.638433 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000044')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1763
|
+
D, [2016-01-12T17:09:52.638772 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000292s
|
1764
|
+
D, [2016-01-12T17:09:52.639635 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}}
|
1765
|
+
D, [2016-01-12T17:09:52.640072 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037999999999999997s
|
1766
|
+
D, [2016-01-12T17:09:52.641271 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c000044')]}}}
|
1767
|
+
D, [2016-01-12T17:09:52.641719 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000386s
|
1768
|
+
D, [2016-01-12T17:09:52.642900 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1769
|
+
D, [2016-01-12T17:09:52.643383 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000414s
|
1770
|
+
D, [2016-01-12T17:09:52.643848 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1771
|
+
D, [2016-01-12T17:09:52.644373 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000466s
|
1772
|
+
D, [2016-01-12T17:09:52.644737 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
1773
|
+
D, [2016-01-12T17:09:52.656920 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012092s
|
1774
|
+
D, [2016-01-12T17:09:52.658267 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000047'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1775
|
+
D, [2016-01-12T17:09:52.679040 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020659999999999998s
|
1776
|
+
D, [2016-01-12T17:09:52.680536 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000048'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1777
|
+
D, [2016-01-12T17:09:52.680915 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000334s
|
1778
|
+
D, [2016-01-12T17:09:52.768270 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000048')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1779
|
+
D, [2016-01-12T17:09:52.769110 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000745s
|
1780
|
+
D, [2016-01-12T17:09:52.770307 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000048')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1781
|
+
D, [2016-01-12T17:09:52.770852 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000462s
|
1782
|
+
D, [2016-01-12T17:09:52.772305 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c000049'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1783
|
+
D, [2016-01-12T17:09:52.791811 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019407s
|
1784
|
+
D, [2016-01-12T17:09:52.793373 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00004a'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1785
|
+
D, [2016-01-12T17:09:52.793719 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000301s
|
1786
|
+
D, [2016-01-12T17:09:52.795040 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000048')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9055193b496c000049')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1787
|
+
D, [2016-01-12T17:09:52.795433 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000347s
|
1788
|
+
D, [2016-01-12T17:09:52.796025 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c000048')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9055193b496c00004a')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1789
|
+
D, [2016-01-12T17:09:52.796368 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000298s
|
1790
|
+
D, [2016-01-12T17:09:52.796860 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9055193b496c000048')}}
|
1791
|
+
D, [2016-01-12T17:09:52.797479 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000544s
|
1792
|
+
D, [2016-01-12T17:09:52.798991 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c000049')]}}}
|
1793
|
+
D, [2016-01-12T17:09:52.799336 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000292s
|
1794
|
+
D, [2016-01-12T17:09:52.800399 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1795
|
+
D, [2016-01-12T17:09:52.800784 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00032s
|
1796
|
+
D, [2016-01-12T17:09:52.801427 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1797
|
+
D, [2016-01-12T17:09:52.802097 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000594s
|
1798
|
+
D, [2016-01-12T17:09:52.802408 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1799
|
+
D, [2016-01-12T17:09:52.815348 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012837000000000001s
|
1800
|
+
D, [2016-01-12T17:09:52.816719 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00004b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1801
|
+
D, [2016-01-12T17:09:52.955598 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.138785s
|
1802
|
+
D, [2016-01-12T17:09:52.956961 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00004c'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1803
|
+
D, [2016-01-12T17:09:52.957375 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000368s
|
1804
|
+
D, [2016-01-12T17:09:52.958479 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00004c')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1805
|
+
D, [2016-01-12T17:09:52.958892 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00036500000000000004s
|
1806
|
+
D, [2016-01-12T17:09:52.959827 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00004c')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1807
|
+
D, [2016-01-12T17:09:52.960193 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000316s
|
1808
|
+
D, [2016-01-12T17:09:52.961492 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9055193b496c00004d'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1809
|
+
D, [2016-01-12T17:09:53.006530 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.044923s
|
1810
|
+
D, [2016-01-12T17:09:53.008482 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00004e'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1811
|
+
D, [2016-01-12T17:09:53.009054 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000497s
|
1812
|
+
D, [2016-01-12T17:09:53.010458 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00004c')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9055193b496c00004d')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1813
|
+
D, [2016-01-12T17:09:53.010966 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043200000000000004s
|
1814
|
+
D, [2016-01-12T17:09:53.011862 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9055193b496c00004c')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c00004e')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1815
|
+
D, [2016-01-12T17:09:53.012387 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00046100000000000004s
|
1816
|
+
D, [2016-01-12T17:09:53.012995 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9055193b496c00004c')}}
|
1817
|
+
D, [2016-01-12T17:09:53.013468 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000405s
|
1818
|
+
D, [2016-01-12T17:09:53.014885 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9055193b496c00004d')]}}}
|
1819
|
+
D, [2016-01-12T17:09:53.015332 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000373s
|
1820
|
+
D, [2016-01-12T17:09:53.016495 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00004e')}}
|
1821
|
+
D, [2016-01-12T17:09:53.017959 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000485s
|
1822
|
+
D, [2016-01-12T17:09:53.019029 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1823
|
+
D, [2016-01-12T17:09:53.019534 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000427s
|
1824
|
+
D, [2016-01-12T17:09:53.020014 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1825
|
+
D, [2016-01-12T17:09:53.020658 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005740000000000001s
|
1826
|
+
D, [2016-01-12T17:09:53.021040 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1827
|
+
D, [2016-01-12T17:09:53.038519 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017361s
|
1828
|
+
D, [2016-01-12T17:09:53.040304 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00004f'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1829
|
+
D, [2016-01-12T17:09:53.064527 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024078s
|
1830
|
+
D, [2016-01-12T17:09:53.066350 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000050'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1831
|
+
D, [2016-01-12T17:09:53.066946 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0005189999999999999s
|
1832
|
+
D, [2016-01-12T17:09:53.068547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000050')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1833
|
+
D, [2016-01-12T17:09:53.069098 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000481s
|
1834
|
+
D, [2016-01-12T17:09:53.070284 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000050')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1835
|
+
D, [2016-01-12T17:09:53.070819 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00046s
|
1836
|
+
D, [2016-01-12T17:09:53.072472 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000051'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1837
|
+
D, [2016-01-12T17:09:53.096188 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023612s
|
1838
|
+
D, [2016-01-12T17:09:53.098048 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000052'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1839
|
+
D, [2016-01-12T17:09:53.098504 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000397s
|
1840
|
+
D, [2016-01-12T17:09:53.099643 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000050')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c000051')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1841
|
+
D, [2016-01-12T17:09:53.100754 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00033s
|
1842
|
+
D, [2016-01-12T17:09:53.101362 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000050')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c000052')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1843
|
+
D, [2016-01-12T17:09:53.101721 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000314s
|
1844
|
+
D, [2016-01-12T17:09:53.102268 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c000050')}}
|
1845
|
+
D, [2016-01-12T17:09:53.102847 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0004969999999999999s
|
1846
|
+
D, [2016-01-12T17:09:53.104317 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c000051')]}}}
|
1847
|
+
D, [2016-01-12T17:09:53.104701 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000335s
|
1848
|
+
D, [2016-01-12T17:09:53.105643 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1849
|
+
D, [2016-01-12T17:09:53.106127 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000424s
|
1850
|
+
D, [2016-01-12T17:09:53.106443 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1851
|
+
D, [2016-01-12T17:09:53.106989 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000471s
|
1852
|
+
D, [2016-01-12T17:09:53.107352 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1853
|
+
D, [2016-01-12T17:09:53.119067 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011617s
|
1854
|
+
D, [2016-01-12T17:09:53.120416 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000053'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1855
|
+
D, [2016-01-12T17:09:53.142227 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021719s
|
1856
|
+
D, [2016-01-12T17:09:53.143858 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000054'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1857
|
+
D, [2016-01-12T17:09:53.144399 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00046499999999999997s
|
1858
|
+
D, [2016-01-12T17:09:53.145844 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000054')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1859
|
+
D, [2016-01-12T17:09:53.146344 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000437s
|
1860
|
+
D, [2016-01-12T17:09:53.147368 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000054')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1861
|
+
D, [2016-01-12T17:09:53.147803 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000383s
|
1862
|
+
D, [2016-01-12T17:09:53.149939 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000055'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1863
|
+
D, [2016-01-12T17:09:53.172440 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022407000000000003s
|
1864
|
+
D, [2016-01-12T17:09:53.174018 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000056'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1865
|
+
D, [2016-01-12T17:09:53.174372 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030500000000000004s
|
1866
|
+
D, [2016-01-12T17:09:53.175544 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000054')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c000055')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1867
|
+
D, [2016-01-12T17:09:53.175944 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00034399999999999996s
|
1868
|
+
D, [2016-01-12T17:09:53.176562 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000054')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c000056')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1869
|
+
D, [2016-01-12T17:09:53.176938 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000298s
|
1870
|
+
D, [2016-01-12T17:09:53.177452 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c000054')}}
|
1871
|
+
D, [2016-01-12T17:09:53.177787 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00028199999999999997s
|
1872
|
+
D, [2016-01-12T17:09:53.178897 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c000056')]}}}
|
1873
|
+
D, [2016-01-12T17:09:53.179279 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000325s
|
1874
|
+
D, [2016-01-12T17:09:53.180259 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1875
|
+
D, [2016-01-12T17:09:53.180704 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000388s
|
1876
|
+
D, [2016-01-12T17:09:53.181059 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1877
|
+
D, [2016-01-12T17:09:53.181556 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000447s
|
1878
|
+
D, [2016-01-12T17:09:53.181811 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1879
|
+
D, [2016-01-12T17:09:53.193834 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011934s
|
1880
|
+
D, [2016-01-12T17:09:53.195233 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000057'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1881
|
+
D, [2016-01-12T17:09:53.216351 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02103s
|
1882
|
+
D, [2016-01-12T17:09:53.217725 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000058'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1883
|
+
D, [2016-01-12T17:09:53.218925 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000402s
|
1884
|
+
D, [2016-01-12T17:09:53.220127 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000058')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1885
|
+
D, [2016-01-12T17:09:53.220544 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000368s
|
1886
|
+
D, [2016-01-12T17:09:53.221501 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000058')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1887
|
+
D, [2016-01-12T17:09:53.222114 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000544s
|
1888
|
+
D, [2016-01-12T17:09:53.223817 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000059'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1889
|
+
D, [2016-01-12T17:09:53.245790 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021884s
|
1890
|
+
D, [2016-01-12T17:09:53.247331 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00005a'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1891
|
+
D, [2016-01-12T17:09:53.247674 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000297s
|
1892
|
+
D, [2016-01-12T17:09:53.248768 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000058')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c000059')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1893
|
+
D, [2016-01-12T17:09:53.249134 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000319s
|
1894
|
+
D, [2016-01-12T17:09:53.249770 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000058')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c00005a')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1895
|
+
D, [2016-01-12T17:09:53.250154 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000336s
|
1896
|
+
D, [2016-01-12T17:09:53.250686 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c000058')}}
|
1897
|
+
D, [2016-01-12T17:09:53.251098 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000359s
|
1898
|
+
D, [2016-01-12T17:09:53.252131 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c00005a')]}}}
|
1899
|
+
D, [2016-01-12T17:09:53.252493 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000313s
|
1900
|
+
D, [2016-01-12T17:09:53.253593 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000059')}}
|
1901
|
+
D, [2016-01-12T17:09:53.254041 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035099999999999997s
|
1902
|
+
D, [2016-01-12T17:09:53.254874 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1903
|
+
D, [2016-01-12T17:09:53.256038 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000346s
|
1904
|
+
D, [2016-01-12T17:09:53.256356 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1905
|
+
D, [2016-01-12T17:09:53.256847 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00045400000000000003s
|
1906
|
+
D, [2016-01-12T17:09:53.257176 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1907
|
+
D, [2016-01-12T17:09:53.268191 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010915999999999999s
|
1908
|
+
D, [2016-01-12T17:09:53.269578 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00005b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1909
|
+
D, [2016-01-12T17:09:53.291831 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02216s
|
1910
|
+
D, [2016-01-12T17:09:53.293303 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00005c'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1911
|
+
D, [2016-01-12T17:09:53.293814 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00043799999999999997s
|
1912
|
+
D, [2016-01-12T17:09:53.295460 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00005c')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1913
|
+
D, [2016-01-12T17:09:53.296134 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000569s
|
1914
|
+
D, [2016-01-12T17:09:53.297374 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00005c')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1915
|
+
D, [2016-01-12T17:09:53.297808 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000365s
|
1916
|
+
D, [2016-01-12T17:09:53.299085 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00005d'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1917
|
+
D, [2016-01-12T17:09:53.319223 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020041999999999997s
|
1918
|
+
D, [2016-01-12T17:09:53.320772 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00005e'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1919
|
+
D, [2016-01-12T17:09:53.321141 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000322s
|
1920
|
+
D, [2016-01-12T17:09:53.322518 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00005c')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c00005d')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1921
|
+
D, [2016-01-12T17:09:53.323071 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000479s
|
1922
|
+
D, [2016-01-12T17:09:53.323756 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00005c')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c00005e')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1923
|
+
D, [2016-01-12T17:09:53.324957 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00042s
|
1924
|
+
D, [2016-01-12T17:09:53.325501 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c00005c')}}
|
1925
|
+
D, [2016-01-12T17:09:53.325934 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000372s
|
1926
|
+
D, [2016-01-12T17:09:53.327119 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c00005e')]}}}
|
1927
|
+
D, [2016-01-12T17:09:53.327483 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031099999999999997s
|
1928
|
+
D, [2016-01-12T17:09:53.328341 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1929
|
+
D, [2016-01-12T17:09:53.328710 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030100000000000005s
|
1930
|
+
D, [2016-01-12T17:09:53.329133 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1931
|
+
D, [2016-01-12T17:09:53.329800 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0006010000000000001s
|
1932
|
+
D, [2016-01-12T17:09:53.330087 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1933
|
+
D, [2016-01-12T17:09:53.341674 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011487s
|
1934
|
+
D, [2016-01-12T17:09:53.343039 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00005f'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1935
|
+
D, [2016-01-12T17:09:53.365927 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022802s
|
1936
|
+
D, [2016-01-12T17:09:53.367291 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000060'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1937
|
+
D, [2016-01-12T17:09:53.367683 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034700000000000003s
|
1938
|
+
D, [2016-01-12T17:09:53.368809 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000060')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1939
|
+
D, [2016-01-12T17:09:53.369190 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000334s
|
1940
|
+
D, [2016-01-12T17:09:53.370040 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000060')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1941
|
+
D, [2016-01-12T17:09:53.370411 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000341s
|
1942
|
+
D, [2016-01-12T17:09:53.371581 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000061'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1943
|
+
D, [2016-01-12T17:09:53.412949 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.040542s
|
1944
|
+
D, [2016-01-12T17:09:53.414800 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000062'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1945
|
+
D, [2016-01-12T17:09:53.415283 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00040500000000000003s
|
1946
|
+
D, [2016-01-12T17:09:53.416785 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000060')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c000061')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1947
|
+
D, [2016-01-12T17:09:53.417358 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000503s
|
1948
|
+
D, [2016-01-12T17:09:53.418506 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000060')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c000062')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1949
|
+
D, [2016-01-12T17:09:53.419066 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00048499999999999997s
|
1950
|
+
D, [2016-01-12T17:09:53.419763 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c000060')}}
|
1951
|
+
D, [2016-01-12T17:09:53.420256 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000388s
|
1952
|
+
D, [2016-01-12T17:09:53.421745 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c000061'), BSON::ObjectId('56955d9155193b496c000062')]}}}
|
1953
|
+
D, [2016-01-12T17:09:53.422318 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000503s
|
1954
|
+
D, [2016-01-12T17:09:53.423554 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1955
|
+
D, [2016-01-12T17:09:53.424151 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000497s
|
1956
|
+
D, [2016-01-12T17:09:53.424618 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1957
|
+
D, [2016-01-12T17:09:53.425221 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000538s
|
1958
|
+
D, [2016-01-12T17:09:53.425567 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1959
|
+
D, [2016-01-12T17:09:53.452488 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.026809s
|
1960
|
+
D, [2016-01-12T17:09:53.454248 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000063'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1961
|
+
D, [2016-01-12T17:09:53.505676 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.051315000000000006s
|
1962
|
+
D, [2016-01-12T17:09:53.507454 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000064'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1963
|
+
D, [2016-01-12T17:09:53.508014 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000488s
|
1964
|
+
D, [2016-01-12T17:09:53.509589 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000064')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1965
|
+
D, [2016-01-12T17:09:53.511192 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0006s
|
1966
|
+
D, [2016-01-12T17:09:53.512480 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000064')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1967
|
+
D, [2016-01-12T17:09:53.512998 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000451s
|
1968
|
+
D, [2016-01-12T17:09:53.514578 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000065'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1969
|
+
D, [2016-01-12T17:09:53.565051 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.05035s
|
1970
|
+
D, [2016-01-12T17:09:53.567023 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000066'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1971
|
+
D, [2016-01-12T17:09:53.567570 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000478s
|
1972
|
+
D, [2016-01-12T17:09:53.569081 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000064')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c000065')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1973
|
+
D, [2016-01-12T17:09:53.569682 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000527s
|
1974
|
+
D, [2016-01-12T17:09:53.570610 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000064')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c000066')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1975
|
+
D, [2016-01-12T17:09:53.571141 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000466s
|
1976
|
+
D, [2016-01-12T17:09:53.571920 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c000064')}}
|
1977
|
+
D, [2016-01-12T17:09:53.572509 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00048400000000000006s
|
1978
|
+
D, [2016-01-12T17:09:53.573988 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c000065'), BSON::ObjectId('56955d9155193b496c000066')]}}}
|
1979
|
+
D, [2016-01-12T17:09:53.574550 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000479s
|
1980
|
+
D, [2016-01-12T17:09:53.575826 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
1981
|
+
D, [2016-01-12T17:09:53.576381 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00047s
|
1982
|
+
D, [2016-01-12T17:09:53.576756 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
1983
|
+
D, [2016-01-12T17:09:53.577384 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000567s
|
1984
|
+
D, [2016-01-12T17:09:53.577760 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
1985
|
+
D, [2016-01-12T17:09:53.597202 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018535s
|
1986
|
+
D, [2016-01-12T17:09:53.599078 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000067'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
1987
|
+
D, [2016-01-12T17:09:53.623584 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024384s
|
1988
|
+
D, [2016-01-12T17:09:53.625393 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000068'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
1989
|
+
D, [2016-01-12T17:09:53.626023 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000542s
|
1990
|
+
D, [2016-01-12T17:09:53.627786 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000068')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1991
|
+
D, [2016-01-12T17:09:53.628396 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000511s
|
1992
|
+
D, [2016-01-12T17:09:53.629949 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000068')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1993
|
+
D, [2016-01-12T17:09:53.630444 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000422s
|
1994
|
+
D, [2016-01-12T17:09:53.631911 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000069'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1995
|
+
D, [2016-01-12T17:09:53.653841 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021833s
|
1996
|
+
D, [2016-01-12T17:09:53.655477 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00006a'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
1997
|
+
D, [2016-01-12T17:09:53.655848 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000317s
|
1998
|
+
D, [2016-01-12T17:09:53.657036 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000068')}, "u"=>{"$set"=>{"addresses.0.band_id"=>BSON::ObjectId('56955d9155193b496c000069')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
1999
|
+
D, [2016-01-12T17:09:53.657419 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000332s
|
2000
|
+
D, [2016-01-12T17:09:53.658048 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c000068')}, "u"=>{"$set"=>{"addresses.1.band_id"=>BSON::ObjectId('56955d9155193b496c00006a')}}, "multi"=>false, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true...
|
2001
|
+
D, [2016-01-12T17:09:53.658398 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00030199999999999997s
|
2002
|
+
D, [2016-01-12T17:09:53.658871 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{:_id=>BSON::ObjectId('56955d9155193b496c000068')}}
|
2003
|
+
D, [2016-01-12T17:09:53.659932 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033099999999999997s
|
2004
|
+
D, [2016-01-12T17:09:53.661112 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c000069'), BSON::ObjectId('56955d9155193b496c00006a')]}}}
|
2005
|
+
D, [2016-01-12T17:09:53.661501 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000345s
|
2006
|
+
D, [2016-01-12T17:09:53.662475 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2007
|
+
D, [2016-01-12T17:09:53.662880 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000351s
|
2008
|
+
D, [2016-01-12T17:09:53.663313 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
|
2009
|
+
D, [2016-01-12T17:09:53.664044 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0006420000000000001s
|
2010
|
+
D, [2016-01-12T17:09:53.664421 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2011
|
+
D, [2016-01-12T17:09:53.676095 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011559999999999999s
|
2012
|
+
D, [2016-01-12T17:09:53.677457 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00006b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2013
|
+
D, [2016-01-12T17:09:53.705066 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027507999999999998s
|
2014
|
+
D, [2016-01-12T17:09:53.706773 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00006c'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9155193b496c00006b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2015
|
+
D, [2016-01-12T17:09:53.728111 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021236s
|
2016
|
+
D, [2016-01-12T17:09:53.729293 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00006b')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2017
|
+
D, [2016-01-12T17:09:53.729746 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000415s
|
2018
|
+
D, [2016-01-12T17:09:53.730687 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00006d'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9155193b496c00006b')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2019
|
+
D, [2016-01-12T17:09:53.731020 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000288s
|
2020
|
+
D, [2016-01-12T17:09:53.731721 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00006b')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2021
|
+
D, [2016-01-12T17:09:53.732092 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000326s
|
2022
|
+
D, [2016-01-12T17:09:53.732964 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2023
|
+
D, [2016-01-12T17:09:53.733392 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000362s
|
2024
|
+
D, [2016-01-12T17:09:53.734288 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c00006b')]}}}
|
2025
|
+
D, [2016-01-12T17:09:53.734613 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000277s
|
2026
|
+
D, [2016-01-12T17:09:53.736271 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2027
|
+
D, [2016-01-12T17:09:53.736664 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00032300000000000004s
|
2028
|
+
D, [2016-01-12T17:09:53.736969 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2029
|
+
D, [2016-01-12T17:09:53.737490 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000467s
|
2030
|
+
D, [2016-01-12T17:09:53.737756 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2031
|
+
D, [2016-01-12T17:09:53.756744 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018888s
|
2032
|
+
D, [2016-01-12T17:09:53.758193 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00006e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2033
|
+
D, [2016-01-12T17:09:53.780135 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021834s
|
2034
|
+
D, [2016-01-12T17:09:53.781841 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c00006f'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9155193b496c00006e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2035
|
+
D, [2016-01-12T17:09:53.839186 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.057229s
|
2036
|
+
D, [2016-01-12T17:09:53.840694 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00006e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2037
|
+
D, [2016-01-12T17:09:53.987129 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.14632399999999998s
|
2038
|
+
D, [2016-01-12T17:09:53.988828 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9155193b496c000070'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9155193b496c00006e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2039
|
+
D, [2016-01-12T17:09:53.989436 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000533s
|
2040
|
+
D, [2016-01-12T17:09:53.990544 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9155193b496c00006e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2041
|
+
D, [2016-01-12T17:09:53.991179 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000546s
|
2042
|
+
D, [2016-01-12T17:09:53.992446 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2043
|
+
D, [2016-01-12T17:09:53.993041 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00052s
|
2044
|
+
D, [2016-01-12T17:09:53.994174 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9155193b496c00006e')]}}}
|
2045
|
+
D, [2016-01-12T17:09:53.994693 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000419s
|
2046
|
+
D, [2016-01-12T17:09:53.996160 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2047
|
+
D, [2016-01-12T17:09:53.996658 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000425s
|
2048
|
+
D, [2016-01-12T17:09:53.997113 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2049
|
+
D, [2016-01-12T17:09:53.997734 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000552s
|
2050
|
+
D, [2016-01-12T17:09:53.998111 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2051
|
+
D, [2016-01-12T17:09:54.022704 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.024476s
|
2052
|
+
D, [2016-01-12T17:09:54.024408 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000071'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2053
|
+
D, [2016-01-12T17:09:54.046794 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022261999999999997s
|
2054
|
+
D, [2016-01-12T17:09:54.049055 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000072'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000071')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2055
|
+
D, [2016-01-12T17:09:54.078118 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028935s
|
2056
|
+
D, [2016-01-12T17:09:54.079532 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000071')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2057
|
+
D, [2016-01-12T17:09:54.080159 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000548s
|
2058
|
+
D, [2016-01-12T17:09:54.081394 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000073'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000071')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2059
|
+
D, [2016-01-12T17:09:54.081885 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000417s
|
2060
|
+
D, [2016-01-12T17:09:54.082919 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000071')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2061
|
+
D, [2016-01-12T17:09:54.083416 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00042100000000000004s
|
2062
|
+
D, [2016-01-12T17:09:54.084552 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2063
|
+
D, [2016-01-12T17:09:54.085056 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000432s
|
2064
|
+
D, [2016-01-12T17:09:54.086108 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000071')]}}}
|
2065
|
+
D, [2016-01-12T17:09:54.086565 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000387s
|
2066
|
+
D, [2016-01-12T17:09:54.087960 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2067
|
+
D, [2016-01-12T17:09:54.088458 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000424s
|
2068
|
+
D, [2016-01-12T17:09:54.088905 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2069
|
+
D, [2016-01-12T17:09:54.089515 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00054s
|
2070
|
+
D, [2016-01-12T17:09:54.089838 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2071
|
+
D, [2016-01-12T17:09:54.133263 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.043314000000000005s
|
2072
|
+
D, [2016-01-12T17:09:54.134943 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000074'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2073
|
+
D, [2016-01-12T17:09:54.201348 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.066279s
|
2074
|
+
D, [2016-01-12T17:09:54.203333 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000075'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000074')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2075
|
+
D, [2016-01-12T17:09:54.239979 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.036526s
|
2076
|
+
D, [2016-01-12T17:09:54.241324 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000074')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2077
|
+
D, [2016-01-12T17:09:54.241927 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00054s
|
2078
|
+
D, [2016-01-12T17:09:54.243032 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000076'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000074')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2079
|
+
D, [2016-01-12T17:09:54.243485 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000384s
|
2080
|
+
D, [2016-01-12T17:09:54.244538 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000074')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2081
|
+
D, [2016-01-12T17:09:54.244988 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00038s
|
2082
|
+
D, [2016-01-12T17:09:54.246063 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2083
|
+
D, [2016-01-12T17:09:54.246565 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000434s
|
2084
|
+
D, [2016-01-12T17:09:54.247517 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000074')]}}}
|
2085
|
+
D, [2016-01-12T17:09:54.248121 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000509s
|
2086
|
+
D, [2016-01-12T17:09:54.249519 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000074')}}
|
2087
|
+
D, [2016-01-12T17:09:54.250016 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000423s
|
2088
|
+
D, [2016-01-12T17:09:54.251198 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000074')]}}}
|
2089
|
+
D, [2016-01-12T17:09:54.251631 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000357s
|
2090
|
+
D, [2016-01-12T17:09:54.252462 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"posts", "query"=>{"person_id"=>BSON::ObjectId('56955d9255193b496c000074')}}
|
2091
|
+
D, [2016-01-12T17:09:54.252931 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.00039600000000000003s
|
2092
|
+
D, [2016-01-12T17:09:54.253946 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2093
|
+
D, [2016-01-12T17:09:54.255547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000536s
|
2094
|
+
D, [2016-01-12T17:09:54.256073 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2095
|
+
D, [2016-01-12T17:09:54.256785 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000629s
|
2096
|
+
D, [2016-01-12T17:09:54.257209 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2097
|
+
D, [2016-01-12T17:09:54.284427 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.027102s
|
2098
|
+
D, [2016-01-12T17:09:54.286115 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000077'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2099
|
+
D, [2016-01-12T17:09:54.322727 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.036496s
|
2100
|
+
D, [2016-01-12T17:09:54.324675 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000078'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000077')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2101
|
+
D, [2016-01-12T17:09:54.389991 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.065178s
|
2102
|
+
D, [2016-01-12T17:09:54.391590 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000077')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2103
|
+
D, [2016-01-12T17:09:54.392185 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000553s
|
2104
|
+
D, [2016-01-12T17:09:54.393407 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000079'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000077')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2105
|
+
D, [2016-01-12T17:09:54.393864 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00038100000000000005s
|
2106
|
+
D, [2016-01-12T17:09:54.394788 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000077')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2107
|
+
D, [2016-01-12T17:09:54.395354 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0004890000000000001s
|
2108
|
+
D, [2016-01-12T17:09:54.396508 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2109
|
+
D, [2016-01-12T17:09:54.397107 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000514s
|
2110
|
+
D, [2016-01-12T17:09:54.398072 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000077')]}}}
|
2111
|
+
D, [2016-01-12T17:09:54.398473 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00032199999999999997s
|
2112
|
+
D, [2016-01-12T17:09:54.399487 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2113
|
+
D, [2016-01-12T17:09:54.399944 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000388s
|
2114
|
+
D, [2016-01-12T17:09:54.400331 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2115
|
+
D, [2016-01-12T17:09:54.400960 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000562s
|
2116
|
+
D, [2016-01-12T17:09:54.401280 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2117
|
+
D, [2016-01-12T17:09:54.423315 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.021019s
|
2118
|
+
D, [2016-01-12T17:09:54.424750 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c00007a'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2119
|
+
D, [2016-01-12T17:09:54.462138 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.037285s
|
2120
|
+
D, [2016-01-12T17:09:54.464041 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c00007b'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c00007a')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2121
|
+
D, [2016-01-12T17:09:54.490484 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026331999999999998s
|
2122
|
+
D, [2016-01-12T17:09:54.491601 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c00007a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2123
|
+
D, [2016-01-12T17:09:54.492035 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000385s
|
2124
|
+
D, [2016-01-12T17:09:54.492905 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c00007c'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c00007a')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2125
|
+
D, [2016-01-12T17:09:54.493179 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00023s
|
2126
|
+
D, [2016-01-12T17:09:54.493798 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c00007a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2127
|
+
D, [2016-01-12T17:09:54.494310 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00038399999999999996s
|
2128
|
+
D, [2016-01-12T17:09:54.495352 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2129
|
+
D, [2016-01-12T17:09:54.495780 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000375s
|
2130
|
+
D, [2016-01-12T17:09:54.496545 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c00007a')]}}}
|
2131
|
+
D, [2016-01-12T17:09:54.496837 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000243s
|
2132
|
+
D, [2016-01-12T17:09:54.497899 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2133
|
+
D, [2016-01-12T17:09:54.498305 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000347s
|
2134
|
+
D, [2016-01-12T17:09:54.498634 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2135
|
+
D, [2016-01-12T17:09:54.499143 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000444s
|
2136
|
+
D, [2016-01-12T17:09:54.499393 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2137
|
+
D, [2016-01-12T17:09:54.513079 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013593000000000001s
|
2138
|
+
D, [2016-01-12T17:09:54.514552 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c00007d'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2139
|
+
D, [2016-01-12T17:09:54.537332 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022674s
|
2140
|
+
D, [2016-01-12T17:09:54.539059 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c00007e'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c00007d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2141
|
+
D, [2016-01-12T17:09:54.562459 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023315s
|
2142
|
+
D, [2016-01-12T17:09:54.563626 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c00007d')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2143
|
+
D, [2016-01-12T17:09:54.564126 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00045s
|
2144
|
+
D, [2016-01-12T17:09:54.565066 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c00007f'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c00007d')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2145
|
+
D, [2016-01-12T17:09:54.565365 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000246s
|
2146
|
+
D, [2016-01-12T17:09:54.566087 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c00007d')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2147
|
+
D, [2016-01-12T17:09:54.566417 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000283s
|
2148
|
+
D, [2016-01-12T17:09:54.567190 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2149
|
+
D, [2016-01-12T17:09:54.567551 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000317s
|
2150
|
+
D, [2016-01-12T17:09:54.568230 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c00007d')]}}}
|
2151
|
+
D, [2016-01-12T17:09:54.568528 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000254s
|
2152
|
+
D, [2016-01-12T17:09:54.569664 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2153
|
+
D, [2016-01-12T17:09:54.570060 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000336s
|
2154
|
+
D, [2016-01-12T17:09:54.570368 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2155
|
+
D, [2016-01-12T17:09:54.570854 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000439s
|
2156
|
+
D, [2016-01-12T17:09:54.571098 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2157
|
+
D, [2016-01-12T17:09:54.589224 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018035s
|
2158
|
+
D, [2016-01-12T17:09:54.590642 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000080'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2159
|
+
D, [2016-01-12T17:09:54.614404 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023622s
|
2160
|
+
D, [2016-01-12T17:09:54.617000 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000081'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000080')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2161
|
+
D, [2016-01-12T17:09:54.646038 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028104s
|
2162
|
+
D, [2016-01-12T17:09:54.647373 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000080')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2163
|
+
D, [2016-01-12T17:09:54.647922 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000483s
|
2164
|
+
D, [2016-01-12T17:09:54.649083 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000082'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000080')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2165
|
+
D, [2016-01-12T17:09:54.649539 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000392s
|
2166
|
+
D, [2016-01-12T17:09:54.650455 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000080')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2167
|
+
D, [2016-01-12T17:09:54.650906 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000385s
|
2168
|
+
D, [2016-01-12T17:09:54.652253 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2169
|
+
D, [2016-01-12T17:09:54.652730 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000418s
|
2170
|
+
D, [2016-01-12T17:09:54.653736 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000080')]}}}
|
2171
|
+
D, [2016-01-12T17:09:54.654193 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000386s
|
2172
|
+
D, [2016-01-12T17:09:54.655325 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2173
|
+
D, [2016-01-12T17:09:54.655823 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000416s
|
2174
|
+
D, [2016-01-12T17:09:54.656225 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2175
|
+
D, [2016-01-12T17:09:54.656882 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005790000000000001s
|
2176
|
+
D, [2016-01-12T17:09:54.657186 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2177
|
+
D, [2016-01-12T17:09:54.669698 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012417s
|
2178
|
+
D, [2016-01-12T17:09:54.671015 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000083'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2179
|
+
D, [2016-01-12T17:09:54.695221 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024123s
|
2180
|
+
D, [2016-01-12T17:09:54.696860 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000084'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000083')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2181
|
+
D, [2016-01-12T17:09:54.717403 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020435s
|
2182
|
+
D, [2016-01-12T17:09:54.718590 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000083')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2183
|
+
D, [2016-01-12T17:09:54.719743 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000422s
|
2184
|
+
D, [2016-01-12T17:09:54.720624 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000085'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000083')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2185
|
+
D, [2016-01-12T17:09:54.720971 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000301s
|
2186
|
+
D, [2016-01-12T17:09:54.721799 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000083')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2187
|
+
D, [2016-01-12T17:09:54.722158 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00030799999999999995s
|
2188
|
+
D, [2016-01-12T17:09:54.723172 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2189
|
+
D, [2016-01-12T17:09:54.723554 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033800000000000003s
|
2190
|
+
D, [2016-01-12T17:09:54.724294 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000083')]}}}
|
2191
|
+
D, [2016-01-12T17:09:54.732619 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.008209000000000001s
|
2192
|
+
D, [2016-01-12T17:09:54.734080 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2193
|
+
D, [2016-01-12T17:09:54.734618 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00042300000000000004s
|
2194
|
+
D, [2016-01-12T17:09:54.734964 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2195
|
+
D, [2016-01-12T17:09:54.735487 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00047200000000000003s
|
2196
|
+
D, [2016-01-12T17:09:54.735784 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2197
|
+
D, [2016-01-12T17:09:54.753484 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017596s
|
2198
|
+
D, [2016-01-12T17:09:54.755144 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000086'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2199
|
+
D, [2016-01-12T17:09:54.778456 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023215s
|
2200
|
+
D, [2016-01-12T17:09:54.780243 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000087'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000086')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2201
|
+
D, [2016-01-12T17:09:54.801593 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021249s
|
2202
|
+
D, [2016-01-12T17:09:54.802893 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000086')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2203
|
+
D, [2016-01-12T17:09:54.803604 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000641s
|
2204
|
+
D, [2016-01-12T17:09:54.804811 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000088'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000086')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2205
|
+
D, [2016-01-12T17:09:54.805809 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00029299999999999997s
|
2206
|
+
D, [2016-01-12T17:09:54.806549 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000086')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2207
|
+
D, [2016-01-12T17:09:54.806981 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00038s
|
2208
|
+
D, [2016-01-12T17:09:54.808002 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2209
|
+
D, [2016-01-12T17:09:54.808494 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
|
2210
|
+
D, [2016-01-12T17:09:54.809324 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000086')]}}}
|
2211
|
+
D, [2016-01-12T17:09:54.809663 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000293s
|
2212
|
+
D, [2016-01-12T17:09:54.811060 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2213
|
+
D, [2016-01-12T17:09:54.811471 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000348s
|
2214
|
+
D, [2016-01-12T17:09:54.811765 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2215
|
+
D, [2016-01-12T17:09:54.812300 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000428s
|
2216
|
+
D, [2016-01-12T17:09:54.812564 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2217
|
+
D, [2016-01-12T17:09:54.833748 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.021075s
|
2218
|
+
D, [2016-01-12T17:09:54.835733 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9255193b496c000089'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2219
|
+
D, [2016-01-12T17:09:55.003766 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.16791599999999998s
|
2220
|
+
D, [2016-01-12T17:09:55.006168 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00008a'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9255193b496c000089')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2221
|
+
D, [2016-01-12T17:09:55.029746 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023473s
|
2222
|
+
D, [2016-01-12T17:09:55.031259 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000089')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2223
|
+
D, [2016-01-12T17:09:55.031863 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000539s
|
2224
|
+
D, [2016-01-12T17:09:55.033196 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00008b'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9255193b496c000089')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2225
|
+
D, [2016-01-12T17:09:55.033650 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000385s
|
2226
|
+
D, [2016-01-12T17:09:55.034892 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9255193b496c000089')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2227
|
+
D, [2016-01-12T17:09:55.036051 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000444s
|
2228
|
+
D, [2016-01-12T17:09:55.037700 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00008c'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
2229
|
+
D, [2016-01-12T17:09:55.038111 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000347s
|
2230
|
+
D, [2016-01-12T17:09:55.039529 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00008d'), "title"=>"three", "person_id"=>BSON::ObjectId('56955d9355193b496c00008c')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2231
|
+
D, [2016-01-12T17:09:55.039978 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000381s
|
2232
|
+
D, [2016-01-12T17:09:55.041018 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c00008c')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2233
|
+
D, [2016-01-12T17:09:55.041386 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000312s
|
2234
|
+
D, [2016-01-12T17:09:55.042325 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
|
2235
|
+
D, [2016-01-12T17:09:55.044202 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.001614s
|
2236
|
+
D, [2016-01-12T17:09:55.045344 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9255193b496c000089')]}}}
|
2237
|
+
D, [2016-01-12T17:09:55.045698 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000304s
|
2238
|
+
D, [2016-01-12T17:09:55.046352 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
|
2239
|
+
D, [2016-01-12T17:09:55.046694 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000303s
|
2240
|
+
D, [2016-01-12T17:09:55.047623 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2241
|
+
D, [2016-01-12T17:09:55.048032 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00034500000000000004s
|
2242
|
+
D, [2016-01-12T17:09:55.048512 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2243
|
+
D, [2016-01-12T17:09:55.048981 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00042199999999999996s
|
2244
|
+
D, [2016-01-12T17:09:55.049222 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2245
|
+
D, [2016-01-12T17:09:55.064956 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.015638s
|
2246
|
+
D, [2016-01-12T17:09:55.066589 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00008e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2247
|
+
D, [2016-01-12T17:09:55.088673 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021995s
|
2248
|
+
D, [2016-01-12T17:09:55.090304 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00008f'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9355193b496c00008e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2249
|
+
D, [2016-01-12T17:09:55.111801 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020701s
|
2250
|
+
D, [2016-01-12T17:09:55.113009 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c00008e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2251
|
+
D, [2016-01-12T17:09:55.113628 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000537s
|
2252
|
+
D, [2016-01-12T17:09:55.114556 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000090'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9355193b496c00008e')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2253
|
+
D, [2016-01-12T17:09:55.114885 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000273s
|
2254
|
+
D, [2016-01-12T17:09:55.115664 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c00008e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2255
|
+
D, [2016-01-12T17:09:55.116033 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00028s
|
2256
|
+
D, [2016-01-12T17:09:55.117200 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000091'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
2257
|
+
D, [2016-01-12T17:09:55.117508 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000263s
|
2258
|
+
D, [2016-01-12T17:09:55.118532 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000092'), "title"=>"three", "person_id"=>BSON::ObjectId('56955d9355193b496c000091')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2259
|
+
D, [2016-01-12T17:09:55.118837 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000256s
|
2260
|
+
D, [2016-01-12T17:09:55.119526 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c000091')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2261
|
+
D, [2016-01-12T17:09:55.119857 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000286s
|
2262
|
+
D, [2016-01-12T17:09:55.120655 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
|
2263
|
+
D, [2016-01-12T17:09:55.121098 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00039600000000000003s
|
2264
|
+
D, [2016-01-12T17:09:55.121802 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00008e')]}}}
|
2265
|
+
D, [2016-01-12T17:09:55.122096 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000248s
|
2266
|
+
D, [2016-01-12T17:09:55.123119 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2267
|
+
D, [2016-01-12T17:09:55.123506 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000334s
|
2268
|
+
D, [2016-01-12T17:09:55.123831 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2269
|
+
D, [2016-01-12T17:09:55.125056 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000451s
|
2270
|
+
D, [2016-01-12T17:09:55.125373 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2271
|
+
D, [2016-01-12T17:09:55.137115 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011654s
|
2272
|
+
D, [2016-01-12T17:09:55.138468 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000093'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2273
|
+
D, [2016-01-12T17:09:55.159754 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021197999999999998s
|
2274
|
+
D, [2016-01-12T17:09:55.161384 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000094'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9355193b496c000093')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2275
|
+
D, [2016-01-12T17:09:55.182812 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021332999999999998s
|
2276
|
+
D, [2016-01-12T17:09:55.183983 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c000093')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2277
|
+
D, [2016-01-12T17:09:55.184458 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000426s
|
2278
|
+
D, [2016-01-12T17:09:55.185388 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000095'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9355193b496c000093')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2279
|
+
D, [2016-01-12T17:09:55.185728 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00029099999999999997s
|
2280
|
+
D, [2016-01-12T17:09:55.186465 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c000093')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2281
|
+
D, [2016-01-12T17:09:55.187029 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00044699999999999997s
|
2282
|
+
D, [2016-01-12T17:09:55.188789 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000096'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
2283
|
+
D, [2016-01-12T17:09:55.189336 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00047400000000000003s
|
2284
|
+
D, [2016-01-12T17:09:55.190659 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000097'), "title"=>"three", "person_id"=>BSON::ObjectId('56955d9355193b496c000096')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2285
|
+
D, [2016-01-12T17:09:55.190982 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000274s
|
2286
|
+
D, [2016-01-12T17:09:55.191872 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9355193b496c000096')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2287
|
+
D, [2016-01-12T17:09:55.192366 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000431s
|
2288
|
+
D, [2016-01-12T17:09:55.193574 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
|
2289
|
+
D, [2016-01-12T17:09:55.195227 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000731s
|
2290
|
+
D, [2016-01-12T17:09:55.196217 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c000093')]}}}
|
2291
|
+
D, [2016-01-12T17:09:55.196666 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000379s
|
2292
|
+
D, [2016-01-12T17:09:55.198271 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2293
|
+
D, [2016-01-12T17:09:55.198800 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000453s
|
2294
|
+
D, [2016-01-12T17:09:55.199286 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2295
|
+
D, [2016-01-12T17:09:55.199957 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000601s
|
2296
|
+
D, [2016-01-12T17:09:55.200300 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2297
|
+
D, [2016-01-12T17:09:55.213277 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01287s
|
2298
|
+
D, [2016-01-12T17:09:55.214907 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000098'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2299
|
+
D, [2016-01-12T17:09:55.239762 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024761s
|
2300
|
+
D, [2016-01-12T17:09:55.242031 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c000099'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c000098')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2301
|
+
D, [2016-01-12T17:09:55.266931 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024791s
|
2302
|
+
D, [2016-01-12T17:09:55.268141 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c000098')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c000099')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2303
|
+
D, [2016-01-12T17:09:55.268671 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000483s
|
2304
|
+
D, [2016-01-12T17:09:55.269608 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00009a'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c000098')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2305
|
+
D, [2016-01-12T17:09:55.269946 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00025299999999999997s
|
2306
|
+
D, [2016-01-12T17:09:55.270799 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c000098')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c00009a')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2307
|
+
D, [2016-01-12T17:09:55.271303 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000443s
|
2308
|
+
D, [2016-01-12T17:09:55.272022 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2309
|
+
D, [2016-01-12T17:09:55.272423 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000358s
|
2310
|
+
D, [2016-01-12T17:09:55.273287 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c000099'), BSON::ObjectId('56955d9355193b496c00009a')]}}}
|
2311
|
+
D, [2016-01-12T17:09:55.274318 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000308s
|
2312
|
+
D, [2016-01-12T17:09:55.275160 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2313
|
+
D, [2016-01-12T17:09:55.275571 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000355s
|
2314
|
+
D, [2016-01-12T17:09:55.275870 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2315
|
+
D, [2016-01-12T17:09:55.276366 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000432s
|
2316
|
+
D, [2016-01-12T17:09:55.276648 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2317
|
+
D, [2016-01-12T17:09:55.288505 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011767999999999999s
|
2318
|
+
D, [2016-01-12T17:09:55.289891 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00009b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2319
|
+
D, [2016-01-12T17:09:55.313903 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023918s
|
2320
|
+
D, [2016-01-12T17:09:55.315528 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00009c'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c00009b')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2321
|
+
D, [2016-01-12T17:09:55.341996 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026371s
|
2322
|
+
D, [2016-01-12T17:09:55.343152 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00009b')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c00009c')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2323
|
+
D, [2016-01-12T17:09:55.343795 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005329999999999999s
|
2324
|
+
D, [2016-01-12T17:09:55.344924 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00009d'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c00009b')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2325
|
+
D, [2016-01-12T17:09:55.345428 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000444s
|
2326
|
+
D, [2016-01-12T17:09:55.346142 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00009b')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c00009d')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2327
|
+
D, [2016-01-12T17:09:55.346545 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000355s
|
2328
|
+
D, [2016-01-12T17:09:55.347284 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2329
|
+
D, [2016-01-12T17:09:55.347745 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00041s
|
2330
|
+
D, [2016-01-12T17:09:55.348549 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00009c'), BSON::ObjectId('56955d9355193b496c00009d')]}}}
|
2331
|
+
D, [2016-01-12T17:09:55.348895 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000297s
|
2332
|
+
D, [2016-01-12T17:09:55.350629 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2333
|
+
D, [2016-01-12T17:09:55.351041 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00035600000000000003s
|
2334
|
+
D, [2016-01-12T17:09:55.351327 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2335
|
+
D, [2016-01-12T17:09:55.351815 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000433s
|
2336
|
+
D, [2016-01-12T17:09:55.352126 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2337
|
+
D, [2016-01-12T17:09:55.364220 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012007s
|
2338
|
+
D, [2016-01-12T17:09:55.365573 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00009e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:...
|
2339
|
+
D, [2016-01-12T17:09:55.421996 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.056316s
|
2340
|
+
D, [2016-01-12T17:09:55.424101 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c00009f'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c00009e')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2341
|
+
D, [2016-01-12T17:09:55.474047 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.049840999999999996s
|
2342
|
+
D, [2016-01-12T17:09:55.475200 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00009e')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c00009f')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2343
|
+
D, [2016-01-12T17:09:55.475846 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000572s
|
2344
|
+
D, [2016-01-12T17:09:55.477090 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a0'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c00009e')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2345
|
+
D, [2016-01-12T17:09:55.477564 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000365s
|
2346
|
+
D, [2016-01-12T17:09:55.478359 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00009e')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a0')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2347
|
+
D, [2016-01-12T17:09:55.478821 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000405s
|
2348
|
+
D, [2016-01-12T17:09:55.479600 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2349
|
+
D, [2016-01-12T17:09:55.480043 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00039299999999999996s
|
2350
|
+
D, [2016-01-12T17:09:55.481190 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c00009f'), BSON::ObjectId('56955d9355193b496c0000a0')]}}}
|
2351
|
+
D, [2016-01-12T17:09:55.481660 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000387s
|
2352
|
+
D, [2016-01-12T17:09:55.482884 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2353
|
+
D, [2016-01-12T17:09:55.484032 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000401s
|
2354
|
+
D, [2016-01-12T17:09:55.484355 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2355
|
+
D, [2016-01-12T17:09:55.484919 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000506s
|
2356
|
+
D, [2016-01-12T17:09:55.485254 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2357
|
+
D, [2016-01-12T17:09:55.513290 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.027933s
|
2358
|
+
D, [2016-01-12T17:09:55.515019 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a1'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2359
|
+
D, [2016-01-12T17:09:55.562039 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.046901000000000005s
|
2360
|
+
D, [2016-01-12T17:09:55.564119 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a2'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000a1')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2361
|
+
D, [2016-01-12T17:09:55.625826 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.061583s
|
2362
|
+
D, [2016-01-12T17:09:55.627256 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a1')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a2')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2363
|
+
D, [2016-01-12T17:09:55.628077 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000751s
|
2364
|
+
D, [2016-01-12T17:09:55.629433 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a3'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000a1')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2365
|
+
D, [2016-01-12T17:09:55.629843 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000335s
|
2366
|
+
D, [2016-01-12T17:09:55.630742 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a1')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a3')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2367
|
+
D, [2016-01-12T17:09:55.631254 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000448s
|
2368
|
+
D, [2016-01-12T17:09:55.632214 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2369
|
+
D, [2016-01-12T17:09:55.632736 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00045700000000000005s
|
2370
|
+
D, [2016-01-12T17:09:55.633777 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a2'), BSON::ObjectId('56955d9355193b496c0000a3')]}}}
|
2371
|
+
D, [2016-01-12T17:09:55.634332 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00047999999999999996s
|
2372
|
+
D, [2016-01-12T17:09:55.635393 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2373
|
+
D, [2016-01-12T17:09:55.636026 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000543s
|
2374
|
+
D, [2016-01-12T17:09:55.636493 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2375
|
+
D, [2016-01-12T17:09:55.638064 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000632s
|
2376
|
+
D, [2016-01-12T17:09:55.638672 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2377
|
+
D, [2016-01-12T17:09:55.664910 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.026121s
|
2378
|
+
D, [2016-01-12T17:09:55.666659 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a4'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2379
|
+
D, [2016-01-12T17:09:55.711498 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.044727s
|
2380
|
+
D, [2016-01-12T17:09:55.713525 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a5'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000a4')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2381
|
+
D, [2016-01-12T17:09:55.734184 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020567s
|
2382
|
+
D, [2016-01-12T17:09:55.735212 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a4')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a5')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2383
|
+
D, [2016-01-12T17:09:55.735708 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000451s
|
2384
|
+
D, [2016-01-12T17:09:55.736681 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a6'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000a4')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2385
|
+
D, [2016-01-12T17:09:55.736982 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00025299999999999997s
|
2386
|
+
D, [2016-01-12T17:09:55.737666 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a4')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a6')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2387
|
+
D, [2016-01-12T17:09:55.738070 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000355s
|
2388
|
+
D, [2016-01-12T17:09:55.738859 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2389
|
+
D, [2016-01-12T17:09:55.739237 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033299999999999996s
|
2390
|
+
D, [2016-01-12T17:09:55.740065 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a5'), BSON::ObjectId('56955d9355193b496c0000a6')]}}}
|
2391
|
+
D, [2016-01-12T17:09:55.740430 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000317s
|
2392
|
+
D, [2016-01-12T17:09:55.741471 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2393
|
+
D, [2016-01-12T17:09:55.741892 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00036s
|
2394
|
+
D, [2016-01-12T17:09:55.742188 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2395
|
+
D, [2016-01-12T17:09:55.742680 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000444s
|
2396
|
+
D, [2016-01-12T17:09:55.742924 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2397
|
+
D, [2016-01-12T17:09:55.755197 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011468s
|
2398
|
+
D, [2016-01-12T17:09:55.756614 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a7'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2399
|
+
D, [2016-01-12T17:09:55.781549 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024847s
|
2400
|
+
D, [2016-01-12T17:09:55.783228 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a8'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000a7')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2401
|
+
D, [2016-01-12T17:09:55.813881 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.030536s
|
2402
|
+
D, [2016-01-12T17:09:55.815312 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a7')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a8')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2403
|
+
D, [2016-01-12T17:09:55.816048 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0006649999999999999s
|
2404
|
+
D, [2016-01-12T17:09:55.817309 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000a9'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000a7')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2405
|
+
D, [2016-01-12T17:09:55.817896 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000458s
|
2406
|
+
D, [2016-01-12T17:09:55.818887 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a7')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000a9')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2407
|
+
D, [2016-01-12T17:09:55.819450 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000433s
|
2408
|
+
D, [2016-01-12T17:09:55.820446 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2409
|
+
D, [2016-01-12T17:09:55.820990 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00048s
|
2410
|
+
D, [2016-01-12T17:09:55.822216 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000a8'), BSON::ObjectId('56955d9355193b496c0000a9')]}}}
|
2411
|
+
D, [2016-01-12T17:09:55.822738 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000438s
|
2412
|
+
D, [2016-01-12T17:09:55.824248 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2413
|
+
D, [2016-01-12T17:09:55.824709 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000382s
|
2414
|
+
D, [2016-01-12T17:09:55.825163 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2415
|
+
D, [2016-01-12T17:09:55.825748 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000523s
|
2416
|
+
D, [2016-01-12T17:09:55.826067 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2417
|
+
D, [2016-01-12T17:09:55.838168 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011979s
|
2418
|
+
D, [2016-01-12T17:09:55.839488 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000aa'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2419
|
+
D, [2016-01-12T17:09:55.996094 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.156498s
|
2420
|
+
D, [2016-01-12T17:09:55.998060 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9355193b496c0000ab'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000aa')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2421
|
+
D, [2016-01-12T17:09:56.024250 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026078s
|
2422
|
+
D, [2016-01-12T17:09:56.025622 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000aa')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9355193b496c0000ab')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2423
|
+
D, [2016-01-12T17:09:56.026380 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0006929999999999999s
|
2424
|
+
D, [2016-01-12T17:09:56.027547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000ac'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9355193b496c0000aa')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2425
|
+
D, [2016-01-12T17:09:56.027991 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034899999999999997s
|
2426
|
+
D, [2016-01-12T17:09:56.028968 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000aa')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9455193b496c0000ac')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2427
|
+
D, [2016-01-12T17:09:56.029539 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000502s
|
2428
|
+
D, [2016-01-12T17:09:56.030576 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2429
|
+
D, [2016-01-12T17:09:56.031124 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00047599999999999997s
|
2430
|
+
D, [2016-01-12T17:09:56.032208 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9355193b496c0000ab'), BSON::ObjectId('56955d9455193b496c0000ac')]}}}
|
2431
|
+
D, [2016-01-12T17:09:56.032729 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000442s
|
2432
|
+
D, [2016-01-12T17:09:56.033704 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2433
|
+
D, [2016-01-12T17:09:56.034109 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000341s
|
2434
|
+
D, [2016-01-12T17:09:56.034461 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2435
|
+
D, [2016-01-12T17:09:56.034984 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000468s
|
2436
|
+
D, [2016-01-12T17:09:56.035271 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2437
|
+
D, [2016-01-12T17:09:56.047761 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012398s
|
2438
|
+
D, [2016-01-12T17:09:56.049172 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000ad'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2439
|
+
D, [2016-01-12T17:09:56.069995 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020724s
|
2440
|
+
D, [2016-01-12T17:09:56.071685 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000ae'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9455193b496c0000ad')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2441
|
+
D, [2016-01-12T17:09:56.128757 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.056971s
|
2442
|
+
D, [2016-01-12T17:09:56.130063 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000ad')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9455193b496c0000ae')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2443
|
+
D, [2016-01-12T17:09:56.130805 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000679s
|
2444
|
+
D, [2016-01-12T17:09:56.132045 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000af'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9455193b496c0000ad')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2445
|
+
D, [2016-01-12T17:09:56.132535 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000418s
|
2446
|
+
D, [2016-01-12T17:09:56.133449 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000ad')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9455193b496c0000af')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2447
|
+
D, [2016-01-12T17:09:56.133980 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00047799999999999996s
|
2448
|
+
D, [2016-01-12T17:09:56.134956 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2449
|
+
D, [2016-01-12T17:09:56.135580 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000546s
|
2450
|
+
D, [2016-01-12T17:09:56.136699 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000ae'), BSON::ObjectId('56955d9455193b496c0000af')]}}}
|
2451
|
+
D, [2016-01-12T17:09:56.137222 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000443s
|
2452
|
+
D, [2016-01-12T17:09:56.138780 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2453
|
+
D, [2016-01-12T17:09:56.139437 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000571s
|
2454
|
+
D, [2016-01-12T17:09:56.139915 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2455
|
+
D, [2016-01-12T17:09:56.140618 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00063s
|
2456
|
+
D, [2016-01-12T17:09:56.141014 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2457
|
+
D, [2016-01-12T17:09:56.141627 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000571s
|
2458
|
+
D, [2016-01-12T17:09:56.143086 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b0'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2459
|
+
D, [2016-01-12T17:09:56.202029 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.058831s
|
2460
|
+
D, [2016-01-12T17:09:56.204134 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b1'), "name"=>"one", "person_ids"=>[BSON::ObjectId('56955d9455193b496c0000b0')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2461
|
+
D, [2016-01-12T17:09:56.247096 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.042020999999999996s
|
2462
|
+
D, [2016-01-12T17:09:56.248522 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000b0')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9455193b496c0000b1')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2463
|
+
D, [2016-01-12T17:09:56.249467 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000778s
|
2464
|
+
D, [2016-01-12T17:09:56.250737 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b2'), "name"=>"two", "person_ids"=>[BSON::ObjectId('56955d9455193b496c0000b0')]}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2465
|
+
D, [2016-01-12T17:09:56.251217 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000409s
|
2466
|
+
D, [2016-01-12T17:09:56.252255 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000b0')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('56955d9455193b496c0000b2')}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:...
|
2467
|
+
D, [2016-01-12T17:09:56.252856 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000525s
|
2468
|
+
D, [2016-01-12T17:09:56.253920 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2469
|
+
D, [2016-01-12T17:09:56.254446 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00045400000000000003s
|
2470
|
+
D, [2016-01-12T17:09:56.255623 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000b1'), BSON::ObjectId('56955d9455193b496c0000b2')]}}}
|
2471
|
+
D, [2016-01-12T17:09:56.256153 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000454s
|
2472
|
+
D, [2016-01-12T17:09:56.257728 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2473
|
+
D, [2016-01-12T17:09:56.258259 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000453s
|
2474
|
+
D, [2016-01-12T17:09:56.258677 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2475
|
+
D, [2016-01-12T17:09:56.259285 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005440000000000001s
|
2476
|
+
D, [2016-01-12T17:09:56.259669 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
|
2477
|
+
D, [2016-01-12T17:09:56.272450 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012664s
|
2478
|
+
D, [2016-01-12T17:09:56.274165 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b3'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2479
|
+
D, [2016-01-12T17:09:56.295352 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021091000000000002s
|
2480
|
+
D, [2016-01-12T17:09:56.297235 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b4'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9455193b496c0000b3')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2481
|
+
D, [2016-01-12T17:09:56.320883 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022805000000000002s
|
2482
|
+
D, [2016-01-12T17:09:56.321875 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000b3')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2483
|
+
D, [2016-01-12T17:09:56.322568 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0006609999999999999s
|
2484
|
+
D, [2016-01-12T17:09:56.323487 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b5'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9455193b496c0000b3')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2485
|
+
D, [2016-01-12T17:09:56.323829 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000297s
|
2486
|
+
D, [2016-01-12T17:09:56.324465 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000b3')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2487
|
+
D, [2016-01-12T17:09:56.324919 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000392s
|
2488
|
+
D, [2016-01-12T17:09:56.325666 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2489
|
+
D, [2016-01-12T17:09:56.326033 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000351s
|
2490
|
+
D, [2016-01-12T17:09:56.326738 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000b3')]}}}
|
2491
|
+
D, [2016-01-12T17:09:56.327057 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000255s
|
2492
|
+
D, [2016-01-12T17:09:56.327846 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2493
|
+
D, [2016-01-12T17:09:56.328218 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00032s
|
2494
|
+
D, [2016-01-12T17:09:56.328567 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2495
|
+
D, [2016-01-12T17:09:56.329083 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00045799999999999997s
|
2496
|
+
D, [2016-01-12T17:09:56.329365 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2497
|
+
D, [2016-01-12T17:09:56.355264 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.02576s
|
2498
|
+
D, [2016-01-12T17:09:56.357010 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b6'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2499
|
+
D, [2016-01-12T17:09:56.390829 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.033721s
|
2500
|
+
D, [2016-01-12T17:09:56.392482 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b7'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9455193b496c0000b6')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2501
|
+
D, [2016-01-12T17:09:56.451877 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.059289s
|
2502
|
+
D, [2016-01-12T17:09:56.453117 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000b6')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2503
|
+
D, [2016-01-12T17:09:56.454673 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0006129999999999999s
|
2504
|
+
D, [2016-01-12T17:09:56.456036 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b8'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9455193b496c0000b6')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2505
|
+
D, [2016-01-12T17:09:56.456540 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00043099999999999996s
|
2506
|
+
D, [2016-01-12T17:09:56.457435 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000b6')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2507
|
+
D, [2016-01-12T17:09:56.457945 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000433s
|
2508
|
+
D, [2016-01-12T17:09:56.459104 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2509
|
+
D, [2016-01-12T17:09:56.459596 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00042500000000000003s
|
2510
|
+
D, [2016-01-12T17:09:56.460656 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000b6')]}}}
|
2511
|
+
D, [2016-01-12T17:09:56.461112 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037600000000000003s
|
2512
|
+
D, [2016-01-12T17:09:56.462550 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2513
|
+
D, [2016-01-12T17:09:56.463063 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00044s
|
2514
|
+
D, [2016-01-12T17:09:56.463472 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2515
|
+
D, [2016-01-12T17:09:56.464166 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000571s
|
2516
|
+
D, [2016-01-12T17:09:56.464503 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2517
|
+
D, [2016-01-12T17:09:56.488362 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.023757999999999998s
|
2518
|
+
D, [2016-01-12T17:09:56.489798 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000b9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2519
|
+
D, [2016-01-12T17:09:56.550543 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.06064s
|
2520
|
+
D, [2016-01-12T17:09:56.552529 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000ba'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9455193b496c0000b9')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2521
|
+
D, [2016-01-12T17:09:56.615870 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.063196s
|
2522
|
+
D, [2016-01-12T17:09:56.617095 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000b9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2523
|
+
D, [2016-01-12T17:09:56.617693 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000534s
|
2524
|
+
D, [2016-01-12T17:09:56.618908 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000bb'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9455193b496c0000b9')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2525
|
+
D, [2016-01-12T17:09:56.620230 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00041000000000000005s
|
2526
|
+
D, [2016-01-12T17:09:56.621061 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000b9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2527
|
+
D, [2016-01-12T17:09:56.621531 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039999999999999996s
|
2528
|
+
D, [2016-01-12T17:09:56.622567 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2529
|
+
D, [2016-01-12T17:09:56.623117 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00048s
|
2530
|
+
D, [2016-01-12T17:09:56.624078 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000b9')]}}}
|
2531
|
+
D, [2016-01-12T17:09:56.624437 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029299999999999997s
|
2532
|
+
D, [2016-01-12T17:09:56.625665 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2533
|
+
D, [2016-01-12T17:09:56.626105 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000351s
|
2534
|
+
D, [2016-01-12T17:09:56.626469 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2535
|
+
D, [2016-01-12T17:09:56.627005 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00048199999999999995s
|
2536
|
+
D, [2016-01-12T17:09:56.627294 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2537
|
+
D, [2016-01-12T17:09:56.666073 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.038675s
|
2538
|
+
D, [2016-01-12T17:09:56.667816 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000bc'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2539
|
+
D, [2016-01-12T17:09:56.721131 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.053209s
|
2540
|
+
D, [2016-01-12T17:09:56.723090 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000bd'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9455193b496c0000bc')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2541
|
+
D, [2016-01-12T17:09:56.746253 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023042999999999998s
|
2542
|
+
D, [2016-01-12T17:09:56.747694 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000bc')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2543
|
+
D, [2016-01-12T17:09:56.748370 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000599s
|
2544
|
+
D, [2016-01-12T17:09:56.749632 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000be'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9455193b496c0000bc')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2545
|
+
D, [2016-01-12T17:09:56.750047 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034700000000000003s
|
2546
|
+
D, [2016-01-12T17:09:56.750934 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000bc')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2547
|
+
D, [2016-01-12T17:09:56.752320 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000454s
|
2548
|
+
D, [2016-01-12T17:09:56.753377 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2549
|
+
D, [2016-01-12T17:09:56.753954 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000512s
|
2550
|
+
D, [2016-01-12T17:09:56.755012 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000bc')]}}}
|
2551
|
+
D, [2016-01-12T17:09:56.755350 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000272s
|
2552
|
+
D, [2016-01-12T17:09:56.756414 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2553
|
+
D, [2016-01-12T17:09:56.756897 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000435s
|
2554
|
+
D, [2016-01-12T17:09:56.757255 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2555
|
+
D, [2016-01-12T17:09:56.757811 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000486s
|
2556
|
+
D, [2016-01-12T17:09:56.758096 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2557
|
+
D, [2016-01-12T17:09:56.770435 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012246s
|
2558
|
+
D, [2016-01-12T17:09:56.771825 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000bf'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2559
|
+
D, [2016-01-12T17:09:56.801015 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.029072999999999998s
|
2560
|
+
D, [2016-01-12T17:09:56.803086 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000c0'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9455193b496c0000bf')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2561
|
+
D, [2016-01-12T17:09:56.853612 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.050416s
|
2562
|
+
D, [2016-01-12T17:09:56.854906 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000bf')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2563
|
+
D, [2016-01-12T17:09:56.855550 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005679999999999999s
|
2564
|
+
D, [2016-01-12T17:09:56.856894 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9455193b496c0000c1'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9455193b496c0000bf')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2565
|
+
D, [2016-01-12T17:09:56.857400 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000442s
|
2566
|
+
D, [2016-01-12T17:09:56.858352 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9455193b496c0000bf')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2567
|
+
D, [2016-01-12T17:09:56.858873 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000446s
|
2568
|
+
D, [2016-01-12T17:09:56.859958 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2569
|
+
D, [2016-01-12T17:09:57.007409 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.146441s
|
2570
|
+
D, [2016-01-12T17:09:57.008642 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9455193b496c0000bf')]}}}
|
2571
|
+
D, [2016-01-12T17:09:57.009073 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000374s
|
2572
|
+
D, [2016-01-12T17:09:57.009580 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2573
|
+
D, [2016-01-12T17:09:57.009933 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031s
|
2574
|
+
D, [2016-01-12T17:09:57.010797 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2575
|
+
D, [2016-01-12T17:09:57.011156 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000309s
|
2576
|
+
D, [2016-01-12T17:09:57.011467 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2577
|
+
D, [2016-01-12T17:09:57.011974 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00045299999999999995s
|
2578
|
+
D, [2016-01-12T17:09:57.012406 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2579
|
+
D, [2016-01-12T17:09:57.033611 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.021106999999999997s
|
2580
|
+
D, [2016-01-12T17:09:57.034998 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c2'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2581
|
+
D, [2016-01-12T17:09:57.059591 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024506999999999998s
|
2582
|
+
D, [2016-01-12T17:09:57.061469 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c3'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000c2')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2583
|
+
D, [2016-01-12T17:09:57.082718 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021136000000000002s
|
2584
|
+
D, [2016-01-12T17:09:57.083747 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000c2')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2585
|
+
D, [2016-01-12T17:09:57.084198 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000405s
|
2586
|
+
D, [2016-01-12T17:09:57.085117 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c4'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000c2')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2587
|
+
D, [2016-01-12T17:09:57.085470 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000307s
|
2588
|
+
D, [2016-01-12T17:09:57.086011 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000c2')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2589
|
+
D, [2016-01-12T17:09:57.086353 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000298s
|
2590
|
+
D, [2016-01-12T17:09:57.087281 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2591
|
+
D, [2016-01-12T17:09:57.087836 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000496s
|
2592
|
+
D, [2016-01-12T17:09:57.089262 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000c2')]}}}
|
2593
|
+
D, [2016-01-12T17:09:57.089560 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00025s
|
2594
|
+
D, [2016-01-12T17:09:57.090423 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2595
|
+
D, [2016-01-12T17:09:57.090782 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030700000000000004s
|
2596
|
+
D, [2016-01-12T17:09:57.091093 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2597
|
+
D, [2016-01-12T17:09:57.091602 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000455s
|
2598
|
+
D, [2016-01-12T17:09:57.092175 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2599
|
+
D, [2016-01-12T17:09:57.109675 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017399s
|
2600
|
+
D, [2016-01-12T17:09:57.110925 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c5'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2601
|
+
D, [2016-01-12T17:09:57.133094 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022071s
|
2602
|
+
D, [2016-01-12T17:09:57.134547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c6'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000c5')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2603
|
+
D, [2016-01-12T17:09:57.155608 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02097s
|
2604
|
+
D, [2016-01-12T17:09:57.156620 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000c5')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2605
|
+
D, [2016-01-12T17:09:57.157069 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0004s
|
2606
|
+
D, [2016-01-12T17:09:57.157997 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c7'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000c5')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2607
|
+
D, [2016-01-12T17:09:57.158339 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000295s
|
2608
|
+
D, [2016-01-12T17:09:57.158875 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000c5')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2609
|
+
D, [2016-01-12T17:09:57.159228 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000309s
|
2610
|
+
D, [2016-01-12T17:09:57.160025 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}}
|
2611
|
+
D, [2016-01-12T17:09:57.160439 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000357s
|
2612
|
+
D, [2016-01-12T17:09:57.161190 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000c5')]}}}
|
2613
|
+
D, [2016-01-12T17:09:57.161482 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000246s
|
2614
|
+
D, [2016-01-12T17:09:57.162686 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2615
|
+
D, [2016-01-12T17:09:57.163013 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000282s
|
2616
|
+
D, [2016-01-12T17:09:57.163788 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2617
|
+
D, [2016-01-12T17:09:57.164138 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000299s
|
2618
|
+
D, [2016-01-12T17:09:57.164414 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2619
|
+
D, [2016-01-12T17:09:57.164878 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000417s
|
2620
|
+
D, [2016-01-12T17:09:57.165115 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2621
|
+
D, [2016-01-12T17:09:57.183536 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018328s
|
2622
|
+
D, [2016-01-12T17:09:57.184901 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c8'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2623
|
+
D, [2016-01-12T17:09:57.207965 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022944000000000003s
|
2624
|
+
D, [2016-01-12T17:09:57.209763 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000c9'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000c8')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2625
|
+
D, [2016-01-12T17:09:57.230589 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020726s
|
2626
|
+
D, [2016-01-12T17:09:57.231534 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000c8')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2627
|
+
D, [2016-01-12T17:09:57.232223 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000641s
|
2628
|
+
D, [2016-01-12T17:09:57.233095 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000ca'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000c8')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2629
|
+
D, [2016-01-12T17:09:57.233428 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00027699999999999996s
|
2630
|
+
D, [2016-01-12T17:09:57.234074 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000c8')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2631
|
+
D, [2016-01-12T17:09:57.234547 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039799999999999997s
|
2632
|
+
D, [2016-01-12T17:09:57.235774 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000cb'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00...
|
2633
|
+
D, [2016-01-12T17:09:57.236159 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000334s
|
2634
|
+
D, [2016-01-12T17:09:57.237375 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000cc'), "title"=>"three", "person_id"=>BSON::ObjectId('56955d9555193b496c0000cb')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2635
|
+
D, [2016-01-12T17:09:57.238833 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000362s
|
2636
|
+
D, [2016-01-12T17:09:57.239452 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000cb')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2637
|
+
D, [2016-01-12T17:09:57.239805 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000306s
|
2638
|
+
D, [2016-01-12T17:09:57.240765 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
|
2639
|
+
D, [2016-01-12T17:09:57.241162 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035s
|
2640
|
+
D, [2016-01-12T17:09:57.241900 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000c8')]}}}
|
2641
|
+
D, [2016-01-12T17:09:57.242212 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000252s
|
2642
|
+
D, [2016-01-12T17:09:57.243125 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2643
|
+
D, [2016-01-12T17:09:57.243507 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000332s
|
2644
|
+
D, [2016-01-12T17:09:57.243859 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2645
|
+
D, [2016-01-12T17:09:57.244494 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00057s
|
2646
|
+
D, [2016-01-12T17:09:57.244804 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2647
|
+
D, [2016-01-12T17:09:57.257120 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012224s
|
2648
|
+
D, [2016-01-12T17:09:57.258467 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000cd'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2649
|
+
D, [2016-01-12T17:09:57.280426 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021855s
|
2650
|
+
D, [2016-01-12T17:09:57.282071 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000cd')}}
|
2651
|
+
D, [2016-01-12T17:09:57.282392 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000261s
|
2652
|
+
D, [2016-01-12T17:09:57.283349 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000ce'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000cd')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2653
|
+
D, [2016-01-12T17:09:57.305214 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021769s
|
2654
|
+
D, [2016-01-12T17:09:57.306745 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000ce')}, "limit"=>1}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2655
|
+
D, [2016-01-12T17:09:57.307132 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.000343s
|
2656
|
+
D, [2016-01-12T17:09:57.307863 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000cf'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000cd')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2657
|
+
D, [2016-01-12T17:09:57.308169 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00025600000000000004s
|
2658
|
+
D, [2016-01-12T17:09:57.310237 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2659
|
+
D, [2016-01-12T17:09:57.310646 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000362s
|
2660
|
+
D, [2016-01-12T17:09:57.311525 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000cd')]}}}
|
2661
|
+
D, [2016-01-12T17:09:57.311810 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00023500000000000002s
|
2662
|
+
D, [2016-01-12T17:09:57.320080 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2663
|
+
D, [2016-01-12T17:09:57.320872 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000711s
|
2664
|
+
D, [2016-01-12T17:09:57.321325 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2665
|
+
D, [2016-01-12T17:09:57.322054 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000655s
|
2666
|
+
D, [2016-01-12T17:09:57.322435 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
|
2667
|
+
D, [2016-01-12T17:09:57.344019 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.02146s
|
2668
|
+
D, [2016-01-12T17:09:57.345807 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d0'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2669
|
+
D, [2016-01-12T17:09:57.380374 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.034462000000000007s
|
2670
|
+
D, [2016-01-12T17:09:57.382209 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000d0')}}
|
2671
|
+
D, [2016-01-12T17:09:57.382537 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026199999999999997s
|
2672
|
+
D, [2016-01-12T17:09:57.383767 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d1'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000d0')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2673
|
+
D, [2016-01-12T17:09:57.408379 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024513999999999998s
|
2674
|
+
D, [2016-01-12T17:09:57.410036 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000d1')}, "limit"=>1}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2675
|
+
D, [2016-01-12T17:09:57.410633 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.000533s
|
2676
|
+
D, [2016-01-12T17:09:57.411441 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d2'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000d0')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2677
|
+
D, [2016-01-12T17:09:57.411953 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000279s
|
2678
|
+
D, [2016-01-12T17:09:57.413673 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d3'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2679
|
+
D, [2016-01-12T17:09:57.414300 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000385s
|
2680
|
+
D, [2016-01-12T17:09:57.416181 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000d3')}}
|
2681
|
+
D, [2016-01-12T17:09:57.416478 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000247s
|
2682
|
+
D, [2016-01-12T17:09:57.417608 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d4'), "high_score"=>500, "score"=>0, "name"=>"Skyrim", "person_id"=>BSON::ObjectId('56955d9555193b496c0000d3')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2683
|
+
D, [2016-01-12T17:09:57.418030 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035800000000000003s
|
2684
|
+
D, [2016-01-12T17:09:57.419715 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000d0')}, "limit"=>1, "sort"=>{"age"=>1}}
|
2685
|
+
D, [2016-01-12T17:09:57.420144 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000375s
|
2686
|
+
D, [2016-01-12T17:09:57.420984 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000d0')]}}}
|
2687
|
+
D, [2016-01-12T17:09:57.421434 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000301s
|
2688
|
+
D, [2016-01-12T17:09:57.422708 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2689
|
+
D, [2016-01-12T17:09:57.423196 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000401s
|
2690
|
+
D, [2016-01-12T17:09:57.423551 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2691
|
+
D, [2016-01-12T17:09:57.424238 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000621s
|
2692
|
+
D, [2016-01-12T17:09:57.424536 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
|
2693
|
+
D, [2016-01-12T17:09:57.444120 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019472999999999997s
|
2694
|
+
D, [2016-01-12T17:09:57.446091 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d5'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2695
|
+
D, [2016-01-12T17:09:57.466669 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020477000000000002s
|
2696
|
+
D, [2016-01-12T17:09:57.468255 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000d5')}}
|
2697
|
+
D, [2016-01-12T17:09:57.468596 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027299999999999997s
|
2698
|
+
D, [2016-01-12T17:09:57.469642 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d6'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000d5')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2699
|
+
D, [2016-01-12T17:09:57.490268 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020447999999999997s
|
2700
|
+
D, [2016-01-12T17:09:57.493076 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d7'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2701
|
+
D, [2016-01-12T17:09:57.493508 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000362s
|
2702
|
+
D, [2016-01-12T17:09:57.495410 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000d7')}}
|
2703
|
+
D, [2016-01-12T17:09:57.495710 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000242s
|
2704
|
+
D, [2016-01-12T17:09:57.496618 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d8'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000d7')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2705
|
+
D, [2016-01-12T17:09:57.496917 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000249s
|
2706
|
+
D, [2016-01-12T17:09:57.498159 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{}}
|
2707
|
+
D, [2016-01-12T17:09:57.498508 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00028700000000000004s
|
2708
|
+
D, [2016-01-12T17:09:57.499403 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000d5'), BSON::ObjectId('56955d9555193b496c0000d7')]}}}
|
2709
|
+
D, [2016-01-12T17:09:57.499958 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000502s
|
2710
|
+
D, [2016-01-12T17:09:57.500428 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{}}
|
2711
|
+
D, [2016-01-12T17:09:57.500782 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00020999999999999998s
|
2712
|
+
D, [2016-01-12T17:09:57.501650 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2713
|
+
D, [2016-01-12T17:09:57.502025 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000319s
|
2714
|
+
D, [2016-01-12T17:09:57.502410 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2715
|
+
D, [2016-01-12T17:09:57.502886 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000428s
|
2716
|
+
D, [2016-01-12T17:09:57.503153 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
|
2717
|
+
D, [2016-01-12T17:09:57.515219 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011972s
|
2718
|
+
D, [2016-01-12T17:09:57.516679 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000d9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2719
|
+
D, [2016-01-12T17:09:57.549960 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.03328s
|
2720
|
+
D, [2016-01-12T17:09:57.551390 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000d9')}}
|
2721
|
+
D, [2016-01-12T17:09:57.551861 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026000000000000003s
|
2722
|
+
D, [2016-01-12T17:09:57.553132 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000da'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000d9')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2723
|
+
D, [2016-01-12T17:09:57.601508 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.048342s
|
2724
|
+
D, [2016-01-12T17:09:57.603876 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000db'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2725
|
+
D, [2016-01-12T17:09:57.605171 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000457s
|
2726
|
+
D, [2016-01-12T17:09:57.606436 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000db')}}
|
2727
|
+
D, [2016-01-12T17:09:57.606811 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000301s
|
2728
|
+
D, [2016-01-12T17:09:57.607955 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000dc'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000db')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2729
|
+
D, [2016-01-12T17:09:57.608449 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00042500000000000003s
|
2730
|
+
D, [2016-01-12T17:09:57.610359 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000da')}, "limit"=>1, "sort"=>{"_id"=>1}}
|
2731
|
+
D, [2016-01-12T17:09:57.610795 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000369s
|
2732
|
+
D, [2016-01-12T17:09:57.611922 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000d9')]}}}
|
2733
|
+
D, [2016-01-12T17:09:57.612394 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000404s
|
2734
|
+
D, [2016-01-12T17:09:57.613626 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2735
|
+
D, [2016-01-12T17:09:57.614222 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000519s
|
2736
|
+
D, [2016-01-12T17:09:57.614604 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2737
|
+
D, [2016-01-12T17:09:57.615207 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00054s
|
2738
|
+
D, [2016-01-12T17:09:57.615642 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
|
2739
|
+
D, [2016-01-12T17:09:57.633454 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01771s
|
2740
|
+
D, [2016-01-12T17:09:57.634987 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000dd'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-01-11 00:00:0...
|
2741
|
+
D, [2016-01-12T17:09:57.682203 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.047109s
|
2742
|
+
D, [2016-01-12T17:09:57.684558 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000de'), "title"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2743
|
+
D, [2016-01-12T17:09:57.724812 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.040138s
|
2744
|
+
D, [2016-01-12T17:09:57.726279 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2745
|
+
D, [2016-01-12T17:09:57.726903 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000553s
|
2746
|
+
D, [2016-01-12T17:09:57.728235 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000df'), "title"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2747
|
+
D, [2016-01-12T17:09:57.729578 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00042s
|
2748
|
+
D, [2016-01-12T17:09:57.730505 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2749
|
+
D, [2016-01-12T17:09:57.731001 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00042300000000000004s
|
2750
|
+
D, [2016-01-12T17:09:57.732254 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}}
|
2751
|
+
D, [2016-01-12T17:09:57.732618 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000292s
|
2752
|
+
D, [2016-01-12T17:09:57.733784 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000e0'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2753
|
+
D, [2016-01-12T17:09:57.776234 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.042321s
|
2754
|
+
D, [2016-01-12T17:09:57.778233 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('56955d9555193b496c0000e0')}, "limit"=>1}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2755
|
+
D, [2016-01-12T17:09:57.778729 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.000428s
|
2756
|
+
D, [2016-01-12T17:09:57.779835 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('56955d9555193b496c0000e1'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('56955d9555193b496c0000dd')}], "writeConcern"=>{:w=>1}, "ordered"=>true}
|
2757
|
+
D, [2016-01-12T17:09:57.780328 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000322s
|
2758
|
+
D, [2016-01-12T17:09:57.782076 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2759
|
+
D, [2016-01-12T17:09:57.782617 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000473s
|
2760
|
+
D, [2016-01-12T17:09:57.783736 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000dd')]}}}
|
2761
|
+
D, [2016-01-12T17:09:57.784319 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000512s
|
2762
|
+
D, [2016-01-12T17:09:57.785341 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('56955d9555193b496c0000dd')]}}}
|
2763
|
+
D, [2016-01-12T17:09:57.785707 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000294s
|
2764
|
+
D, [2016-01-12T17:09:57.786263 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
|
2765
|
+
D, [2016-01-12T17:09:57.786999 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0006630000000000001s
|
2766
|
+
D, [2016-01-12T17:09:57.788234 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2767
|
+
D, [2016-01-12T17:09:57.788826 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0005110000000000001s
|
2768
|
+
D, [2016-01-12T17:09:57.789316 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
|
2769
|
+
D, [2016-01-12T17:09:57.789929 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000552s
|
2770
|
+
D, [2016-01-12T17:09:57.791152 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
|
2771
|
+
D, [2016-01-12T17:09:57.834083 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.04274s
|
2772
|
+
D, [2016-01-12T17:09:57.834729 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
|
2773
|
+
D, [2016-01-12T17:09:57.908833 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.073902s
|
2774
|
+
D, [2016-01-12T17:09:57.910442 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
|
2775
|
+
D, [2016-01-12T17:09:57.911167 #18796] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000645s
|