mongoid_includes 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67f187ce0092546f81340e5d515a29c1ccacbc6e
4
- data.tar.gz: 2469d83a0bfd12b2d3aff5a596d0777dd44d811d
3
+ metadata.gz: 5b7e8a18c38cfc76305e95f5684651c999e43aef
4
+ data.tar.gz: c38dc8cb960c339b80355535aa05f48a020ded83
5
5
  SHA512:
6
- metadata.gz: 1717e9488df0bb54592305693d6a93796212f7edd7dd185b311b8d4dd8d42a41a5afee8aea01c97d648dd493b9ca3e941864405aa96d3073471b1c04fa8c5d87
7
- data.tar.gz: 847ea248428f6839972cfcf2acf144a47f90d0cbd20afc3b3c018d886552e524ffaefd0dcef051de658cc961afb62a8262c1840c90c2999b0f0b193043fb2398
6
+ metadata.gz: c210d11205b50a30983db56779567a899d91cf18171d678ee9b44d185d72d8406e84ea9be918603b2abfe87b57cff88aa27d6f31da7dfb9cc77f245b8223dfee
7
+ data.tar.gz: 1d921d5a64ca7a4fffbf1b7ce75fe0e5f638c922dd8e5665cb16e0e1b76b2b168f6736a392b8b683b5cf64e7965aaeba1c79bcd796cccc59c03e37aa2c0831f0
@@ -1,3 +1,7 @@
1
+ ## Mongoid::Includes 1.1.3 (2016-10-17) ##
2
+
3
+ * Fix eager loading for [self-referencing associations](https://github.com/ElMassimo/mongoid_includes/pull/6). Thanks @rmachielse!
4
+
1
5
  ## Mongoid::Includes 1.1.2 (2016-05-26) ##
2
6
 
3
7
  * Change gem dependencies to [support Mongoid 6](https://github.com/ElMassimo/mongoid_includes/pull/3). Thanks @joostverdoorn!
data/README.md CHANGED
@@ -24,7 +24,7 @@ Musician.includes(:band, with: ->(bands) { bands.limit(2).includes(:albums, with
24
24
 
25
25
  ## Advantages
26
26
 
27
- * Avoid N+1 queries and get better performance.
27
+ * [Avoid N+1 queries](http://maximomussini.com/posts/mongoid-n+1/) and get better performance.
28
28
  * No boilerplate code is required.
29
29
  * Can avoid loading all the related documents if necessary.
30
30
 
@@ -60,7 +60,7 @@ module Mongoid
60
60
  unless metadata = owner_class.reflect_on_association(relation)
61
61
  raise Mongoid::Includes::Errors::InvalidIncludes.new(owner_class, relation, options)
62
62
  end
63
- inclusions.include?(metadata) || inclusions.push(metadata, options)
63
+ inclusions.push(metadata, options)
64
64
  end
65
65
  end
66
66
  end
@@ -17,6 +17,12 @@ module Mongoid
17
17
  !!from
18
18
  end
19
19
 
20
+ # Public: Checks if the collection already has an inclusion with the
21
+ # specified metadata.
22
+ def eql?(other)
23
+ metadata == other && (!other.respond_to?(:from) || from == other.from)
24
+ end
25
+
20
26
  # Public: Returns true if the relation is a polymorphic belongs_to.
21
27
  def polymorphic_belongs_to?
22
28
  metadata.polymorphic? && metadata.relation == Mongoid::Relations::Referenced::In
@@ -20,12 +20,6 @@ module Mongoid
20
20
  metadata
21
21
  end
22
22
 
23
- # Public: Checks if the collection already has an inclusion with the
24
- # specified metadata.
25
- def include?(metadata)
26
- find { |inclusion| inclusion.metadata == metadata }
27
- end
28
-
29
23
  # Public: Returns the sum of the inclusions without any duplicates.
30
24
  def +(inclusions)
31
25
  Inclusions.new(union(inclusions))
@@ -5,6 +5,6 @@ module Mongoid
5
5
  module Includes
6
6
 
7
7
  # Public: This library will attempt to follow semantic versioning (whatever that's supposed to be).
8
- VERSION = '1.1.2'
8
+ VERSION = '1.1.3'
9
9
  end
10
10
  end
@@ -4164,3 +4164,2921 @@ D, [2016-05-26T12:02:28.540307 #50059] DEBUG -- : MONGODB | localhost:27017 | mo
4164
4164
  D, [2016-05-26T12:02:28.552183 #50059] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011767s
4165
4165
  D, [2016-05-26T12:02:28.553672 #50059] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4166
4166
  D, [2016-05-26T12:02:28.554126 #50059] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000379s
4167
+ D, [2016-10-12T21:12:08.334575 #61168] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
4168
+ D, [2016-10-12T21:12:08.337077 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4169
+ D, [2016-10-12T21:12:08.337801 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000599s
4170
+ D, [2016-10-12T21:12:08.339183 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4171
+ D, [2016-10-12T21:12:08.339449 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000208s
4172
+ D, [2016-10-12T21:12:08.340338 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4173
+ D, [2016-10-12T21:12:08.340625 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000233s
4174
+ D, [2016-10-12T21:12:08.362514 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4175
+ D, [2016-10-12T21:12:08.363056 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000455s
4176
+ D, [2016-10-12T21:12:08.363812 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4177
+ D, [2016-10-12T21:12:08.364494 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000285s
4178
+ D, [2016-10-12T21:12:08.365231 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4179
+ D, [2016-10-12T21:12:08.365532 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000219s
4180
+ D, [2016-10-12T21:12:08.366112 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4181
+ D, [2016-10-12T21:12:08.366348 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000184s
4182
+ D, [2016-10-12T21:12:08.366909 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4183
+ D, [2016-10-12T21:12:08.367135 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000176s
4184
+ D, [2016-10-12T21:12:08.367852 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4185
+ D, [2016-10-12T21:12:08.368091 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00019s
4186
+ D, [2016-10-12T21:12:08.368926 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4187
+ D, [2016-10-12T21:12:08.369188 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000211s
4188
+ D, [2016-10-12T21:12:08.369924 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4189
+ D, [2016-10-12T21:12:08.370151 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000199s
4190
+ D, [2016-10-12T21:12:08.373316 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2811'), "active"=>true, "name"=>"Pink Floyd", "upserted"=>false}], "ordered"=>true}
4191
+ D, [2016-10-12T21:12:08.424969 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.051533s
4192
+ D, [2016-10-12T21:12:08.427408 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2812'), "name"=>"Wish You Were Here", "release"=>1975-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('57fed15823af7feef0ca2811'), "owner_type"=>"Band"}], "ordered"=>true}
4193
+ D, [2016-10-12T21:12:08.447693 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020186000000000003s
4194
+ D, [2016-10-12T21:12:08.448891 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2813'), "name"=>"The Dark Side of the Moon", "release"=>1973-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('57fed15823af7feef0ca2811'), "owner_type"=>"Band"}], "ordered"=>...
4195
+ D, [2016-10-12T21:12:08.449278 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036199999999999996s
4196
+ D, [2016-10-12T21:12:08.449885 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{}}
4197
+ D, [2016-10-12T21:12:08.450227 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000288s
4198
+ D, [2016-10-12T21:12:08.450938 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"albums", "filter"=>{"owner_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca2811')]}, "release"=>{"$lt"=>1974-01-01 00:00:00 UTC}}}
4199
+ D, [2016-10-12T21:12:08.451271 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000285s
4200
+ D, [2016-10-12T21:12:08.454083 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"albums", "query"=>{"owner_id"=>BSON::ObjectId('57fed15823af7feef0ca2811'), "owner_type"=>"Band"}}
4201
+ D, [2016-10-12T21:12:08.454520 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.000369s
4202
+ D, [2016-10-12T21:12:08.455234 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4203
+ D, [2016-10-12T21:12:08.455595 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000298s
4204
+ D, [2016-10-12T21:12:08.455812 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4205
+ D, [2016-10-12T21:12:08.475784 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019861s
4206
+ D, [2016-10-12T21:12:08.476096 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"albums"}
4207
+ D, [2016-10-12T21:12:08.493015 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.016809s
4208
+ D, [2016-10-12T21:12:08.494461 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4209
+ D, [2016-10-12T21:12:08.494966 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000425s
4210
+ D, [2016-10-12T21:12:08.496702 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4211
+ D, [2016-10-12T21:12:08.497172 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000349s
4212
+ D, [2016-10-12T21:12:08.546568 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2814'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4213
+ D, [2016-10-12T21:12:08.573419 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026729000000000003s
4214
+ D, [2016-10-12T21:12:08.589563 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4215
+ D, [2016-10-12T21:12:08.590408 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000659s
4216
+ D, [2016-10-12T21:12:08.590720 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4217
+ D, [2016-10-12T21:12:08.591363 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00058s
4218
+ D, [2016-10-12T21:12:08.592293 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2815'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4219
+ D, [2016-10-12T21:12:08.619965 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027579999999999997s
4220
+ D, [2016-10-12T21:12:08.621062 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2816')}], "ordered"=>true}
4221
+ D, [2016-10-12T21:12:08.645751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024644s
4222
+ D, [2016-10-12T21:12:08.646511 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2817')}], "ordered"=>true}
4223
+ D, [2016-10-12T21:12:08.646975 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0004s
4224
+ D, [2016-10-12T21:12:08.649011 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2818'), "_type"=>"B", "c_id"=>BSON::ObjectId('57fed15823af7feef0ca2817')}], "ordered"=>true}
4225
+ D, [2016-10-12T21:12:08.670296 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021092000000000003s
4226
+ D, [2016-10-12T21:12:08.671213 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"cs", "filter"=>{}}
4227
+ D, [2016-10-12T21:12:08.671628 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000352s
4228
+ D, [2016-10-12T21:12:08.672541 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"c_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca2816'), BSON::ObjectId('57fed15823af7feef0ca2817')]}, "_type"=>"B"}}
4229
+ D, [2016-10-12T21:12:08.672991 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00039600000000000003s
4230
+ D, [2016-10-12T21:12:08.673870 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4231
+ D, [2016-10-12T21:12:08.674289 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000357s
4232
+ D, [2016-10-12T21:12:08.674472 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"cs"}
4233
+ D, [2016-10-12T21:12:08.675011 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000479s
4234
+ D, [2016-10-12T21:12:08.675228 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4235
+ D, [2016-10-12T21:12:08.686877 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011493s
4236
+ D, [2016-10-12T21:12:08.687160 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4237
+ D, [2016-10-12T21:12:08.706894 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019564s
4238
+ D, [2016-10-12T21:12:08.708533 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2819'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4239
+ D, [2016-10-12T21:12:08.732774 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024131000000000003s
4240
+ D, [2016-10-12T21:12:08.734103 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca281a')}], "ordered"=>true}
4241
+ D, [2016-10-12T21:12:08.768715 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.034533s
4242
+ D, [2016-10-12T21:12:08.769714 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca281b')}], "ordered"=>true}
4243
+ D, [2016-10-12T21:12:08.770232 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00045000000000000004s
4244
+ D, [2016-10-12T21:12:08.771070 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca281c'), "_type"=>"B", "c_id"=>BSON::ObjectId('57fed15823af7feef0ca281b')}], "ordered"=>true}
4245
+ D, [2016-10-12T21:12:08.796494 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025323s
4246
+ D, [2016-10-12T21:12:08.797379 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"cs", "filter"=>{}}
4247
+ D, [2016-10-12T21:12:08.797766 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000333s
4248
+ D, [2016-10-12T21:12:08.798520 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"c_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca281a'), BSON::ObjectId('57fed15823af7feef0ca281b')]}, "_type"=>"B"}}
4249
+ D, [2016-10-12T21:12:08.799533 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000304s
4250
+ D, [2016-10-12T21:12:08.815793 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4251
+ D, [2016-10-12T21:12:08.816458 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000578s
4252
+ D, [2016-10-12T21:12:08.816661 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"cs"}
4253
+ D, [2016-10-12T21:12:08.817196 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000481s
4254
+ D, [2016-10-12T21:12:08.817311 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4255
+ D, [2016-10-12T21:12:08.828275 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010868000000000001s
4256
+ D, [2016-10-12T21:12:08.828589 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4257
+ D, [2016-10-12T21:12:08.849162 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.020464000000000003s
4258
+ D, [2016-10-12T21:12:08.850645 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca281d'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4259
+ D, [2016-10-12T21:12:08.873147 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022391s
4260
+ D, [2016-10-12T21:12:08.874611 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca281e')}], "ordered"=>true}
4261
+ D, [2016-10-12T21:12:08.899614 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024896s
4262
+ D, [2016-10-12T21:12:08.900417 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca281f')}], "ordered"=>true}
4263
+ D, [2016-10-12T21:12:08.900878 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000405s
4264
+ D, [2016-10-12T21:12:08.901847 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2820'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15823af7feef0ca281f')}], "ordered"=>true}
4265
+ D, [2016-10-12T21:12:08.922337 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020425s
4266
+ D, [2016-10-12T21:12:08.923551 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2821'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15823af7feef0ca281f')}], "ordered"=>true}
4267
+ D, [2016-10-12T21:12:08.923990 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000384s
4268
+ D, [2016-10-12T21:12:08.924714 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
4269
+ D, [2016-10-12T21:12:08.925107 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000332s
4270
+ D, [2016-10-12T21:12:08.925863 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca281e'), BSON::ObjectId('57fed15823af7feef0ca281f')]}, "_type"=>"B"}}
4271
+ D, [2016-10-12T21:12:08.926283 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000413s
4272
+ D, [2016-10-12T21:12:08.927102 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca281e'), BSON::ObjectId('57fed15823af7feef0ca281f')]}, "_type"=>"C"}}
4273
+ D, [2016-10-12T21:12:08.928306 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000408s
4274
+ D, [2016-10-12T21:12:08.929112 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4275
+ D, [2016-10-12T21:12:08.929628 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00045700000000000005s
4276
+ D, [2016-10-12T21:12:08.929812 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
4277
+ D, [2016-10-12T21:12:08.930485 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000608s
4278
+ D, [2016-10-12T21:12:08.930664 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4279
+ D, [2016-10-12T21:12:08.941836 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011078000000000001s
4280
+ D, [2016-10-12T21:12:08.942157 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4281
+ D, [2016-10-12T21:12:08.956097 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013834s
4282
+ D, [2016-10-12T21:12:08.957440 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2822'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4283
+ D, [2016-10-12T21:12:08.978431 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020887000000000003s
4284
+ D, [2016-10-12T21:12:08.979506 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15823af7feef0ca2823')}], "ordered"=>true}
4285
+ D, [2016-10-12T21:12:09.000420 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02081s
4286
+ D, [2016-10-12T21:12:09.001210 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2824')}], "ordered"=>true}
4287
+ D, [2016-10-12T21:12:09.001629 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00037s
4288
+ D, [2016-10-12T21:12:09.002311 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2825'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2824')}], "ordered"=>true}
4289
+ D, [2016-10-12T21:12:09.023759 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021351s
4290
+ D, [2016-10-12T21:12:09.024752 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2826'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2824')}], "ordered"=>true}
4291
+ D, [2016-10-12T21:12:09.025210 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036700000000000003s
4292
+ D, [2016-10-12T21:12:09.025821 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
4293
+ D, [2016-10-12T21:12:09.026245 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000374s
4294
+ D, [2016-10-12T21:12:09.027316 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca2823'), BSON::ObjectId('57fed15923af7feef0ca2824')]}, "_type"=>"B"}}
4295
+ D, [2016-10-12T21:12:09.027849 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00047599999999999997s
4296
+ D, [2016-10-12T21:12:09.028671 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15823af7feef0ca2823'), BSON::ObjectId('57fed15923af7feef0ca2824')]}, "_type"=>"C"}}
4297
+ D, [2016-10-12T21:12:09.029736 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000379s
4298
+ D, [2016-10-12T21:12:09.030626 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4299
+ D, [2016-10-12T21:12:09.031164 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000422s
4300
+ D, [2016-10-12T21:12:09.031450 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
4301
+ D, [2016-10-12T21:12:09.032017 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005080000000000001s
4302
+ D, [2016-10-12T21:12:09.032193 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4303
+ D, [2016-10-12T21:12:09.043393 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011102s
4304
+ D, [2016-10-12T21:12:09.043656 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4305
+ D, [2016-10-12T21:12:09.056509 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012765s
4306
+ D, [2016-10-12T21:12:09.057756 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2827'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4307
+ D, [2016-10-12T21:12:09.085338 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027467000000000002s
4308
+ D, [2016-10-12T21:12:09.086617 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2828')}], "ordered"=>true}
4309
+ D, [2016-10-12T21:12:09.112891 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026157s
4310
+ D, [2016-10-12T21:12:09.113795 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2829')}], "ordered"=>true}
4311
+ D, [2016-10-12T21:12:09.114379 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000448s
4312
+ D, [2016-10-12T21:12:09.115240 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca282a'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2829')}], "ordered"=>true}
4313
+ D, [2016-10-12T21:12:09.140750 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025404999999999997s
4314
+ D, [2016-10-12T21:12:09.141818 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca282b'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2829')}], "ordered"=>true}
4315
+ D, [2016-10-12T21:12:09.142245 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000374s
4316
+ D, [2016-10-12T21:12:09.142887 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
4317
+ D, [2016-10-12T21:12:09.143248 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031s
4318
+ D, [2016-10-12T21:12:09.143858 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca2828'), BSON::ObjectId('57fed15923af7feef0ca2829')]}, "_type"=>"B"}}
4319
+ D, [2016-10-12T21:12:09.144237 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033s
4320
+ D, [2016-10-12T21:12:09.144799 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca2828'), BSON::ObjectId('57fed15923af7feef0ca2829')]}, "_type"=>"C"}}
4321
+ D, [2016-10-12T21:12:09.145773 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031499999999999996s
4322
+ D, [2016-10-12T21:12:09.159900 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4323
+ D, [2016-10-12T21:12:09.160512 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000514s
4324
+ D, [2016-10-12T21:12:09.160795 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
4325
+ D, [2016-10-12T21:12:09.161321 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00047s
4326
+ D, [2016-10-12T21:12:09.161477 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4327
+ D, [2016-10-12T21:12:09.173126 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011548s
4328
+ D, [2016-10-12T21:12:09.173383 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4329
+ D, [2016-10-12T21:12:09.193996 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.02051s
4330
+ D, [2016-10-12T21:12:09.195498 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca282c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4331
+ D, [2016-10-12T21:12:09.218664 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023031999999999997s
4332
+ D, [2016-10-12T21:12:09.221029 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca282d')}], "ordered"=>true}
4333
+ D, [2016-10-12T21:12:09.242049 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020947999999999998s
4334
+ D, [2016-10-12T21:12:09.243033 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca282e')}], "ordered"=>true}
4335
+ D, [2016-10-12T21:12:09.243384 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030000000000000003s
4336
+ D, [2016-10-12T21:12:09.244191 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca282f'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca282e')}], "ordered"=>true}
4337
+ D, [2016-10-12T21:12:09.282563 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.038258s
4338
+ D, [2016-10-12T21:12:09.283658 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2830'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca282e')}], "ordered"=>true}
4339
+ D, [2016-10-12T21:12:09.284300 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000586s
4340
+ D, [2016-10-12T21:12:09.285301 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2831'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca282e')}], "ordered"=>true}
4341
+ D, [2016-10-12T21:12:09.285857 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00042800000000000005s
4342
+ D, [2016-10-12T21:12:09.286613 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2832'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca282e')}], "ordered"=>true}
4343
+ D, [2016-10-12T21:12:09.287070 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000368s
4344
+ D, [2016-10-12T21:12:09.287850 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
4345
+ D, [2016-10-12T21:12:09.289151 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000409s
4346
+ D, [2016-10-12T21:12:09.290134 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca282d'), BSON::ObjectId('57fed15923af7feef0ca282e')]}, "_type"=>"B"}}
4347
+ D, [2016-10-12T21:12:09.290594 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000376s
4348
+ D, [2016-10-12T21:12:09.291577 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca282d'), BSON::ObjectId('57fed15923af7feef0ca282e')]}, "_type"=>"C"}}
4349
+ D, [2016-10-12T21:12:09.291997 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035s
4350
+ D, [2016-10-12T21:12:09.292953 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4351
+ D, [2016-10-12T21:12:09.293463 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000428s
4352
+ D, [2016-10-12T21:12:09.293749 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
4353
+ D, [2016-10-12T21:12:09.294372 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000554s
4354
+ D, [2016-10-12T21:12:09.294550 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4355
+ D, [2016-10-12T21:12:09.313486 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018817s
4356
+ D, [2016-10-12T21:12:09.313806 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4357
+ D, [2016-10-12T21:12:09.339197 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.025273s
4358
+ D, [2016-10-12T21:12:09.340646 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2833'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4359
+ D, [2016-10-12T21:12:09.406193 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.06543500000000001s
4360
+ D, [2016-10-12T21:12:09.407854 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2834')}], "ordered"=>true}
4361
+ D, [2016-10-12T21:12:09.581859 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.17388399999999998s
4362
+ D, [2016-10-12T21:12:09.582994 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2835')}], "ordered"=>true}
4363
+ D, [2016-10-12T21:12:09.583518 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000441s
4364
+ D, [2016-10-12T21:12:09.584409 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2836'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2835')}], "ordered"=>true}
4365
+ D, [2016-10-12T21:12:09.647550 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.06303600000000001s
4366
+ D, [2016-10-12T21:12:09.648633 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2837'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2835')}], "ordered"=>true}
4367
+ D, [2016-10-12T21:12:09.649162 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00045599999999999997s
4368
+ D, [2016-10-12T21:12:09.649983 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2838'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2835')}], "ordered"=>true}
4369
+ D, [2016-10-12T21:12:09.651201 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000364s
4370
+ D, [2016-10-12T21:12:09.651943 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2839'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca2835')}], "ordered"=>true}
4371
+ D, [2016-10-12T21:12:09.652358 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000349s
4372
+ D, [2016-10-12T21:12:09.653054 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
4373
+ D, [2016-10-12T21:12:09.653482 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000356s
4374
+ D, [2016-10-12T21:12:09.654389 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca2834'), BSON::ObjectId('57fed15923af7feef0ca2835')]}, "_type"=>"B"}}
4375
+ D, [2016-10-12T21:12:09.654936 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000446s
4376
+ D, [2016-10-12T21:12:09.655965 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca2834'), BSON::ObjectId('57fed15923af7feef0ca2835')]}, "_type"=>"C"}}
4377
+ D, [2016-10-12T21:12:09.656464 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000428s
4378
+ D, [2016-10-12T21:12:09.657693 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4379
+ D, [2016-10-12T21:12:09.658165 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00039600000000000003s
4380
+ D, [2016-10-12T21:12:09.658415 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
4381
+ D, [2016-10-12T21:12:09.659058 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00058s
4382
+ D, [2016-10-12T21:12:09.659277 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4383
+ D, [2016-10-12T21:12:09.684751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.025304s
4384
+ D, [2016-10-12T21:12:09.685043 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4385
+ D, [2016-10-12T21:12:09.722254 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.037064s
4386
+ D, [2016-10-12T21:12:09.723833 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca283a'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:...
4387
+ D, [2016-10-12T21:12:09.768741 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.04475s
4388
+ D, [2016-10-12T21:12:09.771074 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca283b')}], "ordered"=>true}
4389
+ D, [2016-10-12T21:12:09.815675 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.044451000000000004s
4390
+ D, [2016-10-12T21:12:09.817260 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca283c')}], "ordered"=>true}
4391
+ D, [2016-10-12T21:12:09.817830 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000492s
4392
+ D, [2016-10-12T21:12:09.818964 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca283d'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca283c')}], "ordered"=>true}
4393
+ D, [2016-10-12T21:12:09.856007 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.036104s
4394
+ D, [2016-10-12T21:12:09.856987 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca283e'), "_type"=>"B", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca283c')}], "ordered"=>true}
4395
+ D, [2016-10-12T21:12:09.857742 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000691s
4396
+ D, [2016-10-12T21:12:09.858465 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca283f'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca283c')}], "ordered"=>true}
4397
+ D, [2016-10-12T21:12:09.859100 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000344s
4398
+ D, [2016-10-12T21:12:09.859711 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2840'), "_type"=>"C", "d_id"=>BSON::ObjectId('57fed15923af7feef0ca283c')}], "ordered"=>true}
4399
+ D, [2016-10-12T21:12:09.860125 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00033800000000000003s
4400
+ D, [2016-10-12T21:12:09.861032 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
4401
+ D, [2016-10-12T21:12:09.861463 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000366s
4402
+ D, [2016-10-12T21:12:09.862462 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca283b'), BSON::ObjectId('57fed15923af7feef0ca283c')]}, "_type"=>"B"}}
4403
+ D, [2016-10-12T21:12:09.862909 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037s
4404
+ D, [2016-10-12T21:12:09.863931 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca283b'), BSON::ObjectId('57fed15923af7feef0ca283c')]}, "_type"=>"C"}}
4405
+ D, [2016-10-12T21:12:09.864593 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000592s
4406
+ D, [2016-10-12T21:12:09.866064 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4407
+ D, [2016-10-12T21:12:09.866481 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000351s
4408
+ D, [2016-10-12T21:12:09.866907 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
4409
+ D, [2016-10-12T21:12:09.867460 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000491s
4410
+ D, [2016-10-12T21:12:09.867605 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4411
+ D, [2016-10-12T21:12:09.886497 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018783s
4412
+ D, [2016-10-12T21:12:09.886786 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
4413
+ D, [2016-10-12T21:12:09.910985 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.024081s
4414
+ D, [2016-10-12T21:12:09.912838 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2841'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4415
+ D, [2016-10-12T21:12:09.940535 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027586s
4416
+ D, [2016-10-12T21:12:09.942117 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4417
+ D, [2016-10-12T21:12:09.943539 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000643s
4418
+ D, [2016-10-12T21:12:09.943788 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4419
+ D, [2016-10-12T21:12:09.944306 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000463s
4420
+ D, [2016-10-12T21:12:09.945461 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2842'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4421
+ D, [2016-10-12T21:12:09.965393 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019836s
4422
+ D, [2016-10-12T21:12:09.967138 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2843'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15923af7feef0ca2842')}], "ordered"=>true}
4423
+ D, [2016-10-12T21:12:09.986058 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018589s
4424
+ D, [2016-10-12T21:12:09.986923 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15923af7feef0ca2842')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4425
+ D, [2016-10-12T21:12:09.987426 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043599999999999997s
4426
+ D, [2016-10-12T21:12:09.988173 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
4427
+ D, [2016-10-12T21:12:09.988565 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000341s
4428
+ D, [2016-10-12T21:12:09.989285 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15923af7feef0ca2842')]}}}
4429
+ D, [2016-10-12T21:12:09.989683 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033999999999999997s
4430
+ D, [2016-10-12T21:12:09.990025 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
4431
+ D, [2016-10-12T21:12:09.990540 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00046199999999999995s
4432
+ D, [2016-10-12T21:12:09.991458 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4433
+ D, [2016-10-12T21:12:09.991838 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000313s
4434
+ D, [2016-10-12T21:12:09.992029 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4435
+ D, [2016-10-12T21:12:09.992494 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000417s
4436
+ D, [2016-10-12T21:12:09.992616 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4437
+ D, [2016-10-12T21:12:10.004653 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011918000000000002s
4438
+ D, [2016-10-12T21:12:10.006049 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2844'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4439
+ D, [2016-10-12T21:12:10.025961 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019768s
4440
+ D, [2016-10-12T21:12:10.027489 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2845'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4441
+ D, [2016-10-12T21:12:10.028709 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00047700000000000005s
4442
+ D, [2016-10-12T21:12:10.029882 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2846'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2844')}], "ordered"=>true}
4443
+ D, [2016-10-12T21:12:10.050796 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020814000000000003s
4444
+ D, [2016-10-12T21:12:10.051846 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2844')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4445
+ D, [2016-10-12T21:12:10.052380 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00047400000000000003s
4446
+ D, [2016-10-12T21:12:10.053550 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2847'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2845')}], "ordered"=>true}
4447
+ D, [2016-10-12T21:12:10.053921 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031699999999999995s
4448
+ D, [2016-10-12T21:12:10.054508 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2845')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4449
+ D, [2016-10-12T21:12:10.054921 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00035800000000000003s
4450
+ D, [2016-10-12T21:12:10.055661 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "limit"=>1, "singleBatch"=>true}
4451
+ D, [2016-10-12T21:12:10.056019 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00030399999999999996s
4452
+ D, [2016-10-12T21:12:10.056803 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca2844')]}}}
4453
+ D, [2016-10-12T21:12:10.057208 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000346s
4454
+ D, [2016-10-12T21:12:10.058283 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4455
+ D, [2016-10-12T21:12:10.058676 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00033200000000000005s
4456
+ D, [2016-10-12T21:12:10.058860 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4457
+ D, [2016-10-12T21:12:10.059365 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00045s
4458
+ D, [2016-10-12T21:12:10.059725 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4459
+ D, [2016-10-12T21:12:10.072395 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012578s
4460
+ D, [2016-10-12T21:12:10.073530 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2848'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4461
+ D, [2016-10-12T21:12:10.096298 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022677s
4462
+ D, [2016-10-12T21:12:10.098339 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2849'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4463
+ D, [2016-10-12T21:12:10.098741 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000346s
4464
+ D, [2016-10-12T21:12:10.099923 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284a'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2848')}], "ordered"=>true}
4465
+ D, [2016-10-12T21:12:10.127017 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026977s
4466
+ D, [2016-10-12T21:12:10.127984 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2848')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4467
+ D, [2016-10-12T21:12:10.128555 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000488s
4468
+ D, [2016-10-12T21:12:10.129946 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284b'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2849')}], "ordered"=>true}
4469
+ D, [2016-10-12T21:12:10.130394 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000377s
4470
+ D, [2016-10-12T21:12:10.131145 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2849')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4471
+ D, [2016-10-12T21:12:10.131589 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000372s
4472
+ D, [2016-10-12T21:12:10.132255 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "limit"=>1, "singleBatch"=>true}
4473
+ D, [2016-10-12T21:12:10.132676 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000353s
4474
+ D, [2016-10-12T21:12:10.133561 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca2848')]}}}
4475
+ D, [2016-10-12T21:12:10.134051 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00041799999999999997s
4476
+ D, [2016-10-12T21:12:10.135152 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4477
+ D, [2016-10-12T21:12:10.135600 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0005690000000000001s
4478
+ D, [2016-10-12T21:12:10.135837 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4479
+ D, [2016-10-12T21:12:10.136415 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000516s
4480
+ D, [2016-10-12T21:12:10.136577 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4481
+ D, [2016-10-12T21:12:10.149978 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013294s
4482
+ D, [2016-10-12T21:12:10.151369 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4483
+ D, [2016-10-12T21:12:10.172667 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021204999999999998s
4484
+ D, [2016-10-12T21:12:10.174770 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284d'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4485
+ D, [2016-10-12T21:12:10.175219 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00039400000000000004s
4486
+ D, [2016-10-12T21:12:10.176450 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284e'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca284c')}], "ordered"=>true}
4487
+ D, [2016-10-12T21:12:10.196604 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020055s
4488
+ D, [2016-10-12T21:12:10.197547 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284c')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4489
+ D, [2016-10-12T21:12:10.198044 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000449s
4490
+ D, [2016-10-12T21:12:10.198934 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284f'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca284d')}], "ordered"=>true}
4491
+ D, [2016-10-12T21:12:10.199303 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000318s
4492
+ D, [2016-10-12T21:12:10.199922 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca284d')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4493
+ D, [2016-10-12T21:12:10.200478 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005059999999999999s
4494
+ D, [2016-10-12T21:12:10.201306 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}, "limit"=>1, "singleBatch"=>true}
4495
+ D, [2016-10-12T21:12:10.201718 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000563s
4496
+ D, [2016-10-12T21:12:10.202266 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca284d')]}}}
4497
+ D, [2016-10-12T21:12:10.202678 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000361s
4498
+ D, [2016-10-12T21:12:10.203657 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4499
+ D, [2016-10-12T21:12:10.204032 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000318s
4500
+ D, [2016-10-12T21:12:10.204231 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4501
+ D, [2016-10-12T21:12:10.204700 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000418s
4502
+ D, [2016-10-12T21:12:10.205062 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4503
+ D, [2016-10-12T21:12:10.216509 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011364s
4504
+ D, [2016-10-12T21:12:10.217610 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2850'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4505
+ D, [2016-10-12T21:12:10.238185 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020467000000000003s
4506
+ D, [2016-10-12T21:12:10.240441 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2851'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4507
+ D, [2016-10-12T21:12:10.240840 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00033999999999999997s
4508
+ D, [2016-10-12T21:12:10.242082 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2852'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2850')}], "ordered"=>true}
4509
+ D, [2016-10-12T21:12:10.261707 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019528s
4510
+ D, [2016-10-12T21:12:10.262668 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2850')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4511
+ D, [2016-10-12T21:12:10.263086 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000371s
4512
+ D, [2016-10-12T21:12:10.263988 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2853'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2851')}], "ordered"=>true}
4513
+ D, [2016-10-12T21:12:10.264589 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000343s
4514
+ D, [2016-10-12T21:12:10.265053 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2851')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4515
+ D, [2016-10-12T21:12:10.265431 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000322s
4516
+ D, [2016-10-12T21:12:10.266233 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}, "limit"=>1, "singleBatch"=>true}
4517
+ D, [2016-10-12T21:12:10.266625 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000332s
4518
+ D, [2016-10-12T21:12:10.267143 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca2851')]}}}
4519
+ D, [2016-10-12T21:12:10.267563 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00036199999999999996s
4520
+ D, [2016-10-12T21:12:10.268167 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>1}, "limit"=>1, "singleBatch"=>true}
4521
+ D, [2016-10-12T21:12:10.268491 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027100000000000003s
4522
+ D, [2016-10-12T21:12:10.269390 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2850')}, "limit"=>1, "singleBatch"=>true}
4523
+ D, [2016-10-12T21:12:10.269759 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000277s
4524
+ D, [2016-10-12T21:12:10.270815 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4525
+ D, [2016-10-12T21:12:10.271203 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000331s
4526
+ D, [2016-10-12T21:12:10.271386 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4527
+ D, [2016-10-12T21:12:10.271882 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000448s
4528
+ D, [2016-10-12T21:12:10.272003 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4529
+ D, [2016-10-12T21:12:10.284998 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012056s
4530
+ D, [2016-10-12T21:12:10.286193 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2854'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4531
+ D, [2016-10-12T21:12:10.307644 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021360999999999998s
4532
+ D, [2016-10-12T21:12:10.308814 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2855'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4533
+ D, [2016-10-12T21:12:10.309403 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034500000000000004s
4534
+ D, [2016-10-12T21:12:10.310511 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2856'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2854')}], "ordered"=>true}
4535
+ D, [2016-10-12T21:12:10.335416 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024803000000000002s
4536
+ D, [2016-10-12T21:12:10.336416 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2854')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4537
+ D, [2016-10-12T21:12:10.336960 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000481s
4538
+ D, [2016-10-12T21:12:10.338222 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2857'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15a23af7feef0ca2855')}], "ordered"=>true}
4539
+ D, [2016-10-12T21:12:10.338576 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000295s
4540
+ D, [2016-10-12T21:12:10.339014 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2855')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4541
+ D, [2016-10-12T21:12:10.339524 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000455s
4542
+ D, [2016-10-12T21:12:10.340318 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}, "limit"=>1, "singleBatch"=>true}
4543
+ D, [2016-10-12T21:12:10.340692 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000319s
4544
+ D, [2016-10-12T21:12:10.341447 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca2855')]}}}
4545
+ D, [2016-10-12T21:12:10.341817 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000319s
4546
+ D, [2016-10-12T21:12:10.342771 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4547
+ D, [2016-10-12T21:12:10.343118 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000291s
4548
+ D, [2016-10-12T21:12:10.343303 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4549
+ D, [2016-10-12T21:12:10.343955 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000409s
4550
+ D, [2016-10-12T21:12:10.344741 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4551
+ D, [2016-10-12T21:12:10.357713 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01288s
4552
+ D, [2016-10-12T21:12:10.359012 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2858'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4553
+ D, [2016-10-12T21:12:10.379477 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020376s
4554
+ D, [2016-10-12T21:12:10.380845 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2859'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4555
+ D, [2016-10-12T21:12:10.381255 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035200000000000005s
4556
+ D, [2016-10-12T21:12:10.477653 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2859')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4557
+ D, [2016-10-12T21:12:10.553028 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.07521599999999999s
4558
+ D, [2016-10-12T21:12:10.554710 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2859')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4559
+ D, [2016-10-12T21:12:10.555292 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000512s
4560
+ D, [2016-10-12T21:12:10.556718 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285a'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4561
+ D, [2016-10-12T21:12:10.579738 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02292s
4562
+ D, [2016-10-12T21:12:10.581146 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285b'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4563
+ D, [2016-10-12T21:12:10.581507 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000308s
4564
+ D, [2016-10-12T21:12:10.582815 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2859'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca285a')}}, "multi"=>false, "upsert"=>false}], "ordered...
4565
+ D, [2016-10-12T21:12:10.583292 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000423s
4566
+ D, [2016-10-12T21:12:10.583865 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2859'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca285b')}}, "multi"=>false, "upsert"=>false}], "ordered...
4567
+ D, [2016-10-12T21:12:10.584292 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00040800000000000005s
4568
+ D, [2016-10-12T21:12:10.584656 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2859')}}
4569
+ D, [2016-10-12T21:12:10.585863 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000513s
4570
+ D, [2016-10-12T21:12:10.586966 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca285a')]}}}
4571
+ D, [2016-10-12T21:12:10.587332 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000303s
4572
+ D, [2016-10-12T21:12:10.588245 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4573
+ D, [2016-10-12T21:12:10.588616 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000317s
4574
+ D, [2016-10-12T21:12:10.588791 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4575
+ D, [2016-10-12T21:12:10.589224 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000387s
4576
+ D, [2016-10-12T21:12:10.589343 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4577
+ D, [2016-10-12T21:12:10.600538 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011025s
4578
+ D, [2016-10-12T21:12:10.601942 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4579
+ D, [2016-10-12T21:12:10.622803 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020759999999999997s
4580
+ D, [2016-10-12T21:12:10.624024 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285d'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4581
+ D, [2016-10-12T21:12:10.624589 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0005070000000000001s
4582
+ D, [2016-10-12T21:12:10.625617 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285d')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4583
+ D, [2016-10-12T21:12:10.626022 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00035s
4584
+ D, [2016-10-12T21:12:10.626713 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285d')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4585
+ D, [2016-10-12T21:12:10.627077 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00031099999999999997s
4586
+ D, [2016-10-12T21:12:10.628203 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285e'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4587
+ D, [2016-10-12T21:12:10.648217 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019894s
4588
+ D, [2016-10-12T21:12:10.649583 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285f'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4589
+ D, [2016-10-12T21:12:10.649990 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035200000000000005s
4590
+ D, [2016-10-12T21:12:10.651056 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285d'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca285e')}}, "multi"=>false, "upsert"=>false}], "ordered...
4591
+ D, [2016-10-12T21:12:10.652162 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000451s
4592
+ D, [2016-10-12T21:12:10.652746 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285d'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca285f')}}, "multi"=>false, "upsert"=>false}], "ordered...
4593
+ D, [2016-10-12T21:12:10.653243 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000437s
4594
+ D, [2016-10-12T21:12:10.653636 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285d')}}
4595
+ D, [2016-10-12T21:12:10.654074 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000386s
4596
+ D, [2016-10-12T21:12:10.655056 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca285e')]}}}
4597
+ D, [2016-10-12T21:12:10.655469 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000356s
4598
+ D, [2016-10-12T21:12:10.657557 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca285f')}, "limit"=>1, "singleBatch"=>true}
4599
+ D, [2016-10-12T21:12:10.658029 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000332s
4600
+ D, [2016-10-12T21:12:10.658733 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4601
+ D, [2016-10-12T21:12:10.659172 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000395s
4602
+ D, [2016-10-12T21:12:10.659347 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4603
+ D, [2016-10-12T21:12:10.659855 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000461s
4604
+ D, [2016-10-12T21:12:10.659974 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4605
+ D, [2016-10-12T21:12:10.671794 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011728s
4606
+ D, [2016-10-12T21:12:10.672932 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2860'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4607
+ D, [2016-10-12T21:12:10.694314 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021293000000000003s
4608
+ D, [2016-10-12T21:12:10.695528 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2861'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4609
+ D, [2016-10-12T21:12:10.695892 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000317s
4610
+ D, [2016-10-12T21:12:10.696947 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2861')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4611
+ D, [2016-10-12T21:12:10.697319 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000319s
4612
+ D, [2016-10-12T21:12:10.698653 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2861')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4613
+ D, [2016-10-12T21:12:10.698980 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000276s
4614
+ D, [2016-10-12T21:12:10.700023 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2862'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4615
+ D, [2016-10-12T21:12:10.721446 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021325s
4616
+ D, [2016-10-12T21:12:10.722841 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2863'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4617
+ D, [2016-10-12T21:12:10.723285 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000379s
4618
+ D, [2016-10-12T21:12:10.724403 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2861'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca2862')}}, "multi"=>false, "upsert"=>false}], "ordered...
4619
+ D, [2016-10-12T21:12:10.724889 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000429s
4620
+ D, [2016-10-12T21:12:10.725433 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2861'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca2863')}}, "multi"=>false, "upsert"=>false}], "ordered...
4621
+ D, [2016-10-12T21:12:10.725820 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000335s
4622
+ D, [2016-10-12T21:12:10.726244 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2861')}}
4623
+ D, [2016-10-12T21:12:10.726595 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000296s
4624
+ D, [2016-10-12T21:12:10.727618 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca2862')]}}}
4625
+ D, [2016-10-12T21:12:10.727971 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029499999999999996s
4626
+ D, [2016-10-12T21:12:10.728690 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4627
+ D, [2016-10-12T21:12:10.729015 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00027100000000000003s
4628
+ D, [2016-10-12T21:12:10.729186 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4629
+ D, [2016-10-12T21:12:10.729635 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000397s
4630
+ D, [2016-10-12T21:12:10.729752 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4631
+ D, [2016-10-12T21:12:10.743481 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013638s
4632
+ D, [2016-10-12T21:12:10.744667 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2864'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4633
+ D, [2016-10-12T21:12:10.765965 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021212s
4634
+ D, [2016-10-12T21:12:10.767917 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2865'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4635
+ D, [2016-10-12T21:12:10.768338 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036300000000000004s
4636
+ D, [2016-10-12T21:12:10.769349 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2865')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4637
+ D, [2016-10-12T21:12:10.769729 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00032599999999999996s
4638
+ D, [2016-10-12T21:12:10.770350 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2865')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4639
+ D, [2016-10-12T21:12:10.770715 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000314s
4640
+ D, [2016-10-12T21:12:10.771737 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2866'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4641
+ D, [2016-10-12T21:12:10.797999 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026166000000000002s
4642
+ D, [2016-10-12T21:12:10.799501 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2867'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4643
+ D, [2016-10-12T21:12:10.799967 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0004s
4644
+ D, [2016-10-12T21:12:10.801168 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2865'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca2866')}}, "multi"=>false, "upsert"=>false}], "ordered...
4645
+ D, [2016-10-12T21:12:10.801708 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000492s
4646
+ D, [2016-10-12T21:12:10.802248 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2865'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca2867')}}, "multi"=>false, "upsert"=>false}], "ordered...
4647
+ D, [2016-10-12T21:12:10.802654 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000344s
4648
+ D, [2016-10-12T21:12:10.803113 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2865')}}
4649
+ D, [2016-10-12T21:12:10.803438 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000278s
4650
+ D, [2016-10-12T21:12:10.804436 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca2867')]}}}
4651
+ D, [2016-10-12T21:12:10.804781 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000288s
4652
+ D, [2016-10-12T21:12:10.805608 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4653
+ D, [2016-10-12T21:12:10.806642 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000377s
4654
+ D, [2016-10-12T21:12:10.806867 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4655
+ D, [2016-10-12T21:12:10.807423 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000503s
4656
+ D, [2016-10-12T21:12:10.807559 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4657
+ D, [2016-10-12T21:12:10.818181 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010522s
4658
+ D, [2016-10-12T21:12:10.819398 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2868'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4659
+ D, [2016-10-12T21:12:10.840589 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021098000000000002s
4660
+ D, [2016-10-12T21:12:10.841784 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2869'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4661
+ D, [2016-10-12T21:12:10.842230 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00038500000000000003s
4662
+ D, [2016-10-12T21:12:10.843590 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2869')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4663
+ D, [2016-10-12T21:12:10.844050 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039400000000000004s
4664
+ D, [2016-10-12T21:12:10.844735 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2869')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4665
+ D, [2016-10-12T21:12:10.845175 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00038500000000000003s
4666
+ D, [2016-10-12T21:12:10.846189 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286a'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4667
+ D, [2016-10-12T21:12:10.867629 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021329s
4668
+ D, [2016-10-12T21:12:10.868988 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286b'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4669
+ D, [2016-10-12T21:12:10.869396 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035200000000000005s
4670
+ D, [2016-10-12T21:12:10.870529 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2869'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca286a')}}, "multi"=>false, "upsert"=>false}], "ordered...
4671
+ D, [2016-10-12T21:12:10.871170 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000526s
4672
+ D, [2016-10-12T21:12:10.872030 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2869'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca286b')}}, "multi"=>false, "upsert"=>false}], "ordered...
4673
+ D, [2016-10-12T21:12:10.873282 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000373s
4674
+ D, [2016-10-12T21:12:10.873713 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2869')}}
4675
+ D, [2016-10-12T21:12:10.874151 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000388s
4676
+ D, [2016-10-12T21:12:10.875136 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca286b')]}}}
4677
+ D, [2016-10-12T21:12:10.875512 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031999999999999997s
4678
+ D, [2016-10-12T21:12:10.876290 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286a')}, "limit"=>1, "singleBatch"=>true}
4679
+ D, [2016-10-12T21:12:10.876613 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000247s
4680
+ D, [2016-10-12T21:12:10.877268 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4681
+ D, [2016-10-12T21:12:10.877649 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000338s
4682
+ D, [2016-10-12T21:12:10.877826 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4683
+ D, [2016-10-12T21:12:10.878382 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000463s
4684
+ D, [2016-10-12T21:12:10.878531 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4685
+ D, [2016-10-12T21:12:10.895516 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.016896s
4686
+ D, [2016-10-12T21:12:10.896742 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4687
+ D, [2016-10-12T21:12:10.924618 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027766000000000002s
4688
+ D, [2016-10-12T21:12:10.926085 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286d'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4689
+ D, [2016-10-12T21:12:10.926671 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000519s
4690
+ D, [2016-10-12T21:12:10.927987 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286d')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4691
+ D, [2016-10-12T21:12:10.928539 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00042s
4692
+ D, [2016-10-12T21:12:10.929368 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286d')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4693
+ D, [2016-10-12T21:12:10.929816 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000374s
4694
+ D, [2016-10-12T21:12:10.931104 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286e'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4695
+ D, [2016-10-12T21:12:10.956833 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024839s
4696
+ D, [2016-10-12T21:12:10.958181 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286f'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4697
+ D, [2016-10-12T21:12:10.958631 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000395s
4698
+ D, [2016-10-12T21:12:10.959787 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286d'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca286e')}}, "multi"=>false, "upsert"=>false}], "ordered...
4699
+ D, [2016-10-12T21:12:10.960308 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000457s
4700
+ D, [2016-10-12T21:12:10.960923 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286d'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15a23af7feef0ca286f')}}, "multi"=>false, "upsert"=>false}], "ordered...
4701
+ D, [2016-10-12T21:12:10.961560 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005719999999999999s
4702
+ D, [2016-10-12T21:12:10.962023 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca286d')}}
4703
+ D, [2016-10-12T21:12:10.962422 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000339s
4704
+ D, [2016-10-12T21:12:10.963523 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15a23af7feef0ca286f')]}}}
4705
+ D, [2016-10-12T21:12:10.963905 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000323s
4706
+ D, [2016-10-12T21:12:10.964659 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4707
+ D, [2016-10-12T21:12:10.965024 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030300000000000005s
4708
+ D, [2016-10-12T21:12:10.965216 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4709
+ D, [2016-10-12T21:12:10.965732 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000456s
4710
+ D, [2016-10-12T21:12:10.965929 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4711
+ D, [2016-10-12T21:12:10.977805 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011783s
4712
+ D, [2016-10-12T21:12:10.978937 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15a23af7feef0ca2870'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4713
+ D, [2016-10-12T21:12:11.009577 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.030546s
4714
+ D, [2016-10-12T21:12:11.011020 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2871'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4715
+ D, [2016-10-12T21:12:11.011440 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000363s
4716
+ D, [2016-10-12T21:12:11.013023 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2871')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4717
+ D, [2016-10-12T21:12:11.013432 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000355s
4718
+ D, [2016-10-12T21:12:11.014086 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2871')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4719
+ D, [2016-10-12T21:12:11.014418 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000273s
4720
+ D, [2016-10-12T21:12:11.015419 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2872'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4721
+ D, [2016-10-12T21:12:11.056554 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.041017s
4722
+ D, [2016-10-12T21:12:11.058252 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2873'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4723
+ D, [2016-10-12T21:12:11.058754 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000428s
4724
+ D, [2016-10-12T21:12:11.060199 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2871'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15b23af7feef0ca2872')}}, "multi"=>false, "upsert"=>false}], "ordered...
4725
+ D, [2016-10-12T21:12:11.060778 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000513s
4726
+ D, [2016-10-12T21:12:11.061500 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2871'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15b23af7feef0ca2873')}}, "multi"=>false, "upsert"=>false}], "ordered...
4727
+ D, [2016-10-12T21:12:11.062092 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000521s
4728
+ D, [2016-10-12T21:12:11.062622 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2871')}}
4729
+ D, [2016-10-12T21:12:11.063100 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000409s
4730
+ D, [2016-10-12T21:12:11.064377 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca2872'), BSON::ObjectId('57fed15b23af7feef0ca2873')]}}}
4731
+ D, [2016-10-12T21:12:11.064848 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00039499999999999995s
4732
+ D, [2016-10-12T21:12:11.065896 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4733
+ D, [2016-10-12T21:12:11.066337 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000364s
4734
+ D, [2016-10-12T21:12:11.066579 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4735
+ D, [2016-10-12T21:12:11.067184 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005279999999999999s
4736
+ D, [2016-10-12T21:12:11.067350 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4737
+ D, [2016-10-12T21:12:11.086993 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019539s
4738
+ D, [2016-10-12T21:12:11.088281 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2874'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4739
+ D, [2016-10-12T21:12:11.116411 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028021s
4740
+ D, [2016-10-12T21:12:11.117650 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2875'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4741
+ D, [2016-10-12T21:12:11.118035 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000335s
4742
+ D, [2016-10-12T21:12:11.118994 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2875')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4743
+ D, [2016-10-12T21:12:11.119336 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00029299999999999997s
4744
+ D, [2016-10-12T21:12:11.119982 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2875')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4745
+ D, [2016-10-12T21:12:11.120276 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00025s
4746
+ D, [2016-10-12T21:12:11.121304 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2876'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4747
+ D, [2016-10-12T21:12:11.142191 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020777999999999998s
4748
+ D, [2016-10-12T21:12:11.143495 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2877'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4749
+ D, [2016-10-12T21:12:11.143905 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036s
4750
+ D, [2016-10-12T21:12:11.144959 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2875'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15b23af7feef0ca2876')}}, "multi"=>false, "upsert"=>false}], "ordered...
4751
+ D, [2016-10-12T21:12:11.145447 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000438s
4752
+ D, [2016-10-12T21:12:11.145980 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2875'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15b23af7feef0ca2877')}}, "multi"=>false, "upsert"=>false}], "ordered...
4753
+ D, [2016-10-12T21:12:11.146364 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000335s
4754
+ D, [2016-10-12T21:12:11.146760 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2875')}}
4755
+ D, [2016-10-12T21:12:11.147090 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00028199999999999997s
4756
+ D, [2016-10-12T21:12:11.148772 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca2876'), BSON::ObjectId('57fed15b23af7feef0ca2877')]}}}
4757
+ D, [2016-10-12T21:12:11.149209 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000374s
4758
+ D, [2016-10-12T21:12:11.150069 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4759
+ D, [2016-10-12T21:12:11.150524 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00039200000000000004s
4760
+ D, [2016-10-12T21:12:11.150723 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4761
+ D, [2016-10-12T21:12:11.151189 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000418s
4762
+ D, [2016-10-12T21:12:11.151356 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4763
+ D, [2016-10-12T21:12:11.163127 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011723s
4764
+ D, [2016-10-12T21:12:11.164338 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2878'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4765
+ D, [2016-10-12T21:12:11.184486 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020052s
4766
+ D, [2016-10-12T21:12:11.185859 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2879'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
4767
+ D, [2016-10-12T21:12:11.186353 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000419s
4768
+ D, [2016-10-12T21:12:11.187412 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2879')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4769
+ D, [2016-10-12T21:12:11.187913 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000446s
4770
+ D, [2016-10-12T21:12:11.188559 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2879')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
4771
+ D, [2016-10-12T21:12:11.188991 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000359s
4772
+ D, [2016-10-12T21:12:11.190468 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287a'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
4773
+ D, [2016-10-12T21:12:11.212446 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021867s
4774
+ D, [2016-10-12T21:12:11.213899 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287b'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
4775
+ D, [2016-10-12T21:12:11.214331 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000338s
4776
+ D, [2016-10-12T21:12:11.215394 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2879'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15b23af7feef0ca287a')}}, "multi"=>false, "upsert"=>false}], "ordered...
4777
+ D, [2016-10-12T21:12:11.216516 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043799999999999997s
4778
+ D, [2016-10-12T21:12:11.217211 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2879'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('57fed15b23af7feef0ca287b')}}, "multi"=>false, "upsert"=>false}], "ordered...
4779
+ D, [2016-10-12T21:12:11.217648 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000383s
4780
+ D, [2016-10-12T21:12:11.218024 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2879')}}
4781
+ D, [2016-10-12T21:12:11.218376 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000259s
4782
+ D, [2016-10-12T21:12:11.219555 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca287a'), BSON::ObjectId('57fed15b23af7feef0ca287b')]}}}
4783
+ D, [2016-10-12T21:12:11.219875 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000269s
4784
+ D, [2016-10-12T21:12:11.220651 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4785
+ D, [2016-10-12T21:12:11.220997 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000289s
4786
+ D, [2016-10-12T21:12:11.221184 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
4787
+ D, [2016-10-12T21:12:11.221667 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000439s
4788
+ D, [2016-10-12T21:12:11.221793 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4789
+ D, [2016-10-12T21:12:11.233856 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011967s
4790
+ D, [2016-10-12T21:12:11.235112 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4791
+ D, [2016-10-12T21:12:11.256434 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021231999999999997s
4792
+ D, [2016-10-12T21:12:11.258072 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287d'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca287c')}], "ordered"=>true}
4793
+ D, [2016-10-12T21:12:11.280942 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022768s
4794
+ D, [2016-10-12T21:12:11.281973 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287c')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4795
+ D, [2016-10-12T21:12:11.282451 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000426s
4796
+ D, [2016-10-12T21:12:11.283230 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287e'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca287c')}], "ordered"=>true}
4797
+ D, [2016-10-12T21:12:11.283675 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035s
4798
+ D, [2016-10-12T21:12:11.284318 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287c')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4799
+ D, [2016-10-12T21:12:11.285259 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000313s
4800
+ D, [2016-10-12T21:12:11.286131 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
4801
+ D, [2016-10-12T21:12:11.286519 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000335s
4802
+ D, [2016-10-12T21:12:11.287399 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca287c')]}}}
4803
+ D, [2016-10-12T21:12:11.287758 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000307s
4804
+ D, [2016-10-12T21:12:11.288528 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4805
+ D, [2016-10-12T21:12:11.288885 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030100000000000005s
4806
+ D, [2016-10-12T21:12:11.289065 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4807
+ D, [2016-10-12T21:12:11.289508 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000395s
4808
+ D, [2016-10-12T21:12:11.289658 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4809
+ D, [2016-10-12T21:12:11.301160 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011409s
4810
+ D, [2016-10-12T21:12:11.302292 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287f'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4811
+ D, [2016-10-12T21:12:11.331283 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028889s
4812
+ D, [2016-10-12T21:12:11.332953 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2880'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca287f')}], "ordered"=>true}
4813
+ D, [2016-10-12T21:12:11.355394 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022071s
4814
+ D, [2016-10-12T21:12:11.356369 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4815
+ D, [2016-10-12T21:12:11.356878 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00040300000000000004s
4816
+ D, [2016-10-12T21:12:11.357664 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2881'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca287f')}], "ordered"=>true}
4817
+ D, [2016-10-12T21:12:11.358015 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000294s
4818
+ D, [2016-10-12T21:12:11.358570 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca287f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4819
+ D, [2016-10-12T21:12:11.358943 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000317s
4820
+ D, [2016-10-12T21:12:11.359669 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
4821
+ D, [2016-10-12T21:12:11.360146 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000417s
4822
+ D, [2016-10-12T21:12:11.361480 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca287f')]}}}
4823
+ D, [2016-10-12T21:12:11.361924 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000377s
4824
+ D, [2016-10-12T21:12:11.362893 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4825
+ D, [2016-10-12T21:12:11.363259 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000309s
4826
+ D, [2016-10-12T21:12:11.363435 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4827
+ D, [2016-10-12T21:12:11.363903 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000422s
4828
+ D, [2016-10-12T21:12:11.364032 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4829
+ D, [2016-10-12T21:12:11.375306 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01118s
4830
+ D, [2016-10-12T21:12:11.376648 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2882'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4831
+ D, [2016-10-12T21:12:11.397819 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021065s
4832
+ D, [2016-10-12T21:12:11.399312 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2883'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2882')}], "ordered"=>true}
4833
+ D, [2016-10-12T21:12:11.419517 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020110000000000003s
4834
+ D, [2016-10-12T21:12:11.420447 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2882')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4835
+ D, [2016-10-12T21:12:11.420933 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000395s
4836
+ D, [2016-10-12T21:12:11.421681 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2884'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2882')}], "ordered"=>true}
4837
+ D, [2016-10-12T21:12:11.422039 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000309s
4838
+ D, [2016-10-12T21:12:11.422528 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2882')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4839
+ D, [2016-10-12T21:12:11.423084 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005049999999999999s
4840
+ D, [2016-10-12T21:12:11.423750 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
4841
+ D, [2016-10-12T21:12:11.424224 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000423s
4842
+ D, [2016-10-12T21:12:11.424844 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca2882')]}}}
4843
+ D, [2016-10-12T21:12:11.425170 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000268s
4844
+ D, [2016-10-12T21:12:11.426174 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4845
+ D, [2016-10-12T21:12:11.427169 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000333s
4846
+ D, [2016-10-12T21:12:11.427356 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4847
+ D, [2016-10-12T21:12:11.427841 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000434s
4848
+ D, [2016-10-12T21:12:11.427967 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4849
+ D, [2016-10-12T21:12:11.439225 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011142s
4850
+ D, [2016-10-12T21:12:11.440462 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4851
+ D, [2016-10-12T21:12:11.462142 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021589999999999998s
4852
+ D, [2016-10-12T21:12:11.463539 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2886'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885')}], "ordered"=>true}
4853
+ D, [2016-10-12T21:12:11.553751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.09011s
4854
+ D, [2016-10-12T21:12:11.554933 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4855
+ D, [2016-10-12T21:12:11.578121 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.023061s
4856
+ D, [2016-10-12T21:12:11.579478 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2887'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885')}], "ordered"=>true}
4857
+ D, [2016-10-12T21:12:11.580015 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00046s
4858
+ D, [2016-10-12T21:12:11.580859 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4859
+ D, [2016-10-12T21:12:11.581367 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000434s
4860
+ D, [2016-10-12T21:12:11.582377 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
4861
+ D, [2016-10-12T21:12:11.582866 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000422s
4862
+ D, [2016-10-12T21:12:11.583740 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca2885')]}}}
4863
+ D, [2016-10-12T21:12:11.584180 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000368s
4864
+ D, [2016-10-12T21:12:11.585542 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885')}, "limit"=>1, "singleBatch"=>true}
4865
+ D, [2016-10-12T21:12:11.585979 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000362s
4866
+ D, [2016-10-12T21:12:11.586697 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca2885')]}}}
4867
+ D, [2016-10-12T21:12:11.587147 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000371s
4868
+ D, [2016-10-12T21:12:11.588289 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"posts", "query"=>{"person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2885')}}
4869
+ D, [2016-10-12T21:12:11.588664 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.000302s
4870
+ D, [2016-10-12T21:12:11.589437 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4871
+ D, [2016-10-12T21:12:11.589850 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00034s
4872
+ D, [2016-10-12T21:12:11.590097 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4873
+ D, [2016-10-12T21:12:11.624237 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.034025s
4874
+ D, [2016-10-12T21:12:11.624579 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4875
+ D, [2016-10-12T21:12:11.703975 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.07928s
4876
+ D, [2016-10-12T21:12:11.705477 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2888'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:...
4877
+ D, [2016-10-12T21:12:11.753639 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.04804s
4878
+ D, [2016-10-12T21:12:11.755504 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2889'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2888')}], "ordered"=>true}
4879
+ D, [2016-10-12T21:12:11.794546 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.038921s
4880
+ D, [2016-10-12T21:12:11.795676 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2888')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4881
+ D, [2016-10-12T21:12:11.796250 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0004969999999999999s
4882
+ D, [2016-10-12T21:12:11.797260 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288a'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca2888')}], "ordered"=>true}
4883
+ D, [2016-10-12T21:12:11.797730 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000395s
4884
+ D, [2016-10-12T21:12:11.798465 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca2888')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4885
+ D, [2016-10-12T21:12:11.798906 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000365s
4886
+ D, [2016-10-12T21:12:11.799804 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
4887
+ D, [2016-10-12T21:12:11.800290 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000418s
4888
+ D, [2016-10-12T21:12:11.801049 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca2888')]}}}
4889
+ D, [2016-10-12T21:12:11.801529 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00041s
4890
+ D, [2016-10-12T21:12:11.802385 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4891
+ D, [2016-10-12T21:12:11.803564 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00039999999999999996s
4892
+ D, [2016-10-12T21:12:11.803805 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4893
+ D, [2016-10-12T21:12:11.804680 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000802s
4894
+ D, [2016-10-12T21:12:11.804856 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4895
+ D, [2016-10-12T21:12:11.836865 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.031887000000000006s
4896
+ D, [2016-10-12T21:12:11.838415 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4897
+ D, [2016-10-12T21:12:11.895808 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.057267000000000005s
4898
+ D, [2016-10-12T21:12:11.897621 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288c'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca288b')}], "ordered"=>true}
4899
+ D, [2016-10-12T21:12:11.933757 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.035959s
4900
+ D, [2016-10-12T21:12:11.934897 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288b')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4901
+ D, [2016-10-12T21:12:11.935502 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000532s
4902
+ D, [2016-10-12T21:12:11.936540 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288d'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca288b')}], "ordered"=>true}
4903
+ D, [2016-10-12T21:12:11.937012 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000399s
4904
+ D, [2016-10-12T21:12:11.937771 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288b')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4905
+ D, [2016-10-12T21:12:11.938253 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00040500000000000003s
4906
+ D, [2016-10-12T21:12:11.939443 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
4907
+ D, [2016-10-12T21:12:11.939953 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00042500000000000003s
4908
+ D, [2016-10-12T21:12:11.941025 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca288b')]}}}
4909
+ D, [2016-10-12T21:12:11.941447 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035s
4910
+ D, [2016-10-12T21:12:11.942538 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4911
+ D, [2016-10-12T21:12:11.943069 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000456s
4912
+ D, [2016-10-12T21:12:11.943306 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4913
+ D, [2016-10-12T21:12:11.944023 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000597s
4914
+ D, [2016-10-12T21:12:11.945051 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4915
+ D, [2016-10-12T21:12:11.975270 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.030061s
4916
+ D, [2016-10-12T21:12:11.977025 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4917
+ D, [2016-10-12T21:12:12.027037 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.049886s
4918
+ D, [2016-10-12T21:12:12.028865 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca288f'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca288e')}], "ordered"=>true}
4919
+ D, [2016-10-12T21:12:12.067066 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.038081000000000004s
4920
+ D, [2016-10-12T21:12:12.068273 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4921
+ D, [2016-10-12T21:12:12.068977 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000619s
4922
+ D, [2016-10-12T21:12:12.070311 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2890'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15b23af7feef0ca288e')}], "ordered"=>true}
4923
+ D, [2016-10-12T21:12:12.070789 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000404s
4924
+ D, [2016-10-12T21:12:12.071437 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15b23af7feef0ca288e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4925
+ D, [2016-10-12T21:12:12.071875 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000364s
4926
+ D, [2016-10-12T21:12:12.072996 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
4927
+ D, [2016-10-12T21:12:12.073507 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000442s
4928
+ D, [2016-10-12T21:12:12.074320 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15b23af7feef0ca288e')]}}}
4929
+ D, [2016-10-12T21:12:12.074736 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000345s
4930
+ D, [2016-10-12T21:12:12.076068 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4931
+ D, [2016-10-12T21:12:12.076543 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00039200000000000004s
4932
+ D, [2016-10-12T21:12:12.076779 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4933
+ D, [2016-10-12T21:12:12.077383 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000537s
4934
+ D, [2016-10-12T21:12:12.077548 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4935
+ D, [2016-10-12T21:12:12.105524 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.027866000000000002s
4936
+ D, [2016-10-12T21:12:12.107083 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2891'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4937
+ D, [2016-10-12T21:12:12.149986 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.042768s
4938
+ D, [2016-10-12T21:12:12.152002 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2892'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca2891')}], "ordered"=>true}
4939
+ D, [2016-10-12T21:12:12.204206 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.052072s
4940
+ D, [2016-10-12T21:12:12.205445 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2891')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4941
+ D, [2016-10-12T21:12:12.206051 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000535s
4942
+ D, [2016-10-12T21:12:12.207003 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2893'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca2891')}], "ordered"=>true}
4943
+ D, [2016-10-12T21:12:12.207833 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00040699999999999997s
4944
+ D, [2016-10-12T21:12:12.208506 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2891')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4945
+ D, [2016-10-12T21:12:12.208971 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000391s
4946
+ D, [2016-10-12T21:12:12.210255 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
4947
+ D, [2016-10-12T21:12:12.210753 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00043s
4948
+ D, [2016-10-12T21:12:12.211628 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca2891')]}}}
4949
+ D, [2016-10-12T21:12:12.212048 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035s
4950
+ D, [2016-10-12T21:12:12.212935 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4951
+ D, [2016-10-12T21:12:12.213423 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00041200000000000004s
4952
+ D, [2016-10-12T21:12:12.213659 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4953
+ D, [2016-10-12T21:12:12.214249 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000518s
4954
+ D, [2016-10-12T21:12:12.214429 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4955
+ D, [2016-10-12T21:12:12.235727 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.021202s
4956
+ D, [2016-10-12T21:12:12.237085 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2894'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4957
+ D, [2016-10-12T21:12:12.264153 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026982s
4958
+ D, [2016-10-12T21:12:12.265507 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2895'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca2894')}], "ordered"=>true}
4959
+ D, [2016-10-12T21:12:12.287780 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021587000000000002s
4960
+ D, [2016-10-12T21:12:12.288755 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2894')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4961
+ D, [2016-10-12T21:12:12.289240 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000417s
4962
+ D, [2016-10-12T21:12:12.290082 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2896'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca2894')}], "ordered"=>true}
4963
+ D, [2016-10-12T21:12:12.290489 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000357s
4964
+ D, [2016-10-12T21:12:12.290939 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2894')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4965
+ D, [2016-10-12T21:12:12.291493 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000504s
4966
+ D, [2016-10-12T21:12:12.292424 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
4967
+ D, [2016-10-12T21:12:12.292918 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000439s
4968
+ D, [2016-10-12T21:12:12.293872 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca2894')]}}}
4969
+ D, [2016-10-12T21:12:12.294258 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
4970
+ D, [2016-10-12T21:12:12.295137 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4971
+ D, [2016-10-12T21:12:12.295492 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030000000000000003s
4972
+ D, [2016-10-12T21:12:12.295774 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4973
+ D, [2016-10-12T21:12:12.296233 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00045099999999999996s
4974
+ D, [2016-10-12T21:12:12.296373 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4975
+ D, [2016-10-12T21:12:12.315448 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018975s
4976
+ D, [2016-10-12T21:12:12.316648 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2897'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4977
+ D, [2016-10-12T21:12:12.340572 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023838s
4978
+ D, [2016-10-12T21:12:12.341900 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2898'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca2897')}], "ordered"=>true}
4979
+ D, [2016-10-12T21:12:12.362775 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02078s
4980
+ D, [2016-10-12T21:12:12.363779 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2897')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4981
+ D, [2016-10-12T21:12:12.364902 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00042899999999999997s
4982
+ D, [2016-10-12T21:12:12.365629 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2899'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca2897')}], "ordered"=>true}
4983
+ D, [2016-10-12T21:12:12.366032 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000349s
4984
+ D, [2016-10-12T21:12:12.366517 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca2897')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
4985
+ D, [2016-10-12T21:12:12.366931 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000359s
4986
+ D, [2016-10-12T21:12:12.367938 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
4987
+ D, [2016-10-12T21:12:12.368371 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000374s
4988
+ D, [2016-10-12T21:12:12.369102 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca2897')]}}}
4989
+ D, [2016-10-12T21:12:12.369435 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000274s
4990
+ D, [2016-10-12T21:12:12.370365 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
4991
+ D, [2016-10-12T21:12:12.370735 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00031200000000000005s
4992
+ D, [2016-10-12T21:12:12.370918 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
4993
+ D, [2016-10-12T21:12:12.371380 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000414s
4994
+ D, [2016-10-12T21:12:12.371499 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
4995
+ D, [2016-10-12T21:12:12.383016 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011420000000000001s
4996
+ D, [2016-10-12T21:12:12.384103 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289a'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
4997
+ D, [2016-10-12T21:12:12.406063 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021861000000000002s
4998
+ D, [2016-10-12T21:12:12.407618 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289b'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca289a')}], "ordered"=>true}
4999
+ D, [2016-10-12T21:12:12.428442 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020722s
5000
+ D, [2016-10-12T21:12:12.429425 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5001
+ D, [2016-10-12T21:12:12.429905 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000428s
5002
+ D, [2016-10-12T21:12:12.430640 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289c'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca289a')}], "ordered"=>true}
5003
+ D, [2016-10-12T21:12:12.431184 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000488s
5004
+ D, [2016-10-12T21:12:12.432356 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5005
+ D, [2016-10-12T21:12:12.432797 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000389s
5006
+ D, [2016-10-12T21:12:12.434129 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289d'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
5007
+ D, [2016-10-12T21:12:12.434523 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000335s
5008
+ D, [2016-10-12T21:12:12.435487 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289e'), "title"=>"three", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca289d')}], "ordered"=>true}
5009
+ D, [2016-10-12T21:12:12.435770 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000234s
5010
+ D, [2016-10-12T21:12:12.436256 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289d')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5011
+ D, [2016-10-12T21:12:12.436600 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00027299999999999997s
5012
+ D, [2016-10-12T21:12:12.437454 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
5013
+ D, [2016-10-12T21:12:12.437835 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00032900000000000003s
5014
+ D, [2016-10-12T21:12:12.438440 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca289a')]}}}
5015
+ D, [2016-10-12T21:12:12.438816 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000319s
5016
+ D, [2016-10-12T21:12:12.439224 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
5017
+ D, [2016-10-12T21:12:12.439654 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037799999999999997s
5018
+ D, [2016-10-12T21:12:12.440269 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5019
+ D, [2016-10-12T21:12:12.440637 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00031s
5020
+ D, [2016-10-12T21:12:12.440824 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5021
+ D, [2016-10-12T21:12:12.441263 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000391s
5022
+ D, [2016-10-12T21:12:12.441594 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5023
+ D, [2016-10-12T21:12:12.452822 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011135s
5024
+ D, [2016-10-12T21:12:12.453966 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289f'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5025
+ D, [2016-10-12T21:12:12.474276 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020214s
5026
+ D, [2016-10-12T21:12:12.475804 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a0'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca289f')}], "ordered"=>true}
5027
+ D, [2016-10-12T21:12:12.504281 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027696000000000002s
5028
+ D, [2016-10-12T21:12:12.505451 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5029
+ D, [2016-10-12T21:12:12.509439 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.003893s
5030
+ D, [2016-10-12T21:12:12.510435 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a1'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca289f')}], "ordered"=>true}
5031
+ D, [2016-10-12T21:12:12.510954 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00046300000000000003s
5032
+ D, [2016-10-12T21:12:12.511523 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca289f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5033
+ D, [2016-10-12T21:12:12.511881 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000303s
5034
+ D, [2016-10-12T21:12:12.513130 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a2'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00...
5035
+ D, [2016-10-12T21:12:12.513465 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000282s
5036
+ D, [2016-10-12T21:12:12.514451 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a3'), "title"=>"three", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a2')}], "ordered"=>true}
5037
+ D, [2016-10-12T21:12:12.514849 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000339s
5038
+ D, [2016-10-12T21:12:12.515563 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a2')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5039
+ D, [2016-10-12T21:12:12.516027 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000332s
5040
+ D, [2016-10-12T21:12:12.516728 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
5041
+ D, [2016-10-12T21:12:12.517065 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000289s
5042
+ D, [2016-10-12T21:12:12.517712 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca289f')]}}}
5043
+ D, [2016-10-12T21:12:12.518043 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000272s
5044
+ D, [2016-10-12T21:12:12.519065 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5045
+ D, [2016-10-12T21:12:12.519429 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000299s
5046
+ D, [2016-10-12T21:12:12.519632 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5047
+ D, [2016-10-12T21:12:12.541814 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.022058s
5048
+ D, [2016-10-12T21:12:12.542540 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5049
+ D, [2016-10-12T21:12:12.581210 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.038567000000000004s
5050
+ D, [2016-10-12T21:12:12.582535 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a4'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5051
+ D, [2016-10-12T21:12:12.614889 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.032258999999999996s
5052
+ D, [2016-10-12T21:12:12.616384 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a5'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a4')}], "ordered"=>true}
5053
+ D, [2016-10-12T21:12:12.647838 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.031342999999999996s
5054
+ D, [2016-10-12T21:12:12.648956 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a4')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5055
+ D, [2016-10-12T21:12:12.649561 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000536s
5056
+ D, [2016-10-12T21:12:12.650565 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a6'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a4')}], "ordered"=>true}
5057
+ D, [2016-10-12T21:12:12.650997 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000361s
5058
+ D, [2016-10-12T21:12:12.651698 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a4')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5059
+ D, [2016-10-12T21:12:12.652136 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000376s
5060
+ D, [2016-10-12T21:12:12.653341 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a7'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:0...
5061
+ D, [2016-10-12T21:12:12.653786 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000378s
5062
+ D, [2016-10-12T21:12:12.654856 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a8'), "title"=>"three", "person_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a7')}], "ordered"=>true}
5063
+ D, [2016-10-12T21:12:12.655345 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00042s
5064
+ D, [2016-10-12T21:12:12.655999 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a7')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5065
+ D, [2016-10-12T21:12:12.656440 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000371s
5066
+ D, [2016-10-12T21:12:12.657289 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
5067
+ D, [2016-10-12T21:12:12.657782 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000427s
5068
+ D, [2016-10-12T21:12:12.658567 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28a4')]}}}
5069
+ D, [2016-10-12T21:12:12.659751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037099999999999996s
5070
+ D, [2016-10-12T21:12:12.660979 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5071
+ D, [2016-10-12T21:12:12.661379 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00033000000000000005s
5072
+ D, [2016-10-12T21:12:12.661578 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5073
+ D, [2016-10-12T21:12:12.662212 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000485s
5074
+ D, [2016-10-12T21:12:12.662350 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5075
+ D, [2016-10-12T21:12:12.673754 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011311s
5076
+ D, [2016-10-12T21:12:12.674887 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28a9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5077
+ D, [2016-10-12T21:12:12.699719 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024724s
5078
+ D, [2016-10-12T21:12:12.701658 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28aa'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28a9')]}], "ordered"=>true}
5079
+ D, [2016-10-12T21:12:12.724019 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02227s
5080
+ D, [2016-10-12T21:12:12.724933 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28a9')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28aa')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5081
+ D, [2016-10-12T21:12:12.725449 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000463s
5082
+ D, [2016-10-12T21:12:12.726362 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28ab'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28a9')]}], "ordered"=>true}
5083
+ D, [2016-10-12T21:12:12.726776 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000352s
5084
+ D, [2016-10-12T21:12:12.727416 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28a9')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28ab')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5085
+ D, [2016-10-12T21:12:12.727818 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000353s
5086
+ D, [2016-10-12T21:12:12.728397 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5087
+ D, [2016-10-12T21:12:12.728829 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000376s
5088
+ D, [2016-10-12T21:12:12.729667 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28aa'), BSON::ObjectId('57fed15c23af7feef0ca28ab')]}}}
5089
+ D, [2016-10-12T21:12:12.729985 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000267s
5090
+ D, [2016-10-12T21:12:12.730662 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5091
+ D, [2016-10-12T21:12:12.731584 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000316s
5092
+ D, [2016-10-12T21:12:12.731789 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5093
+ D, [2016-10-12T21:12:12.732341 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0004969999999999999s
5094
+ D, [2016-10-12T21:12:12.732473 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5095
+ D, [2016-10-12T21:12:12.744476 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011905s
5096
+ D, [2016-10-12T21:12:12.745680 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28ac'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5097
+ D, [2016-10-12T21:12:12.767616 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021842s
5098
+ D, [2016-10-12T21:12:12.769119 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28ad'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28ac')]}], "ordered"=>true}
5099
+ D, [2016-10-12T21:12:12.788850 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019645000000000003s
5100
+ D, [2016-10-12T21:12:12.789698 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28ac')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28ad')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5101
+ D, [2016-10-12T21:12:12.790236 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000486s
5102
+ D, [2016-10-12T21:12:12.791090 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28ae'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28ac')]}], "ordered"=>true}
5103
+ D, [2016-10-12T21:12:12.791431 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000285s
5104
+ D, [2016-10-12T21:12:12.791979 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28ac')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28ae')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5105
+ D, [2016-10-12T21:12:12.792324 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00033499999999999996s
5106
+ D, [2016-10-12T21:12:12.792845 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5107
+ D, [2016-10-12T21:12:12.793435 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0005430000000000001s
5108
+ D, [2016-10-12T21:12:12.794051 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28ad'), BSON::ObjectId('57fed15c23af7feef0ca28ae')]}}}
5109
+ D, [2016-10-12T21:12:12.794490 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037999999999999997s
5110
+ D, [2016-10-12T21:12:12.795367 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5111
+ D, [2016-10-12T21:12:12.795742 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00031600000000000004s
5112
+ D, [2016-10-12T21:12:12.796604 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5113
+ D, [2016-10-12T21:12:12.797154 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000479s
5114
+ D, [2016-10-12T21:12:12.797279 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5115
+ D, [2016-10-12T21:12:12.810709 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013335000000000001s
5116
+ D, [2016-10-12T21:12:12.811854 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28af'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5117
+ D, [2016-10-12T21:12:12.834009 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022053s
5118
+ D, [2016-10-12T21:12:12.835528 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b0'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28af')]}], "ordered"=>true}
5119
+ D, [2016-10-12T21:12:12.857293 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021673s
5120
+ D, [2016-10-12T21:12:12.858170 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28af')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28b0')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5121
+ D, [2016-10-12T21:12:12.858770 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000552s
5122
+ D, [2016-10-12T21:12:12.859695 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b1'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28af')]}], "ordered"=>true}
5123
+ D, [2016-10-12T21:12:12.860058 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030000000000000003s
5124
+ D, [2016-10-12T21:12:12.860630 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28af')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28b1')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5125
+ D, [2016-10-12T21:12:12.861314 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000632s
5126
+ D, [2016-10-12T21:12:12.861869 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5127
+ D, [2016-10-12T21:12:12.862251 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000328s
5128
+ D, [2016-10-12T21:12:12.862977 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b0'), BSON::ObjectId('57fed15c23af7feef0ca28b1')]}}}
5129
+ D, [2016-10-12T21:12:12.863365 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000337s
5130
+ D, [2016-10-12T21:12:12.864347 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5131
+ D, [2016-10-12T21:12:12.864720 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000317s
5132
+ D, [2016-10-12T21:12:12.864895 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5133
+ D, [2016-10-12T21:12:12.865369 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000421s
5134
+ D, [2016-10-12T21:12:12.866107 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5135
+ D, [2016-10-12T21:12:12.882647 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01645s
5136
+ D, [2016-10-12T21:12:12.883754 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b2'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5137
+ D, [2016-10-12T21:12:12.913316 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.029455000000000002s
5138
+ D, [2016-10-12T21:12:12.915148 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b3'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28b2')]}], "ordered"=>true}
5139
+ D, [2016-10-12T21:12:12.937641 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022385s
5140
+ D, [2016-10-12T21:12:12.938607 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b2')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28b3')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5141
+ D, [2016-10-12T21:12:12.939265 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000601s
5142
+ D, [2016-10-12T21:12:12.940161 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b4'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28b2')]}], "ordered"=>true}
5143
+ D, [2016-10-12T21:12:12.940699 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00047799999999999996s
5144
+ D, [2016-10-12T21:12:12.941291 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b2')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28b4')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5145
+ D, [2016-10-12T21:12:12.941751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039299999999999996s
5146
+ D, [2016-10-12T21:12:12.942425 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
5147
+ D, [2016-10-12T21:12:12.942921 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000427s
5148
+ D, [2016-10-12T21:12:12.943813 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b3'), BSON::ObjectId('57fed15c23af7feef0ca28b4')]}}}
5149
+ D, [2016-10-12T21:12:12.944389 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000502s
5150
+ D, [2016-10-12T21:12:12.945222 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5151
+ D, [2016-10-12T21:12:12.945661 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00037600000000000003s
5152
+ D, [2016-10-12T21:12:12.945854 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5153
+ D, [2016-10-12T21:12:12.946331 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000429s
5154
+ D, [2016-10-12T21:12:12.946452 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5155
+ D, [2016-10-12T21:12:12.958303 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011714s
5156
+ D, [2016-10-12T21:12:12.959438 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b5'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5157
+ D, [2016-10-12T21:12:12.986300 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026772s
5158
+ D, [2016-10-12T21:12:12.987801 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15c23af7feef0ca28b6'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28b5')]}], "ordered"=>true}
5159
+ D, [2016-10-12T21:12:13.011025 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023143s
5160
+ D, [2016-10-12T21:12:13.011947 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b5')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15c23af7feef0ca28b6')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5161
+ D, [2016-10-12T21:12:13.012512 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000518s
5162
+ D, [2016-10-12T21:12:13.013325 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28b7'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15c23af7feef0ca28b5')]}], "ordered"=>true}
5163
+ D, [2016-10-12T21:12:13.013731 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000348s
5164
+ D, [2016-10-12T21:12:13.014297 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b5')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28b7')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5165
+ D, [2016-10-12T21:12:13.014694 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00034s
5166
+ D, [2016-10-12T21:12:13.015332 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
5167
+ D, [2016-10-12T21:12:13.015719 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000336s
5168
+ D, [2016-10-12T21:12:13.016432 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15c23af7feef0ca28b6'), BSON::ObjectId('57fed15d23af7feef0ca28b7')]}}}
5169
+ D, [2016-10-12T21:12:13.016752 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027s
5170
+ D, [2016-10-12T21:12:13.017587 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5171
+ D, [2016-10-12T21:12:13.017953 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000307s
5172
+ D, [2016-10-12T21:12:13.018162 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5173
+ D, [2016-10-12T21:12:13.018619 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000406s
5174
+ D, [2016-10-12T21:12:13.018746 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5175
+ D, [2016-10-12T21:12:13.030657 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011817000000000001s
5176
+ D, [2016-10-12T21:12:13.031794 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28b8'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5177
+ D, [2016-10-12T21:12:13.053734 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021837000000000002s
5178
+ D, [2016-10-12T21:12:13.055309 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28b9'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28b8')]}], "ordered"=>true}
5179
+ D, [2016-10-12T21:12:13.079416 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02401s
5180
+ D, [2016-10-12T21:12:13.080750 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28b8')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28b9')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5181
+ D, [2016-10-12T21:12:13.081228 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043000000000000004s
5182
+ D, [2016-10-12T21:12:13.082171 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ba'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28b8')]}], "ordered"=>true}
5183
+ D, [2016-10-12T21:12:13.082492 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000269s
5184
+ D, [2016-10-12T21:12:13.083038 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28b8')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28ba')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5185
+ D, [2016-10-12T21:12:13.083396 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00030900000000000003s
5186
+ D, [2016-10-12T21:12:13.083976 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
5187
+ D, [2016-10-12T21:12:13.084303 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000281s
5188
+ D, [2016-10-12T21:12:13.085184 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28b9'), BSON::ObjectId('57fed15d23af7feef0ca28ba')]}}}
5189
+ D, [2016-10-12T21:12:13.085518 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00028599999999999996s
5190
+ D, [2016-10-12T21:12:13.086474 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5191
+ D, [2016-10-12T21:12:13.087103 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000549s
5192
+ D, [2016-10-12T21:12:13.087445 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5193
+ D, [2016-10-12T21:12:13.087996 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00049s
5194
+ D, [2016-10-12T21:12:13.088121 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5195
+ D, [2016-10-12T21:12:13.105673 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017459s
5196
+ D, [2016-10-12T21:12:13.107115 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28bb'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5197
+ D, [2016-10-12T21:12:13.128918 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021699999999999997s
5198
+ D, [2016-10-12T21:12:13.131308 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28bc'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28bb')]}], "ordered"=>true}
5199
+ D, [2016-10-12T21:12:13.165682 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.034273s
5200
+ D, [2016-10-12T21:12:13.166623 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28bb')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28bc')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5201
+ D, [2016-10-12T21:12:13.167202 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005279999999999999s
5202
+ D, [2016-10-12T21:12:13.168024 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28bd'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28bb')]}], "ordered"=>true}
5203
+ D, [2016-10-12T21:12:13.168394 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000312s
5204
+ D, [2016-10-12T21:12:13.168975 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28bb')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28bd')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5205
+ D, [2016-10-12T21:12:13.169406 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000378s
5206
+ D, [2016-10-12T21:12:13.170253 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
5207
+ D, [2016-10-12T21:12:13.170642 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
5208
+ D, [2016-10-12T21:12:13.171378 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28bc'), BSON::ObjectId('57fed15d23af7feef0ca28bd')]}}}
5209
+ D, [2016-10-12T21:12:13.171746 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000315s
5210
+ D, [2016-10-12T21:12:13.172472 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5211
+ D, [2016-10-12T21:12:13.172819 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00028900000000000003s
5212
+ D, [2016-10-12T21:12:13.172998 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5213
+ D, [2016-10-12T21:12:13.173450 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000399s
5214
+ D, [2016-10-12T21:12:13.173572 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5215
+ D, [2016-10-12T21:12:13.191248 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017585999999999997s
5216
+ D, [2016-10-12T21:12:13.192354 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28be'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5217
+ D, [2016-10-12T21:12:13.228264 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.035759s
5218
+ D, [2016-10-12T21:12:13.230077 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28bf'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28be')]}], "ordered"=>true}
5219
+ D, [2016-10-12T21:12:13.253363 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02238s
5220
+ D, [2016-10-12T21:12:13.254232 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28be')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28bf')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5221
+ D, [2016-10-12T21:12:13.254862 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005750000000000001s
5222
+ D, [2016-10-12T21:12:13.255671 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c0'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28be')]}], "ordered"=>true}
5223
+ D, [2016-10-12T21:12:13.256048 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030900000000000003s
5224
+ D, [2016-10-12T21:12:13.256795 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28be')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28c0')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5225
+ D, [2016-10-12T21:12:13.257269 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000413s
5226
+ D, [2016-10-12T21:12:13.257914 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
5227
+ D, [2016-10-12T21:12:13.258255 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000294s
5228
+ D, [2016-10-12T21:12:13.258935 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28bf'), BSON::ObjectId('57fed15d23af7feef0ca28c0')]}}}
5229
+ D, [2016-10-12T21:12:13.259247 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000263s
5230
+ D, [2016-10-12T21:12:13.260157 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5231
+ D, [2016-10-12T21:12:13.260548 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000324s
5232
+ D, [2016-10-12T21:12:13.260777 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5233
+ D, [2016-10-12T21:12:13.261250 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000423s
5234
+ D, [2016-10-12T21:12:13.261381 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5235
+ D, [2016-10-12T21:12:13.272882 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011392000000000001s
5236
+ D, [2016-10-12T21:12:13.274312 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c1'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5237
+ D, [2016-10-12T21:12:13.295791 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021363s
5238
+ D, [2016-10-12T21:12:13.297296 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c2'), "name"=>"one", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28c1')]}], "ordered"=>true}
5239
+ D, [2016-10-12T21:12:13.317845 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020454s
5240
+ D, [2016-10-12T21:12:13.318776 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28c1')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28c2')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5241
+ D, [2016-10-12T21:12:13.319965 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000498s
5242
+ D, [2016-10-12T21:12:13.320767 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c3'), "name"=>"two", "person_ids"=>[BSON::ObjectId('57fed15d23af7feef0ca28c1')]}], "ordered"=>true}
5243
+ D, [2016-10-12T21:12:13.321131 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031499999999999996s
5244
+ D, [2016-10-12T21:12:13.321592 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28c1')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('57fed15d23af7feef0ca28c3')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5245
+ D, [2016-10-12T21:12:13.322026 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000379s
5246
+ D, [2016-10-12T21:12:13.322751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
5247
+ D, [2016-10-12T21:12:13.323154 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000341s
5248
+ D, [2016-10-12T21:12:13.324431 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28c2'), BSON::ObjectId('57fed15d23af7feef0ca28c3')]}}}
5249
+ D, [2016-10-12T21:12:13.324884 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000384s
5250
+ D, [2016-10-12T21:12:13.326013 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5251
+ D, [2016-10-12T21:12:13.326412 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00034s
5252
+ D, [2016-10-12T21:12:13.326595 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5253
+ D, [2016-10-12T21:12:13.327166 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000509s
5254
+ D, [2016-10-12T21:12:13.327337 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
5255
+ D, [2016-10-12T21:12:13.338236 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010798s
5256
+ D, [2016-10-12T21:12:13.339393 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c4'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5257
+ D, [2016-10-12T21:12:13.360248 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02076s
5258
+ D, [2016-10-12T21:12:13.361702 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c5'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c4')}], "ordered"=>true}
5259
+ D, [2016-10-12T21:12:13.389450 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027610000000000003s
5260
+ D, [2016-10-12T21:12:13.390185 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c4')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5261
+ D, [2016-10-12T21:12:13.390654 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000413s
5262
+ D, [2016-10-12T21:12:13.392106 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c6'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c4')}], "ordered"=>true}
5263
+ D, [2016-10-12T21:12:13.392528 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000361s
5264
+ D, [2016-10-12T21:12:13.393068 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c4')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5265
+ D, [2016-10-12T21:12:13.393432 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00031099999999999997s
5266
+ D, [2016-10-12T21:12:13.394035 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5267
+ D, [2016-10-12T21:12:13.394388 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000303s
5268
+ D, [2016-10-12T21:12:13.394993 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28c4')]}}}
5269
+ D, [2016-10-12T21:12:13.395275 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000233s
5270
+ D, [2016-10-12T21:12:13.395963 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5271
+ D, [2016-10-12T21:12:13.396300 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000282s
5272
+ D, [2016-10-12T21:12:13.396507 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5273
+ D, [2016-10-12T21:12:13.396959 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000403s
5274
+ D, [2016-10-12T21:12:13.397076 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5275
+ D, [2016-10-12T21:12:13.415973 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018782s
5276
+ D, [2016-10-12T21:12:13.417511 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c7'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5277
+ D, [2016-10-12T21:12:13.446335 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02871s
5278
+ D, [2016-10-12T21:12:13.448064 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c8'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c7')}], "ordered"=>true}
5279
+ D, [2016-10-12T21:12:13.470058 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021896000000000002s
5280
+ D, [2016-10-12T21:12:13.470961 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c7')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5281
+ D, [2016-10-12T21:12:13.471446 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000424s
5282
+ D, [2016-10-12T21:12:13.472202 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c9'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c7')}], "ordered"=>true}
5283
+ D, [2016-10-12T21:12:13.472556 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000306s
5284
+ D, [2016-10-12T21:12:13.472910 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28c7')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5285
+ D, [2016-10-12T21:12:13.473909 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000323s
5286
+ D, [2016-10-12T21:12:13.474486 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5287
+ D, [2016-10-12T21:12:13.474916 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000375s
5288
+ D, [2016-10-12T21:12:13.475835 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28c7')]}}}
5289
+ D, [2016-10-12T21:12:13.476240 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000343s
5290
+ D, [2016-10-12T21:12:13.477188 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5291
+ D, [2016-10-12T21:12:13.477593 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00035s
5292
+ D, [2016-10-12T21:12:13.477770 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5293
+ D, [2016-10-12T21:12:13.478249 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00042699999999999997s
5294
+ D, [2016-10-12T21:12:13.478366 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5295
+ D, [2016-10-12T21:12:13.489421 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010966s
5296
+ D, [2016-10-12T21:12:13.490604 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ca'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5297
+ D, [2016-10-12T21:12:13.585564 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.09485199999999999s
5298
+ D, [2016-10-12T21:12:13.587303 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cb'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ca')}], "ordered"=>true}
5299
+ D, [2016-10-12T21:12:13.644911 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.057550000000000004s
5300
+ D, [2016-10-12T21:12:13.645913 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ca')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5301
+ D, [2016-10-12T21:12:13.646574 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005870000000000001s
5302
+ D, [2016-10-12T21:12:13.647596 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cc'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ca')}], "ordered"=>true}
5303
+ D, [2016-10-12T21:12:13.648045 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000376s
5304
+ D, [2016-10-12T21:12:13.648522 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ca')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5305
+ D, [2016-10-12T21:12:13.649041 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000442s
5306
+ D, [2016-10-12T21:12:13.649784 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5307
+ D, [2016-10-12T21:12:13.651119 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0004930000000000001s
5308
+ D, [2016-10-12T21:12:13.651884 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28ca')]}}}
5309
+ D, [2016-10-12T21:12:13.652299 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000345s
5310
+ D, [2016-10-12T21:12:13.653528 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5311
+ D, [2016-10-12T21:12:13.654149 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0005369999999999999s
5312
+ D, [2016-10-12T21:12:13.654451 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5313
+ D, [2016-10-12T21:12:13.655093 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000574s
5314
+ D, [2016-10-12T21:12:13.655267 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5315
+ D, [2016-10-12T21:12:13.687040 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.031662s
5316
+ D, [2016-10-12T21:12:13.688526 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cd'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5317
+ D, [2016-10-12T21:12:13.721545 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.032894s
5318
+ D, [2016-10-12T21:12:13.723352 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28ce'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cd')}], "ordered"=>true}
5319
+ D, [2016-10-12T21:12:13.745179 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021717s
5320
+ D, [2016-10-12T21:12:13.746021 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cd')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5321
+ D, [2016-10-12T21:12:13.746574 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000482s
5322
+ D, [2016-10-12T21:12:13.747487 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cf'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cd')}], "ordered"=>true}
5323
+ D, [2016-10-12T21:12:13.747891 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000346s
5324
+ D, [2016-10-12T21:12:13.748352 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28cd')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5325
+ D, [2016-10-12T21:12:13.748695 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000285s
5326
+ D, [2016-10-12T21:12:13.749383 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
5327
+ D, [2016-10-12T21:12:13.749735 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000303s
5328
+ D, [2016-10-12T21:12:13.750379 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28cd')]}}}
5329
+ D, [2016-10-12T21:12:13.750665 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00023500000000000002s
5330
+ D, [2016-10-12T21:12:13.752069 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5331
+ D, [2016-10-12T21:12:13.752467 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000339s
5332
+ D, [2016-10-12T21:12:13.752657 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5333
+ D, [2016-10-12T21:12:13.753166 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000459s
5334
+ D, [2016-10-12T21:12:13.753287 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5335
+ D, [2016-10-12T21:12:13.766215 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012834000000000002s
5336
+ D, [2016-10-12T21:12:13.767378 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d0'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5337
+ D, [2016-10-12T21:12:13.792616 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025145s
5338
+ D, [2016-10-12T21:12:13.793905 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d1'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d0')}], "ordered"=>true}
5339
+ D, [2016-10-12T21:12:13.848615 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.054608s
5340
+ D, [2016-10-12T21:12:13.849529 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d0')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5341
+ D, [2016-10-12T21:12:13.850095 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000487s
5342
+ D, [2016-10-12T21:12:13.851118 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d2'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d0')}], "ordered"=>true}
5343
+ D, [2016-10-12T21:12:13.851576 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000386s
5344
+ D, [2016-10-12T21:12:13.852141 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d0')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5345
+ D, [2016-10-12T21:12:13.852610 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000395s
5346
+ D, [2016-10-12T21:12:13.853467 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
5347
+ D, [2016-10-12T21:12:13.853996 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000456s
5348
+ D, [2016-10-12T21:12:13.854844 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28d0')]}}}
5349
+ D, [2016-10-12T21:12:13.855276 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00035800000000000003s
5350
+ D, [2016-10-12T21:12:13.855767 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5351
+ D, [2016-10-12T21:12:13.856240 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000405s
5352
+ D, [2016-10-12T21:12:13.857035 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5353
+ D, [2016-10-12T21:12:13.858243 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00040500000000000003s
5354
+ D, [2016-10-12T21:12:13.858538 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5355
+ D, [2016-10-12T21:12:13.859202 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000588s
5356
+ D, [2016-10-12T21:12:13.859397 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5357
+ D, [2016-10-12T21:12:13.876887 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017376s
5358
+ D, [2016-10-12T21:12:13.878132 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d3'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5359
+ D, [2016-10-12T21:12:13.933185 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.054895s
5360
+ D, [2016-10-12T21:12:13.935287 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d4'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d3')}], "ordered"=>true}
5361
+ D, [2016-10-12T21:12:13.969507 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.034096s
5362
+ D, [2016-10-12T21:12:13.970478 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d3')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5363
+ D, [2016-10-12T21:12:13.971015 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000466s
5364
+ D, [2016-10-12T21:12:13.971953 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d5'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d3')}], "ordered"=>true}
5365
+ D, [2016-10-12T21:12:13.972399 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036500000000000004s
5366
+ D, [2016-10-12T21:12:13.972892 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d3')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5367
+ D, [2016-10-12T21:12:13.973439 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000428s
5368
+ D, [2016-10-12T21:12:13.974272 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
5369
+ D, [2016-10-12T21:12:13.974817 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00048100000000000004s
5370
+ D, [2016-10-12T21:12:13.975467 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28d3')]}}}
5371
+ D, [2016-10-12T21:12:13.975827 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000301s
5372
+ D, [2016-10-12T21:12:13.976681 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5373
+ D, [2016-10-12T21:12:13.977061 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000316s
5374
+ D, [2016-10-12T21:12:13.977555 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5375
+ D, [2016-10-12T21:12:13.978088 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00047200000000000003s
5376
+ D, [2016-10-12T21:12:13.978231 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5377
+ D, [2016-10-12T21:12:13.990738 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011825s
5378
+ D, [2016-10-12T21:12:13.991863 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d6'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5379
+ D, [2016-10-12T21:12:14.016440 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024473s
5380
+ D, [2016-10-12T21:12:14.018187 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d7'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d6')}], "ordered"=>true}
5381
+ D, [2016-10-12T21:12:14.040094 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021785s
5382
+ D, [2016-10-12T21:12:14.041066 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d6')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5383
+ D, [2016-10-12T21:12:14.041659 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000523s
5384
+ D, [2016-10-12T21:12:14.042726 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d8'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d6')}], "ordered"=>true}
5385
+ D, [2016-10-12T21:12:14.043179 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00038100000000000005s
5386
+ D, [2016-10-12T21:12:14.043650 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15d23af7feef0ca28d6')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5387
+ D, [2016-10-12T21:12:14.044135 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000425s
5388
+ D, [2016-10-12T21:12:14.045040 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
5389
+ D, [2016-10-12T21:12:14.045478 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00034700000000000003s
5390
+ D, [2016-10-12T21:12:14.046351 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15d23af7feef0ca28d6')]}}}
5391
+ D, [2016-10-12T21:12:14.046777 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000367s
5392
+ D, [2016-10-12T21:12:14.047245 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5393
+ D, [2016-10-12T21:12:14.047579 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00028000000000000003s
5394
+ D, [2016-10-12T21:12:14.048277 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5395
+ D, [2016-10-12T21:12:14.048646 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000302s
5396
+ D, [2016-10-12T21:12:14.048882 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5397
+ D, [2016-10-12T21:12:14.049484 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000541s
5398
+ D, [2016-10-12T21:12:14.049660 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5399
+ D, [2016-10-12T21:12:14.060958 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011199s
5400
+ D, [2016-10-12T21:12:14.062100 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5401
+ D, [2016-10-12T21:12:14.082536 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020347s
5402
+ D, [2016-10-12T21:12:14.083878 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28da'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d9')}], "ordered"=>true}
5403
+ D, [2016-10-12T21:12:14.105964 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021991s
5404
+ D, [2016-10-12T21:12:14.106729 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5405
+ D, [2016-10-12T21:12:14.107155 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000375s
5406
+ D, [2016-10-12T21:12:14.107925 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28db'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d9')}], "ordered"=>true}
5407
+ D, [2016-10-12T21:12:14.108259 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000282s
5408
+ D, [2016-10-12T21:12:14.108654 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28d9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5409
+ D, [2016-10-12T21:12:14.108946 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000242s
5410
+ D, [2016-10-12T21:12:14.109743 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28dc'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:0...
5411
+ D, [2016-10-12T21:12:14.110059 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000267s
5412
+ D, [2016-10-12T21:12:14.111005 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28dd'), "title"=>"three", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28dc')}], "ordered"=>true}
5413
+ D, [2016-10-12T21:12:14.111325 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000266s
5414
+ D, [2016-10-12T21:12:14.111775 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28dc')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5415
+ D, [2016-10-12T21:12:14.112126 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000296s
5416
+ D, [2016-10-12T21:12:14.112982 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
5417
+ D, [2016-10-12T21:12:14.113372 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033800000000000003s
5418
+ D, [2016-10-12T21:12:14.114024 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28d9')]}}}
5419
+ D, [2016-10-12T21:12:14.114575 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027299999999999997s
5420
+ D, [2016-10-12T21:12:14.115475 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5421
+ D, [2016-10-12T21:12:14.116554 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000349s
5422
+ D, [2016-10-12T21:12:14.116746 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5423
+ D, [2016-10-12T21:12:14.117232 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000429s
5424
+ D, [2016-10-12T21:12:14.117378 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5425
+ D, [2016-10-12T21:12:14.128736 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011264000000000001s
5426
+ D, [2016-10-12T21:12:14.129909 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28de'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:...
5427
+ D, [2016-10-12T21:12:14.151207 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0212s
5428
+ D, [2016-10-12T21:12:14.152996 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28de')}, "limit"=>1, "singleBatch"=>true}
5429
+ D, [2016-10-12T21:12:14.153395 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000349s
5430
+ D, [2016-10-12T21:12:14.154235 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28df'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28de')}], "ordered"=>true}
5431
+ D, [2016-10-12T21:12:14.179926 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025599s
5432
+ D, [2016-10-12T21:12:14.181426 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28df')}, "limit"=>1}], "ordered"=>true}
5433
+ D, [2016-10-12T21:12:14.181860 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.00039s
5434
+ D, [2016-10-12T21:12:14.182674 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e0'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28de')}], "ordered"=>true}
5435
+ D, [2016-10-12T21:12:14.183044 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030900000000000003s
5436
+ D, [2016-10-12T21:12:14.184133 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5437
+ D, [2016-10-12T21:12:14.184775 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0005700000000000001s
5438
+ D, [2016-10-12T21:12:14.185495 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28de')]}}}
5439
+ D, [2016-10-12T21:12:14.185863 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000316s
5440
+ D, [2016-10-12T21:12:14.186598 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5441
+ D, [2016-10-12T21:12:14.187054 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000399s
5442
+ D, [2016-10-12T21:12:14.187273 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5443
+ D, [2016-10-12T21:12:14.187885 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000546s
5444
+ D, [2016-10-12T21:12:14.188900 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
5445
+ D, [2016-10-12T21:12:14.206524 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017522s
5446
+ D, [2016-10-12T21:12:14.207665 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e1'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5447
+ D, [2016-10-12T21:12:14.232724 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024965s
5448
+ D, [2016-10-12T21:12:14.234128 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e1')}, "limit"=>1, "singleBatch"=>true}
5449
+ D, [2016-10-12T21:12:14.234471 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000309s
5450
+ D, [2016-10-12T21:12:14.235195 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e2'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e1')}], "ordered"=>true}
5451
+ D, [2016-10-12T21:12:14.255925 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020638s
5452
+ D, [2016-10-12T21:12:14.257300 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e2')}, "limit"=>1}], "ordered"=>true}
5453
+ D, [2016-10-12T21:12:14.257746 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.00039400000000000004s
5454
+ D, [2016-10-12T21:12:14.258354 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e3'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e1')}], "ordered"=>true}
5455
+ D, [2016-10-12T21:12:14.258691 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000283s
5456
+ D, [2016-10-12T21:12:14.259995 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e4'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5457
+ D, [2016-10-12T21:12:14.260385 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000341s
5458
+ D, [2016-10-12T21:12:14.261142 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e4')}, "limit"=>1, "singleBatch"=>true}
5459
+ D, [2016-10-12T21:12:14.261538 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000261s
5460
+ D, [2016-10-12T21:12:14.262147 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e5'), "high_score"=>500, "score"=>0, "name"=>"Skyrim", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e4')}], "ordered"=>true}
5461
+ D, [2016-10-12T21:12:14.262511 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000315s
5462
+ D, [2016-10-12T21:12:14.263793 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e1')}, "limit"=>1, "sort"=>{"age"=>1}}
5463
+ D, [2016-10-12T21:12:14.264168 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000325s
5464
+ D, [2016-10-12T21:12:14.264754 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28e1')]}}}
5465
+ D, [2016-10-12T21:12:14.265720 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000298s
5466
+ D, [2016-10-12T21:12:14.266552 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5467
+ D, [2016-10-12T21:12:14.266945 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00033400000000000004s
5468
+ D, [2016-10-12T21:12:14.267170 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5469
+ D, [2016-10-12T21:12:14.267635 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00041299999999999996s
5470
+ D, [2016-10-12T21:12:14.267751 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
5471
+ D, [2016-10-12T21:12:14.279395 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011551s
5472
+ D, [2016-10-12T21:12:14.280549 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e6'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5473
+ D, [2016-10-12T21:12:14.300666 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02003s
5474
+ D, [2016-10-12T21:12:14.301934 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e6')}, "limit"=>1, "singleBatch"=>true}
5475
+ D, [2016-10-12T21:12:14.302361 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000379s
5476
+ D, [2016-10-12T21:12:14.303121 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e7'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e6')}], "ordered"=>true}
5477
+ D, [2016-10-12T21:12:14.323489 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020217000000000002s
5478
+ D, [2016-10-12T21:12:14.325593 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e8'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5479
+ D, [2016-10-12T21:12:14.326080 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000424s
5480
+ D, [2016-10-12T21:12:14.326899 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e8')}, "limit"=>1, "singleBatch"=>true}
5481
+ D, [2016-10-12T21:12:14.327260 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00030900000000000003s
5482
+ D, [2016-10-12T21:12:14.327857 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e9'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28e8')}], "ordered"=>true}
5483
+ D, [2016-10-12T21:12:14.328265 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000355s
5484
+ D, [2016-10-12T21:12:14.329413 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{}}
5485
+ D, [2016-10-12T21:12:14.329747 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000279s
5486
+ D, [2016-10-12T21:12:14.330455 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28e6'), BSON::ObjectId('57fed15e23af7feef0ca28e8')]}}}
5487
+ D, [2016-10-12T21:12:14.331441 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000375s
5488
+ D, [2016-10-12T21:12:14.331862 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{}}
5489
+ D, [2016-10-12T21:12:14.332173 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000259s
5490
+ D, [2016-10-12T21:12:14.333034 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5491
+ D, [2016-10-12T21:12:14.333428 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000338s
5492
+ D, [2016-10-12T21:12:14.333644 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5493
+ D, [2016-10-12T21:12:14.334119 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000414s
5494
+ D, [2016-10-12T21:12:14.334239 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
5495
+ D, [2016-10-12T21:12:14.344359 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010032s
5496
+ D, [2016-10-12T21:12:14.345557 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ea'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5497
+ D, [2016-10-12T21:12:14.366289 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020627000000000003s
5498
+ D, [2016-10-12T21:12:14.367611 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ea')}, "limit"=>1, "singleBatch"=>true}
5499
+ D, [2016-10-12T21:12:14.368078 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00040899999999999997s
5500
+ D, [2016-10-12T21:12:14.369015 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28eb'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ea')}], "ordered"=>true}
5501
+ D, [2016-10-12T21:12:14.391626 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022515s
5502
+ D, [2016-10-12T21:12:14.393361 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ec'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5503
+ D, [2016-10-12T21:12:14.393885 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000443s
5504
+ D, [2016-10-12T21:12:14.395088 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ec')}, "limit"=>1, "singleBatch"=>true}
5505
+ D, [2016-10-12T21:12:14.395506 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000352s
5506
+ D, [2016-10-12T21:12:14.396191 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ed'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ec')}], "ordered"=>true}
5507
+ D, [2016-10-12T21:12:14.396488 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000249s
5508
+ D, [2016-10-12T21:12:14.397697 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28eb')}, "limit"=>1, "sort"=>{"_id"=>1}}
5509
+ D, [2016-10-12T21:12:14.397980 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000234s
5510
+ D, [2016-10-12T21:12:14.399164 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28ea')]}}}
5511
+ D, [2016-10-12T21:12:14.399828 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0006129999999999999s
5512
+ D, [2016-10-12T21:12:14.400591 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5513
+ D, [2016-10-12T21:12:14.401077 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00043s
5514
+ D, [2016-10-12T21:12:14.401259 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5515
+ D, [2016-10-12T21:12:14.401774 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00044500000000000003s
5516
+ D, [2016-10-12T21:12:14.401958 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
5517
+ D, [2016-10-12T21:12:14.412021 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.009963999999999999s
5518
+ D, [2016-10-12T21:12:14.413300 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-11 00:00:0...
5519
+ D, [2016-10-12T21:12:14.434581 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021174000000000002s
5520
+ D, [2016-10-12T21:12:14.436206 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ef'), "title"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}], "ordered"=>true}
5521
+ D, [2016-10-12T21:12:14.458212 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021911s
5522
+ D, [2016-10-12T21:12:14.459031 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5523
+ D, [2016-10-12T21:12:14.459499 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000415s
5524
+ D, [2016-10-12T21:12:14.460259 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28f0'), "title"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}], "ordered"=>true}
5525
+ D, [2016-10-12T21:12:14.460586 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000296s
5526
+ D, [2016-10-12T21:12:14.460946 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5527
+ D, [2016-10-12T21:12:14.461226 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000234s
5528
+ D, [2016-10-12T21:12:14.461997 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}, "limit"=>1, "singleBatch"=>true}
5529
+ D, [2016-10-12T21:12:14.462288 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00022700000000000002s
5530
+ D, [2016-10-12T21:12:14.463051 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28f1'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}], "ordered"=>true}
5531
+ D, [2016-10-12T21:12:14.485220 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022071999999999998s
5532
+ D, [2016-10-12T21:12:14.487190 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28f1')}, "limit"=>1}], "ordered"=>true}
5533
+ D, [2016-10-12T21:12:14.487715 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.00045900000000000004s
5534
+ D, [2016-10-12T21:12:14.488293 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('57fed15e23af7feef0ca28f2'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('57fed15e23af7feef0ca28ee')}], "ordered"=>true}
5535
+ D, [2016-10-12T21:12:14.488690 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034700000000000003s
5536
+ D, [2016-10-12T21:12:14.489952 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5537
+ D, [2016-10-12T21:12:14.490340 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
5538
+ D, [2016-10-12T21:12:14.491079 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28ee')]}}}
5539
+ D, [2016-10-12T21:12:14.491400 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000268s
5540
+ D, [2016-10-12T21:12:14.492013 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('57fed15e23af7feef0ca28ee')]}}}
5541
+ D, [2016-10-12T21:12:14.492320 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000254s
5542
+ D, [2016-10-12T21:12:14.492655 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
5543
+ D, [2016-10-12T21:12:14.493023 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000318s
5544
+ D, [2016-10-12T21:12:14.493678 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5545
+ D, [2016-10-12T21:12:14.494037 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030300000000000005s
5546
+ D, [2016-10-12T21:12:14.494248 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5547
+ D, [2016-10-12T21:12:14.494703 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00040500000000000003s
5548
+ D, [2016-10-12T21:12:14.494826 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
5549
+ D, [2016-10-12T21:12:14.506505 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011581000000000001s
5550
+ D, [2016-10-12T21:12:14.506739 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5551
+ D, [2016-10-12T21:12:14.605114 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.098268s
5552
+ D, [2016-10-12T21:12:14.606436 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5553
+ D, [2016-10-12T21:12:14.606942 #61168] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000434s
5554
+ D, [2016-10-12T21:14:17.157825 #61307] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5555
+ D, [2016-10-12T21:14:17.160449 #61307] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5556
+ D, [2016-10-12T21:14:17.161052 #61307] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00048100000000000004s
5557
+ D, [2016-10-12T21:14:17.162226 #61307] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5558
+ D, [2016-10-12T21:14:17.162537 #61307] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000242s
5559
+ D, [2016-10-12T21:14:17.163241 #61307] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5560
+ D, [2016-10-12T21:14:17.163523 #61307] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000231s
5561
+ D, [2016-10-12T21:15:01.394176 #61388] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5562
+ D, [2016-10-12T21:15:01.397376 #61388] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5563
+ D, [2016-10-12T21:15:01.398261 #61388] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000725s
5564
+ D, [2016-10-12T21:15:01.399822 #61388] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5565
+ D, [2016-10-12T21:15:01.400215 #61388] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000308s
5566
+ D, [2016-10-12T21:15:01.401198 #61388] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5567
+ D, [2016-10-12T21:15:01.401589 #61388] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000327s
5568
+ D, [2016-10-12T21:15:11.986811 #61436] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5569
+ D, [2016-10-12T21:15:11.989881 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5570
+ D, [2016-10-12T21:15:11.990519 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0005120000000000001s
5571
+ D, [2016-10-12T21:15:11.991802 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5572
+ D, [2016-10-12T21:15:11.992097 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000238s
5573
+ D, [2016-10-12T21:15:11.992980 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5574
+ D, [2016-10-12T21:15:11.993294 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00026s
5575
+ D, [2016-10-12T21:15:12.008490 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5576
+ D, [2016-10-12T21:15:12.009268 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0006169999999999999s
5577
+ D, [2016-10-12T21:15:12.010200 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5578
+ D, [2016-10-12T21:15:12.010572 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000304s
5579
+ D, [2016-10-12T21:15:12.011348 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5580
+ D, [2016-10-12T21:15:12.011598 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00019700000000000002s
5581
+ D, [2016-10-12T21:15:12.012175 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5582
+ D, [2016-10-12T21:15:12.012454 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000228s
5583
+ D, [2016-10-12T21:15:12.013006 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5584
+ D, [2016-10-12T21:15:12.013231 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000175s
5585
+ D, [2016-10-12T21:15:12.013927 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5586
+ D, [2016-10-12T21:15:12.014257 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000274s
5587
+ D, [2016-10-12T21:15:12.015399 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5588
+ D, [2016-10-12T21:15:12.015743 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000284s
5589
+ D, [2016-10-12T21:15:12.016427 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5590
+ D, [2016-10-12T21:15:12.016816 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000331s
5591
+ D, [2016-10-12T21:15:12.017660 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5592
+ D, [2016-10-12T21:15:12.017952 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000236s
5593
+ D, [2016-10-12T21:15:12.021148 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed21023af7feffc10467b'), "active"=>true, "name"=>"Pink Floyd", "upserted"=>false}], "ordered"=>true}
5594
+ D, [2016-10-12T21:15:12.065599 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.044328000000000006s
5595
+ D, [2016-10-12T21:15:12.067997 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('57fed21023af7feffc10467c'), "name"=>"Wish You Were Here", "release"=>1975-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('57fed21023af7feffc10467b'), "owner_type"=>"Band"}], "ordered"=>true}
5596
+ D, [2016-10-12T21:15:12.088977 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02085s
5597
+ D, [2016-10-12T21:15:12.090298 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('57fed21023af7feffc10467d'), "name"=>"The Dark Side of the Moon", "release"=>1973-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('57fed21023af7feffc10467b'), "owner_type"=>"Band"}], "ordered"=>...
5598
+ D, [2016-10-12T21:15:12.090773 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000405s
5599
+ D, [2016-10-12T21:15:12.091401 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{}}
5600
+ D, [2016-10-12T21:15:12.091781 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00032s
5601
+ D, [2016-10-12T21:15:12.092532 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"albums", "filter"=>{"owner_id"=>{"$in"=>[BSON::ObjectId('57fed21023af7feffc10467b')]}, "release"=>{"$lt"=>1974-01-01 00:00:00 UTC}}}
5602
+ D, [2016-10-12T21:15:12.092919 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000327s
5603
+ D, [2016-10-12T21:15:12.094958 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"albums", "query"=>{"owner_id"=>BSON::ObjectId('57fed21023af7feffc10467b'), "owner_type"=>"Band"}}
5604
+ D, [2016-10-12T21:15:12.095346 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.000299s
5605
+ D, [2016-10-12T21:15:12.095929 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5606
+ D, [2016-10-12T21:15:12.096938 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000397s
5607
+ D, [2016-10-12T21:15:12.097149 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
5608
+ D, [2016-10-12T21:15:12.097661 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000481s
5609
+ D, [2016-10-12T21:15:12.097822 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"albums"}
5610
+ D, [2016-10-12T21:15:12.109632 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011737s
5611
+ D, [2016-10-12T21:15:12.110729 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5612
+ D, [2016-10-12T21:15:12.111151 #61436] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000362s
5613
+ D, [2016-10-12T21:15:57.325132 #61486] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5614
+ D, [2016-10-12T21:15:57.328721 #61486] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5615
+ D, [2016-10-12T21:15:57.329549 #61486] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000652s
5616
+ D, [2016-10-12T21:15:57.331193 #61486] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5617
+ D, [2016-10-12T21:15:57.331625 #61486] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00035600000000000003s
5618
+ D, [2016-10-12T21:16:10.302890 #61514] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5619
+ D, [2016-10-12T21:16:10.306042 #61514] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5620
+ D, [2016-10-12T21:16:10.306651 #61514] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00048300000000000003s
5621
+ D, [2016-10-12T21:16:10.307982 #61514] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5622
+ D, [2016-10-12T21:16:10.308342 #61514] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0003s
5623
+ D, [2016-10-12T21:16:29.713197 #61550] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5624
+ D, [2016-10-12T21:16:29.716066 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5625
+ D, [2016-10-12T21:16:29.716968 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0007279999999999999s
5626
+ D, [2016-10-12T21:16:29.735526 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5627
+ D, [2016-10-12T21:16:29.735996 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000383s
5628
+ D, [2016-10-12T21:16:29.736800 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5629
+ D, [2016-10-12T21:16:29.737137 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000274s
5630
+ D, [2016-10-12T21:16:29.737859 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5631
+ D, [2016-10-12T21:16:29.738234 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00031499999999999996s
5632
+ D, [2016-10-12T21:16:29.739001 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5633
+ D, [2016-10-12T21:16:29.739301 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000226s
5634
+ D, [2016-10-12T21:16:29.739978 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5635
+ D, [2016-10-12T21:16:29.740211 #61550] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00018s
5636
+ D, [2016-10-12T21:16:54.322979 #61594] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5637
+ D, [2016-10-12T21:16:54.326231 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5638
+ D, [2016-10-12T21:16:54.326976 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000596s
5639
+ D, [2016-10-12T21:16:54.330330 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('57fed27623af7ff09a11bd42'), "active"=>true, "name"=>"Pink Floyd", "upserted"=>false}], "ordered"=>true}
5640
+ D, [2016-10-12T21:16:54.389850 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.059396s
5641
+ D, [2016-10-12T21:16:54.392223 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('57fed27623af7ff09a11bd43'), "name"=>"Wish You Were Here", "release"=>1975-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('57fed27623af7ff09a11bd42'), "owner_type"=>"Band"}], "ordered"=>true}
5642
+ D, [2016-10-12T21:16:54.413615 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021284s
5643
+ D, [2016-10-12T21:16:54.414946 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('57fed27623af7ff09a11bd44'), "name"=>"The Dark Side of the Moon", "release"=>1973-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('57fed27623af7ff09a11bd42'), "owner_type"=>"Band"}], "ordered"=>...
5644
+ D, [2016-10-12T21:16:54.415394 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000397s
5645
+ D, [2016-10-12T21:16:54.416008 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{}}
5646
+ D, [2016-10-12T21:16:54.416537 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000453s
5647
+ D, [2016-10-12T21:16:54.417579 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"albums", "filter"=>{"owner_id"=>{"$in"=>[BSON::ObjectId('57fed27623af7ff09a11bd42')]}, "release"=>{"$lt"=>1974-01-01 00:00:00 UTC}}}
5648
+ D, [2016-10-12T21:16:54.417979 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000342s
5649
+ D, [2016-10-12T21:16:54.420045 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"albums", "query"=>{"owner_id"=>BSON::ObjectId('57fed27623af7ff09a11bd42'), "owner_type"=>"Band"}}
5650
+ D, [2016-10-12T21:16:54.420383 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.000272s
5651
+ D, [2016-10-12T21:16:54.420989 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5652
+ D, [2016-10-12T21:16:54.421344 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000302s
5653
+ D, [2016-10-12T21:16:54.421551 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
5654
+ D, [2016-10-12T21:16:54.422025 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000418s
5655
+ D, [2016-10-12T21:16:54.422143 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"albums"}
5656
+ D, [2016-10-12T21:16:54.449351 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.026521s
5657
+ D, [2016-10-12T21:16:54.450451 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5658
+ D, [2016-10-12T21:16:54.450825 #61594] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00031999999999999997s
5659
+ D, [2016-10-12T21:17:39.654451 #61626] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5660
+ D, [2016-10-12T21:17:39.657359 #61626] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5661
+ D, [2016-10-12T21:17:39.658150 #61626] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000631s
5662
+ D, [2016-10-12T21:17:48.692759 #61654] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5663
+ D, [2016-10-12T21:17:48.695702 #61654] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5664
+ D, [2016-10-12T21:17:48.696486 #61654] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000601s
5665
+ D, [2016-10-12T21:18:28.381746 #61690] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5666
+ D, [2016-10-12T21:18:28.384372 #61690] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5667
+ D, [2016-10-12T21:18:28.385192 #61690] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000664s
5668
+ D, [2016-10-12T21:19:30.160912 #61734] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5669
+ D, [2016-10-12T21:19:30.163698 #61734] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5670
+ D, [2016-10-12T21:19:30.164542 #61734] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000693s
5671
+ D, [2016-10-12T21:19:34.358530 #61761] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5672
+ D, [2016-10-12T21:19:34.361572 #61761] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5673
+ D, [2016-10-12T21:19:34.362196 #61761] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000496s
5674
+ D, [2016-10-12T21:20:06.918475 #61841] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5675
+ D, [2016-10-12T21:20:06.920932 #61841] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5676
+ D, [2016-10-12T21:20:06.921593 #61841] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0005020000000000001s
5677
+ D, [2016-10-12T21:20:12.656260 #61868] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5678
+ D, [2016-10-12T21:20:12.658800 #61868] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5679
+ D, [2016-10-12T21:20:12.659797 #61868] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000753s
5680
+ D, [2016-10-12T21:23:00.156097 #62050] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5681
+ D, [2016-10-12T21:23:00.159465 #62050] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5682
+ D, [2016-10-12T21:23:00.160210 #62050] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0006090000000000001s
5683
+ D, [2016-10-12T21:23:00.161613 #62050] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5684
+ D, [2016-10-12T21:23:00.161963 #62050] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00026300000000000005s
5685
+ D, [2016-10-12T21:23:00.162697 #62050] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5686
+ D, [2016-10-12T21:23:00.162961 #62050] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000211s
5687
+ D, [2016-10-12T21:23:17.541194 #62102] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5688
+ D, [2016-10-12T21:23:17.544543 #62102] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5689
+ D, [2016-10-12T21:23:17.545354 #62102] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000634s
5690
+ D, [2016-10-12T21:23:17.546891 #62102] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5691
+ D, [2016-10-12T21:23:17.547257 #62102] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00029600000000000004s
5692
+ D, [2016-10-12T21:23:17.547986 #62102] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5693
+ D, [2016-10-12T21:23:17.548346 #62102] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000303s
5694
+ D, [2016-10-17T12:06:06.523985 #85816] DEBUG -- : MONGODB | Adding localhost:27017 to the cluster.
5695
+ D, [2016-10-17T12:06:06.570545 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5696
+ D, [2016-10-17T12:06:06.579285 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.008609s
5697
+ D, [2016-10-17T12:06:06.581150 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5698
+ D, [2016-10-17T12:06:06.581591 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000358s
5699
+ D, [2016-10-17T12:06:06.582879 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5700
+ D, [2016-10-17T12:06:06.583252 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00029099999999999997s
5701
+ D, [2016-10-17T12:06:06.606475 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5702
+ D, [2016-10-17T12:06:06.607039 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000417s
5703
+ D, [2016-10-17T12:06:06.607892 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5704
+ D, [2016-10-17T12:06:06.608233 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000285s
5705
+ D, [2016-10-17T12:06:06.609037 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5706
+ D, [2016-10-17T12:06:06.609309 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000218s
5707
+ D, [2016-10-17T12:06:06.609992 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5708
+ D, [2016-10-17T12:06:06.610231 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000186s
5709
+ D, [2016-10-17T12:06:06.610856 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5710
+ D, [2016-10-17T12:06:06.611164 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000201s
5711
+ D, [2016-10-17T12:06:06.612066 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5712
+ D, [2016-10-17T12:06:06.612307 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000187s
5713
+ D, [2016-10-17T12:06:06.613270 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5714
+ D, [2016-10-17T12:06:06.613562 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000233s
5715
+ D, [2016-10-17T12:06:06.614292 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5716
+ D, [2016-10-17T12:06:06.614622 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000269s
5717
+ D, [2016-10-17T12:06:06.615447 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5718
+ D, [2016-10-17T12:06:06.615781 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000274s
5719
+ D, [2016-10-17T12:06:06.620210 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f684b'), "active"=>true, "name"=>"Pink Floyd", "upserted"=>false}], "ordered"=>true}
5720
+ D, [2016-10-17T12:06:06.702091 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.081756s
5721
+ D, [2016-10-17T12:06:06.705987 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f684c'), "name"=>"Wish You Were Here", "release"=>1975-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('5804e8de6fc1414f383f684b'), "owner_type"=>"Band"}], "ordered"=>true}
5722
+ D, [2016-10-17T12:06:06.744792 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.03867s
5723
+ D, [2016-10-17T12:06:06.746269 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"albums", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f684d'), "name"=>"The Dark Side of the Moon", "release"=>1973-01-01 00:00:00 UTC, "owner_id"=>BSON::ObjectId('5804e8de6fc1414f383f684b'), "owner_type"=>"Band"}], "ordered"=>...
5724
+ D, [2016-10-17T12:06:06.746804 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00047s
5725
+ D, [2016-10-17T12:06:06.747662 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{}}
5726
+ D, [2016-10-17T12:06:06.754128 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.006345s
5727
+ D, [2016-10-17T12:06:06.755523 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"albums", "filter"=>{"owner_id"=>{"$in"=>[BSON::ObjectId('5804e8de6fc1414f383f684b')]}, "release"=>{"$lt"=>1974-01-01 00:00:00 UTC}}}
5728
+ D, [2016-10-17T12:06:06.758286 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.002617s
5729
+ D, [2016-10-17T12:06:06.761712 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"albums", "query"=>{"owner_id"=>BSON::ObjectId('5804e8de6fc1414f383f684b'), "owner_type"=>"Band"}}
5730
+ D, [2016-10-17T12:06:06.768643 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.006788000000000001s
5731
+ D, [2016-10-17T12:06:06.769759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5732
+ D, [2016-10-17T12:06:06.781898 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.01121s
5733
+ D, [2016-10-17T12:06:06.782317 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
5734
+ D, [2016-10-17T12:06:06.789053 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.006603s
5735
+ D, [2016-10-17T12:06:06.789410 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"albums"}
5736
+ D, [2016-10-17T12:06:06.807326 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017809000000000002s
5737
+ D, [2016-10-17T12:06:06.808775 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5738
+ D, [2016-10-17T12:06:06.809248 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000377s
5739
+ D, [2016-10-17T12:06:06.810393 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5740
+ D, [2016-10-17T12:06:06.810823 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000336s
5741
+ D, [2016-10-17T12:06:06.815524 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5742
+ D, [2016-10-17T12:06:06.816011 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000399s
5743
+ D, [2016-10-17T12:06:06.860627 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f684e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
5744
+ D, [2016-10-17T12:06:06.884798 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024054000000000002s
5745
+ D, [2016-10-17T12:06:06.896291 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5746
+ D, [2016-10-17T12:06:06.896818 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000446s
5747
+ D, [2016-10-17T12:06:06.897168 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5748
+ D, [2016-10-17T12:06:06.897838 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005960000000000001s
5749
+ D, [2016-10-17T12:06:06.898993 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f684f'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5750
+ D, [2016-10-17T12:06:06.925937 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02682s
5751
+ D, [2016-10-17T12:06:06.927457 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f6850')}], "ordered"=>true}
5752
+ D, [2016-10-17T12:06:06.948437 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020882s
5753
+ D, [2016-10-17T12:06:06.949144 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f6851')}], "ordered"=>true}
5754
+ D, [2016-10-17T12:06:06.949510 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000313s
5755
+ D, [2016-10-17T12:06:06.950535 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8de6fc1414f383f6852'), "_type"=>"B", "c_id"=>BSON::ObjectId('5804e8de6fc1414f383f6851')}], "ordered"=>true}
5756
+ D, [2016-10-17T12:06:06.971381 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020242s
5757
+ D, [2016-10-17T12:06:06.972352 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"cs", "filter"=>{}}
5758
+ D, [2016-10-17T12:06:06.972760 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000359s
5759
+ D, [2016-10-17T12:06:06.973786 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"c_id"=>{"$in"=>[BSON::ObjectId('5804e8de6fc1414f383f6850'), BSON::ObjectId('5804e8de6fc1414f383f6851')]}, "_type"=>"B"}}
5760
+ D, [2016-10-17T12:06:06.974124 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000279s
5761
+ D, [2016-10-17T12:06:06.974913 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5762
+ D, [2016-10-17T12:06:06.975313 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00034300000000000004s
5763
+ D, [2016-10-17T12:06:06.975491 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"cs"}
5764
+ D, [2016-10-17T12:06:06.976253 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005420000000000001s
5765
+ D, [2016-10-17T12:06:06.976465 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5766
+ D, [2016-10-17T12:06:06.987441 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010846s
5767
+ D, [2016-10-17T12:06:06.987687 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5768
+ D, [2016-10-17T12:06:07.001319 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013542s
5769
+ D, [2016-10-17T12:06:07.002664 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6853'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5770
+ D, [2016-10-17T12:06:07.080733 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.077965s
5771
+ D, [2016-10-17T12:06:07.081903 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6854')}], "ordered"=>true}
5772
+ D, [2016-10-17T12:06:07.109960 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.027934s
5773
+ D, [2016-10-17T12:06:07.111089 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"cs", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6855')}], "ordered"=>true}
5774
+ D, [2016-10-17T12:06:07.111583 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000426s
5775
+ D, [2016-10-17T12:06:07.112397 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6856'), "_type"=>"B", "c_id"=>BSON::ObjectId('5804e8df6fc1414f383f6855')}], "ordered"=>true}
5776
+ D, [2016-10-17T12:06:07.146501 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.033974s
5777
+ D, [2016-10-17T12:06:07.147654 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"cs", "filter"=>{}}
5778
+ D, [2016-10-17T12:06:07.148140 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000424s
5779
+ D, [2016-10-17T12:06:07.148847 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"c_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6854'), BSON::ObjectId('5804e8df6fc1414f383f6855')]}, "_type"=>"B"}}
5780
+ D, [2016-10-17T12:06:07.149616 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000691s
5781
+ D, [2016-10-17T12:06:07.173667 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5782
+ D, [2016-10-17T12:06:07.174392 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00064s
5783
+ D, [2016-10-17T12:06:07.174720 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"cs"}
5784
+ D, [2016-10-17T12:06:07.175415 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000637s
5785
+ D, [2016-10-17T12:06:07.175544 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5786
+ D, [2016-10-17T12:06:07.201913 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.026261s
5787
+ D, [2016-10-17T12:06:07.202207 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5788
+ D, [2016-10-17T12:06:07.215077 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012754s
5789
+ D, [2016-10-17T12:06:07.216585 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6857'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5790
+ D, [2016-10-17T12:06:07.239231 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022547s
5791
+ D, [2016-10-17T12:06:07.240326 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6858')}], "ordered"=>true}
5792
+ D, [2016-10-17T12:06:07.260671 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020238s
5793
+ D, [2016-10-17T12:06:07.261403 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6859')}], "ordered"=>true}
5794
+ D, [2016-10-17T12:06:07.261808 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036s
5795
+ D, [2016-10-17T12:06:07.262751 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f685a'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6859')}], "ordered"=>true}
5796
+ D, [2016-10-17T12:06:07.289852 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02699s
5797
+ D, [2016-10-17T12:06:07.290976 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f685b'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6859')}], "ordered"=>true}
5798
+ D, [2016-10-17T12:06:07.291709 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0006839999999999999s
5799
+ D, [2016-10-17T12:06:07.292260 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
5800
+ D, [2016-10-17T12:06:07.292594 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000282s
5801
+ D, [2016-10-17T12:06:07.293433 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6858'), BSON::ObjectId('5804e8df6fc1414f383f6859')]}, "_type"=>"B"}}
5802
+ D, [2016-10-17T12:06:07.293795 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031s
5803
+ D, [2016-10-17T12:06:07.294686 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6858'), BSON::ObjectId('5804e8df6fc1414f383f6859')]}, "_type"=>"C"}}
5804
+ D, [2016-10-17T12:06:07.295059 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000317s
5805
+ D, [2016-10-17T12:06:07.296523 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5806
+ D, [2016-10-17T12:06:07.296944 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00035800000000000003s
5807
+ D, [2016-10-17T12:06:07.297126 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
5808
+ D, [2016-10-17T12:06:07.297588 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00041099999999999996s
5809
+ D, [2016-10-17T12:06:07.297707 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5810
+ D, [2016-10-17T12:06:07.311502 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013702s
5811
+ D, [2016-10-17T12:06:07.311940 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5812
+ D, [2016-10-17T12:06:07.330041 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018209s
5813
+ D, [2016-10-17T12:06:07.331197 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f685c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5814
+ D, [2016-10-17T12:06:07.352171 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020884s
5815
+ D, [2016-10-17T12:06:07.353245 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f685d')}], "ordered"=>true}
5816
+ D, [2016-10-17T12:06:07.374068 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020728s
5817
+ D, [2016-10-17T12:06:07.374812 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f685e')}], "ordered"=>true}
5818
+ D, [2016-10-17T12:06:07.375239 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000377s
5819
+ D, [2016-10-17T12:06:07.376032 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f685f'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f685e')}], "ordered"=>true}
5820
+ D, [2016-10-17T12:06:07.399816 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023689s
5821
+ D, [2016-10-17T12:06:07.400717 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6860'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f685e')}], "ordered"=>true}
5822
+ D, [2016-10-17T12:06:07.401126 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000357s
5823
+ D, [2016-10-17T12:06:07.401860 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
5824
+ D, [2016-10-17T12:06:07.402228 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000315s
5825
+ D, [2016-10-17T12:06:07.402815 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f685d'), BSON::ObjectId('5804e8df6fc1414f383f685e')]}, "_type"=>"B"}}
5826
+ D, [2016-10-17T12:06:07.403260 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000392s
5827
+ D, [2016-10-17T12:06:07.403793 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f685d'), BSON::ObjectId('5804e8df6fc1414f383f685e')]}, "_type"=>"C"}}
5828
+ D, [2016-10-17T12:06:07.404135 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029s
5829
+ D, [2016-10-17T12:06:07.414900 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5830
+ D, [2016-10-17T12:06:07.416191 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000647s
5831
+ D, [2016-10-17T12:06:07.416417 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
5832
+ D, [2016-10-17T12:06:07.417090 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000624s
5833
+ D, [2016-10-17T12:06:07.417208 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5834
+ D, [2016-10-17T12:06:07.428323 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011007000000000001s
5835
+ D, [2016-10-17T12:06:07.428739 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5836
+ D, [2016-10-17T12:06:07.440730 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011901s
5837
+ D, [2016-10-17T12:06:07.442078 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6861'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
5838
+ D, [2016-10-17T12:06:07.479029 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.036836s
5839
+ D, [2016-10-17T12:06:07.480269 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6862')}], "ordered"=>true}
5840
+ D, [2016-10-17T12:06:07.501439 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021062s
5841
+ D, [2016-10-17T12:06:07.502292 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6863')}], "ordered"=>true}
5842
+ D, [2016-10-17T12:06:07.502777 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000392s
5843
+ D, [2016-10-17T12:06:07.503443 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6864'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6863')}], "ordered"=>true}
5844
+ D, [2016-10-17T12:06:07.524010 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020468s
5845
+ D, [2016-10-17T12:06:07.524992 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6865'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6863')}], "ordered"=>true}
5846
+ D, [2016-10-17T12:06:07.525591 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000552s
5847
+ D, [2016-10-17T12:06:07.526161 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
5848
+ D, [2016-10-17T12:06:07.526530 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00031299999999999996s
5849
+ D, [2016-10-17T12:06:07.527116 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6862'), BSON::ObjectId('5804e8df6fc1414f383f6863')]}, "_type"=>"B"}}
5850
+ D, [2016-10-17T12:06:07.527520 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000328s
5851
+ D, [2016-10-17T12:06:07.528104 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6862'), BSON::ObjectId('5804e8df6fc1414f383f6863')]}, "_type"=>"C"}}
5852
+ D, [2016-10-17T12:06:07.528408 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000251s
5853
+ D, [2016-10-17T12:06:07.538108 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5854
+ D, [2016-10-17T12:06:07.539639 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.0008150000000000001s
5855
+ D, [2016-10-17T12:06:07.539953 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
5856
+ D, [2016-10-17T12:06:07.540657 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000634s
5857
+ D, [2016-10-17T12:06:07.540862 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5858
+ D, [2016-10-17T12:06:07.552280 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011296s
5859
+ D, [2016-10-17T12:06:07.552578 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5860
+ D, [2016-10-17T12:06:07.570798 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018058s
5861
+ D, [2016-10-17T12:06:07.572147 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6866'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5862
+ D, [2016-10-17T12:06:07.596260 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024014s
5863
+ D, [2016-10-17T12:06:07.598249 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6867')}], "ordered"=>true}
5864
+ D, [2016-10-17T12:06:07.619417 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021064000000000003s
5865
+ D, [2016-10-17T12:06:07.620642 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6868')}], "ordered"=>true}
5866
+ D, [2016-10-17T12:06:07.621031 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00033600000000000004s
5867
+ D, [2016-10-17T12:06:07.621999 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6869'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6868')}], "ordered"=>true}
5868
+ D, [2016-10-17T12:06:07.642058 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019936s
5869
+ D, [2016-10-17T12:06:07.642953 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f686a'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6868')}], "ordered"=>true}
5870
+ D, [2016-10-17T12:06:07.643412 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000378s
5871
+ D, [2016-10-17T12:06:07.644148 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f686b'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6868')}], "ordered"=>true}
5872
+ D, [2016-10-17T12:06:07.644486 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000285s
5873
+ D, [2016-10-17T12:06:07.644967 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f686c'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6868')}], "ordered"=>true}
5874
+ D, [2016-10-17T12:06:07.645244 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000228s
5875
+ D, [2016-10-17T12:06:07.645748 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
5876
+ D, [2016-10-17T12:06:07.646037 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00024s
5877
+ D, [2016-10-17T12:06:07.646669 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6867'), BSON::ObjectId('5804e8df6fc1414f383f6868')]}, "_type"=>"B"}}
5878
+ D, [2016-10-17T12:06:07.647733 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000329s
5879
+ D, [2016-10-17T12:06:07.648611 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6867'), BSON::ObjectId('5804e8df6fc1414f383f6868')]}, "_type"=>"C"}}
5880
+ D, [2016-10-17T12:06:07.648933 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000267s
5881
+ D, [2016-10-17T12:06:07.649724 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5882
+ D, [2016-10-17T12:06:07.650090 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00031s
5883
+ D, [2016-10-17T12:06:07.650294 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
5884
+ D, [2016-10-17T12:06:07.650759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000413s
5885
+ D, [2016-10-17T12:06:07.650899 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5886
+ D, [2016-10-17T12:06:07.661699 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01068s
5887
+ D, [2016-10-17T12:06:07.661924 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5888
+ D, [2016-10-17T12:06:07.674680 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012665s
5889
+ D, [2016-10-17T12:06:07.675830 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f686d'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5890
+ D, [2016-10-17T12:06:07.696122 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020196000000000002s
5891
+ D, [2016-10-17T12:06:07.697430 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f686e')}], "ordered"=>true}
5892
+ D, [2016-10-17T12:06:07.717681 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020159s
5893
+ D, [2016-10-17T12:06:07.718668 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f686f')}], "ordered"=>true}
5894
+ D, [2016-10-17T12:06:07.719080 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000357s
5895
+ D, [2016-10-17T12:06:07.719756 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6870'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f686f')}], "ordered"=>true}
5896
+ D, [2016-10-17T12:06:07.751878 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.03201s
5897
+ D, [2016-10-17T12:06:07.752877 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6871'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f686f')}], "ordered"=>true}
5898
+ D, [2016-10-17T12:06:07.753435 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000494s
5899
+ D, [2016-10-17T12:06:07.754152 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6872'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f686f')}], "ordered"=>true}
5900
+ D, [2016-10-17T12:06:07.754599 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000381s
5901
+ D, [2016-10-17T12:06:07.755953 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6873'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f686f')}], "ordered"=>true}
5902
+ D, [2016-10-17T12:06:07.756414 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000388s
5903
+ D, [2016-10-17T12:06:07.757076 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
5904
+ D, [2016-10-17T12:06:07.757575 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000419s
5905
+ D, [2016-10-17T12:06:07.758422 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f686e'), BSON::ObjectId('5804e8df6fc1414f383f686f')]}, "_type"=>"B"}}
5906
+ D, [2016-10-17T12:06:07.758917 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000419s
5907
+ D, [2016-10-17T12:06:07.759797 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f686e'), BSON::ObjectId('5804e8df6fc1414f383f686f')]}, "_type"=>"C"}}
5908
+ D, [2016-10-17T12:06:07.760288 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00042600000000000005s
5909
+ D, [2016-10-17T12:06:07.761518 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5910
+ D, [2016-10-17T12:06:07.761964 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000377s
5911
+ D, [2016-10-17T12:06:07.762185 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
5912
+ D, [2016-10-17T12:06:07.762821 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005759999999999999s
5913
+ D, [2016-10-17T12:06:07.762975 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5914
+ D, [2016-10-17T12:06:07.782047 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01896s
5915
+ D, [2016-10-17T12:06:07.782333 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5916
+ D, [2016-10-17T12:06:07.801111 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018668s
5917
+ D, [2016-10-17T12:06:07.802578 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6874'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5918
+ D, [2016-10-17T12:06:07.825808 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023111s
5919
+ D, [2016-10-17T12:06:07.827530 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6875')}], "ordered"=>true}
5920
+ D, [2016-10-17T12:06:07.848729 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021093s
5921
+ D, [2016-10-17T12:06:07.849761 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"ds", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6876')}], "ordered"=>true}
5922
+ D, [2016-10-17T12:06:07.850165 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035400000000000004s
5923
+ D, [2016-10-17T12:06:07.850784 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6877'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6876')}], "ordered"=>true}
5924
+ D, [2016-10-17T12:06:07.881408 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.030516s
5925
+ D, [2016-10-17T12:06:07.882462 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6878'), "_type"=>"B", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6876')}], "ordered"=>true}
5926
+ D, [2016-10-17T12:06:07.883735 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000515s
5927
+ D, [2016-10-17T12:06:07.884591 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f6879'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6876')}], "ordered"=>true}
5928
+ D, [2016-10-17T12:06:07.885063 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000442s
5929
+ D, [2016-10-17T12:06:07.885739 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"as", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f687a'), "_type"=>"C", "d_id"=>BSON::ObjectId('5804e8df6fc1414f383f6876')}], "ordered"=>true}
5930
+ D, [2016-10-17T12:06:07.886253 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000436s
5931
+ D, [2016-10-17T12:06:07.886983 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"ds", "filter"=>{}}
5932
+ D, [2016-10-17T12:06:07.887475 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00041s
5933
+ D, [2016-10-17T12:06:07.888287 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6875'), BSON::ObjectId('5804e8df6fc1414f383f6876')]}, "_type"=>"B"}}
5934
+ D, [2016-10-17T12:06:07.888802 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000397s
5935
+ D, [2016-10-17T12:06:07.889709 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"as", "filter"=>{"d_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f6875'), BSON::ObjectId('5804e8df6fc1414f383f6876')]}, "_type"=>"C"}}
5936
+ D, [2016-10-17T12:06:07.890203 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00042s
5937
+ D, [2016-10-17T12:06:07.891527 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5938
+ D, [2016-10-17T12:06:07.892017 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00041200000000000004s
5939
+ D, [2016-10-17T12:06:07.892255 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"ds"}
5940
+ D, [2016-10-17T12:06:07.892936 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000564s
5941
+ D, [2016-10-17T12:06:07.893113 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5942
+ D, [2016-10-17T12:06:07.904743 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011497s
5943
+ D, [2016-10-17T12:06:07.905048 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"as"}
5944
+ D, [2016-10-17T12:06:07.923852 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018709s
5945
+ D, [2016-10-17T12:06:07.925019 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f687b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5946
+ D, [2016-10-17T12:06:07.946645 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021504s
5947
+ D, [2016-10-17T12:06:07.947953 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5948
+ D, [2016-10-17T12:06:07.948340 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00033600000000000004s
5949
+ D, [2016-10-17T12:06:07.949173 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5950
+ D, [2016-10-17T12:06:07.949702 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000464s
5951
+ D, [2016-10-17T12:06:07.950663 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f687c'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5952
+ D, [2016-10-17T12:06:07.979027 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028267s
5953
+ D, [2016-10-17T12:06:07.980860 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f687d'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8df6fc1414f383f687c')}], "ordered"=>true}
5954
+ D, [2016-10-17T12:06:08.003250 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022275s
5955
+ D, [2016-10-17T12:06:08.004169 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8df6fc1414f383f687c')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5956
+ D, [2016-10-17T12:06:08.007364 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.003145s
5957
+ D, [2016-10-17T12:06:08.007945 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
5958
+ D, [2016-10-17T12:06:08.008282 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000276s
5959
+ D, [2016-10-17T12:06:08.008879 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8df6fc1414f383f687c')]}}}
5960
+ D, [2016-10-17T12:06:08.011229 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.002291s
5961
+ D, [2016-10-17T12:06:08.011628 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}}
5962
+ D, [2016-10-17T12:06:08.011977 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029299999999999997s
5963
+ D, [2016-10-17T12:06:08.012717 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5964
+ D, [2016-10-17T12:06:08.013082 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000277s
5965
+ D, [2016-10-17T12:06:08.013255 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5966
+ D, [2016-10-17T12:06:08.013710 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000406s
5967
+ D, [2016-10-17T12:06:08.013858 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5968
+ D, [2016-10-17T12:06:08.127281 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.11331200000000001s
5969
+ D, [2016-10-17T12:06:08.128712 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f687e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5970
+ D, [2016-10-17T12:06:08.150526 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021707999999999998s
5971
+ D, [2016-10-17T12:06:08.152080 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f687f'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5972
+ D, [2016-10-17T12:06:08.153053 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000388s
5973
+ D, [2016-10-17T12:06:08.154154 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6880'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f687e')}], "ordered"=>true}
5974
+ D, [2016-10-17T12:06:08.180328 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026063999999999997s
5975
+ D, [2016-10-17T12:06:08.181322 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f687e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5976
+ D, [2016-10-17T12:06:08.181952 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005600000000000001s
5977
+ D, [2016-10-17T12:06:08.183325 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6881'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f687f')}], "ordered"=>true}
5978
+ D, [2016-10-17T12:06:08.183829 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00040300000000000004s
5979
+ D, [2016-10-17T12:06:08.184434 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f687f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5980
+ D, [2016-10-17T12:06:08.184915 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000407s
5981
+ D, [2016-10-17T12:06:08.185679 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "limit"=>1, "singleBatch"=>true}
5982
+ D, [2016-10-17T12:06:08.186417 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0006670000000000001s
5983
+ D, [2016-10-17T12:06:08.187144 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f687e')]}}}
5984
+ D, [2016-10-17T12:06:08.187625 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000409s
5985
+ D, [2016-10-17T12:06:08.188690 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
5986
+ D, [2016-10-17T12:06:08.189160 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000395s
5987
+ D, [2016-10-17T12:06:08.189504 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
5988
+ D, [2016-10-17T12:06:08.190143 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000563s
5989
+ D, [2016-10-17T12:06:08.190324 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
5990
+ D, [2016-10-17T12:06:08.215106 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.024662s
5991
+ D, [2016-10-17T12:06:08.216616 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6882'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5992
+ D, [2016-10-17T12:06:08.248650 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.031932s
5993
+ D, [2016-10-17T12:06:08.249924 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6883'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
5994
+ D, [2016-10-17T12:06:08.250938 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000328s
5995
+ D, [2016-10-17T12:06:08.251987 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6884'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f6882')}], "ordered"=>true}
5996
+ D, [2016-10-17T12:06:08.272910 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020822s
5997
+ D, [2016-10-17T12:06:08.273680 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6882')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
5998
+ D, [2016-10-17T12:06:08.274206 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000479s
5999
+ D, [2016-10-17T12:06:08.275112 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6885'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f6883')}], "ordered"=>true}
6000
+ D, [2016-10-17T12:06:08.275493 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000313s
6001
+ D, [2016-10-17T12:06:08.276077 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6883')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6002
+ D, [2016-10-17T12:06:08.276455 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000307s
6003
+ D, [2016-10-17T12:06:08.277112 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "limit"=>1, "singleBatch"=>true}
6004
+ D, [2016-10-17T12:06:08.277495 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00032s
6005
+ D, [2016-10-17T12:06:08.278471 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f6882')]}}}
6006
+ D, [2016-10-17T12:06:08.278948 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000414s
6007
+ D, [2016-10-17T12:06:08.279742 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6008
+ D, [2016-10-17T12:06:08.280080 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000286s
6009
+ D, [2016-10-17T12:06:08.280270 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6010
+ D, [2016-10-17T12:06:08.280748 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000423s
6011
+ D, [2016-10-17T12:06:08.280905 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6012
+ D, [2016-10-17T12:06:08.301145 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.02008s
6013
+ D, [2016-10-17T12:06:08.302672 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6886'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6014
+ D, [2016-10-17T12:06:08.324870 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022081s
6015
+ D, [2016-10-17T12:06:08.326570 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6887'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6016
+ D, [2016-10-17T12:06:08.327099 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00045999999999999996s
6017
+ D, [2016-10-17T12:06:08.329049 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6888'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f6886')}], "ordered"=>true}
6018
+ D, [2016-10-17T12:06:08.352373 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023198s
6019
+ D, [2016-10-17T12:06:08.353371 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6886')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6020
+ D, [2016-10-17T12:06:08.353957 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005139999999999999s
6021
+ D, [2016-10-17T12:06:08.355236 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6889'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f6887')}], "ordered"=>true}
6022
+ D, [2016-10-17T12:06:08.355683 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00038s
6023
+ D, [2016-10-17T12:06:08.356385 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6887')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6024
+ D, [2016-10-17T12:06:08.356883 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000418s
6025
+ D, [2016-10-17T12:06:08.357788 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}, "limit"=>1, "singleBatch"=>true}
6026
+ D, [2016-10-17T12:06:08.358262 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000399s
6027
+ D, [2016-10-17T12:06:08.359254 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f6887')]}}}
6028
+ D, [2016-10-17T12:06:08.359737 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000414s
6029
+ D, [2016-10-17T12:06:08.360846 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6030
+ D, [2016-10-17T12:06:08.361341 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000419s
6031
+ D, [2016-10-17T12:06:08.361603 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6032
+ D, [2016-10-17T12:06:08.362229 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000551s
6033
+ D, [2016-10-17T12:06:08.362407 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6034
+ D, [2016-10-17T12:06:08.375122 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012565999999999999s
6035
+ D, [2016-10-17T12:06:08.376431 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688a'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6036
+ D, [2016-10-17T12:06:08.400055 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023511s
6037
+ D, [2016-10-17T12:06:08.401332 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688b'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6038
+ D, [2016-10-17T12:06:08.402314 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000367s
6039
+ D, [2016-10-17T12:06:08.403364 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688c'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f688a')}], "ordered"=>true}
6040
+ D, [2016-10-17T12:06:08.424416 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020957s
6041
+ D, [2016-10-17T12:06:08.425165 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6042
+ D, [2016-10-17T12:06:08.425623 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00040300000000000004s
6043
+ D, [2016-10-17T12:06:08.426568 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688d'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f688b')}], "ordered"=>true}
6044
+ D, [2016-10-17T12:06:08.426924 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000307s
6045
+ D, [2016-10-17T12:06:08.427367 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688b')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6046
+ D, [2016-10-17T12:06:08.427731 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00029499999999999996s
6047
+ D, [2016-10-17T12:06:08.428395 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}, "limit"=>1, "singleBatch"=>true}
6048
+ D, [2016-10-17T12:06:08.428817 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00036199999999999996s
6049
+ D, [2016-10-17T12:06:08.429398 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f688b')]}}}
6050
+ D, [2016-10-17T12:06:08.429793 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00034199999999999996s
6051
+ D, [2016-10-17T12:06:08.430195 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>1}, "limit"=>1, "singleBatch"=>true}
6052
+ D, [2016-10-17T12:06:08.430553 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000297s
6053
+ D, [2016-10-17T12:06:08.431302 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688a')}, "limit"=>1, "singleBatch"=>true}
6054
+ D, [2016-10-17T12:06:08.431677 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000287s
6055
+ D, [2016-10-17T12:06:08.432557 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6056
+ D, [2016-10-17T12:06:08.432921 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000304s
6057
+ D, [2016-10-17T12:06:08.433140 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6058
+ D, [2016-10-17T12:06:08.433611 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00042s
6059
+ D, [2016-10-17T12:06:08.433755 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6060
+ D, [2016-10-17T12:06:08.456475 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.022608s
6061
+ D, [2016-10-17T12:06:08.457932 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6062
+ D, [2016-10-17T12:06:08.480299 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022243s
6063
+ D, [2016-10-17T12:06:08.482214 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688f'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6064
+ D, [2016-10-17T12:06:08.482774 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00047900000000000004s
6065
+ D, [2016-10-17T12:06:08.484197 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6890'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f688e')}], "ordered"=>true}
6066
+ D, [2016-10-17T12:06:08.504977 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020658s
6067
+ D, [2016-10-17T12:06:08.505791 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688e')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6068
+ D, [2016-10-17T12:06:08.506280 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000436s
6069
+ D, [2016-10-17T12:06:08.507408 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6891'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e06fc1414f383f688f')}], "ordered"=>true}
6070
+ D, [2016-10-17T12:06:08.507773 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031s
6071
+ D, [2016-10-17T12:06:08.508466 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f688f')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6072
+ D, [2016-10-17T12:06:08.508833 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00057s
6073
+ D, [2016-10-17T12:06:08.509447 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{}, "sort"=>{"_id"=>-1}, "limit"=>1, "singleBatch"=>true}
6074
+ D, [2016-10-17T12:06:08.509861 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000351s
6075
+ D, [2016-10-17T12:06:08.510472 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f688f')]}}}
6076
+ D, [2016-10-17T12:06:08.510841 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000318s
6077
+ D, [2016-10-17T12:06:08.511663 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6078
+ D, [2016-10-17T12:06:08.511982 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000264s
6079
+ D, [2016-10-17T12:06:08.512153 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6080
+ D, [2016-10-17T12:06:08.512633 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000432s
6081
+ D, [2016-10-17T12:06:08.512751 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6082
+ D, [2016-10-17T12:06:08.524700 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011852000000000001s
6083
+ D, [2016-10-17T12:06:08.525797 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6892'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6084
+ D, [2016-10-17T12:06:08.546207 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0203s
6085
+ D, [2016-10-17T12:06:08.547720 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6893'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6086
+ D, [2016-10-17T12:06:08.548288 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000484s
6087
+ D, [2016-10-17T12:06:08.638133 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6893')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6088
+ D, [2016-10-17T12:06:08.640288 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0020369999999999997s
6089
+ D, [2016-10-17T12:06:08.641370 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6893')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6090
+ D, [2016-10-17T12:06:08.642310 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0008399999999999999s
6091
+ D, [2016-10-17T12:06:08.644072 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6894'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6092
+ D, [2016-10-17T12:06:08.665423 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021227s
6093
+ D, [2016-10-17T12:06:08.667073 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6895'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6094
+ D, [2016-10-17T12:06:08.667619 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000476s
6095
+ D, [2016-10-17T12:06:08.669384 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6893'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f6894')}}, "multi"=>false, "upsert"=>false}], "ordered...
6096
+ D, [2016-10-17T12:06:08.670605 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00115s
6097
+ D, [2016-10-17T12:06:08.671346 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6893'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f6895')}}, "multi"=>false, "upsert"=>false}], "ordered...
6098
+ D, [2016-10-17T12:06:08.671811 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039299999999999996s
6099
+ D, [2016-10-17T12:06:08.672316 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6893')}}
6100
+ D, [2016-10-17T12:06:08.672737 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00034700000000000003s
6101
+ D, [2016-10-17T12:06:08.673935 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f6894')]}}}
6102
+ D, [2016-10-17T12:06:08.674333 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
6103
+ D, [2016-10-17T12:06:08.675845 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6104
+ D, [2016-10-17T12:06:08.676299 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000373s
6105
+ D, [2016-10-17T12:06:08.676518 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6106
+ D, [2016-10-17T12:06:08.677147 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005639999999999999s
6107
+ D, [2016-10-17T12:06:08.677309 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6108
+ D, [2016-10-17T12:06:08.689468 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012034s
6109
+ D, [2016-10-17T12:06:08.690811 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6896'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6110
+ D, [2016-10-17T12:06:08.711937 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021022s
6111
+ D, [2016-10-17T12:06:08.713157 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6897'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6112
+ D, [2016-10-17T12:06:08.722390 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000341s
6113
+ D, [2016-10-17T12:06:08.723665 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6897')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6114
+ D, [2016-10-17T12:06:08.724371 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000656s
6115
+ D, [2016-10-17T12:06:08.724995 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6897')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6116
+ D, [2016-10-17T12:06:08.725425 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000378s
6117
+ D, [2016-10-17T12:06:08.726456 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6898'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6118
+ D, [2016-10-17T12:06:08.747549 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021s
6119
+ D, [2016-10-17T12:06:08.748802 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6899'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6120
+ D, [2016-10-17T12:06:08.749532 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0006540000000000001s
6121
+ D, [2016-10-17T12:06:08.750909 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6897'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f6898')}}, "multi"=>false, "upsert"=>false}], "ordered...
6122
+ D, [2016-10-17T12:06:08.751475 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000507s
6123
+ D, [2016-10-17T12:06:08.752082 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6897'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f6899')}}, "multi"=>false, "upsert"=>false}], "ordered...
6124
+ D, [2016-10-17T12:06:08.752771 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000353s
6125
+ D, [2016-10-17T12:06:08.753179 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6897')}}
6126
+ D, [2016-10-17T12:06:08.753469 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000242s
6127
+ D, [2016-10-17T12:06:08.754476 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f6898')]}}}
6128
+ D, [2016-10-17T12:06:08.754822 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000291s
6129
+ D, [2016-10-17T12:06:08.755630 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f6899')}, "limit"=>1, "singleBatch"=>true}
6130
+ D, [2016-10-17T12:06:08.755965 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000245s
6131
+ D, [2016-10-17T12:06:08.756658 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6132
+ D, [2016-10-17T12:06:08.757009 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000296s
6133
+ D, [2016-10-17T12:06:08.757182 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6134
+ D, [2016-10-17T12:06:08.757650 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00041999999999999996s
6135
+ D, [2016-10-17T12:06:08.757764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6136
+ D, [2016-10-17T12:06:08.769879 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012010000000000002s
6137
+ D, [2016-10-17T12:06:08.771024 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689a'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6138
+ D, [2016-10-17T12:06:08.791612 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020497s
6139
+ D, [2016-10-17T12:06:08.793153 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689b'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6140
+ D, [2016-10-17T12:06:08.793542 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00032s
6141
+ D, [2016-10-17T12:06:08.794568 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689b')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6142
+ D, [2016-10-17T12:06:08.794994 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00037299999999999996s
6143
+ D, [2016-10-17T12:06:08.795650 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689b')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6144
+ D, [2016-10-17T12:06:08.795988 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000283s
6145
+ D, [2016-10-17T12:06:08.797680 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689c'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6146
+ D, [2016-10-17T12:06:08.816492 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018715s
6147
+ D, [2016-10-17T12:06:08.817997 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689d'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6148
+ D, [2016-10-17T12:06:08.818359 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000312s
6149
+ D, [2016-10-17T12:06:08.819407 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689b'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f689c')}}, "multi"=>false, "upsert"=>false}], "ordered...
6150
+ D, [2016-10-17T12:06:08.819857 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0004s
6151
+ D, [2016-10-17T12:06:08.820396 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689b'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f689d')}}, "multi"=>false, "upsert"=>false}], "ordered...
6152
+ D, [2016-10-17T12:06:08.820834 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000382s
6153
+ D, [2016-10-17T12:06:08.821217 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689b')}}
6154
+ D, [2016-10-17T12:06:08.821596 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000329s
6155
+ D, [2016-10-17T12:06:08.822648 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f689c')]}}}
6156
+ D, [2016-10-17T12:06:08.823036 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000334s
6157
+ D, [2016-10-17T12:06:08.823764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6158
+ D, [2016-10-17T12:06:08.824114 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00029200000000000005s
6159
+ D, [2016-10-17T12:06:08.824292 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6160
+ D, [2016-10-17T12:06:08.824742 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000395s
6161
+ D, [2016-10-17T12:06:08.824893 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6162
+ D, [2016-10-17T12:06:08.835762 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010774s
6163
+ D, [2016-10-17T12:06:08.837033 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689e'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6164
+ D, [2016-10-17T12:06:08.856991 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019858s
6165
+ D, [2016-10-17T12:06:08.858183 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689f'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6166
+ D, [2016-10-17T12:06:08.859193 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00037400000000000004s
6167
+ D, [2016-10-17T12:06:08.860252 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689f')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6168
+ D, [2016-10-17T12:06:08.860665 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00036199999999999996s
6169
+ D, [2016-10-17T12:06:08.861321 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689f')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6170
+ D, [2016-10-17T12:06:08.861617 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000246s
6171
+ D, [2016-10-17T12:06:08.862636 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a0'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6172
+ D, [2016-10-17T12:06:08.884147 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021391s
6173
+ D, [2016-10-17T12:06:08.885429 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a1'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6174
+ D, [2016-10-17T12:06:08.885870 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034300000000000004s
6175
+ D, [2016-10-17T12:06:08.887099 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689f'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a0')}}, "multi"=>false, "upsert"=>false}], "ordered...
6176
+ D, [2016-10-17T12:06:08.887606 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000439s
6177
+ D, [2016-10-17T12:06:08.888247 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689f'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a1')}}, "multi"=>false, "upsert"=>false}], "ordered...
6178
+ D, [2016-10-17T12:06:08.888642 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00034s
6179
+ D, [2016-10-17T12:06:08.889029 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f689f')}}
6180
+ D, [2016-10-17T12:06:08.889504 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037s
6181
+ D, [2016-10-17T12:06:08.890551 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f68a1')]}}}
6182
+ D, [2016-10-17T12:06:08.890928 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
6183
+ D, [2016-10-17T12:06:08.891755 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6184
+ D, [2016-10-17T12:06:08.892134 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000317s
6185
+ D, [2016-10-17T12:06:08.892328 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6186
+ D, [2016-10-17T12:06:08.892775 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000401s
6187
+ D, [2016-10-17T12:06:08.893437 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6188
+ D, [2016-10-17T12:06:08.904654 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011126s
6189
+ D, [2016-10-17T12:06:08.905808 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a2'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6190
+ D, [2016-10-17T12:06:08.926730 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020834s
6191
+ D, [2016-10-17T12:06:08.927931 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a3'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6192
+ D, [2016-10-17T12:06:08.928313 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00032900000000000003s
6193
+ D, [2016-10-17T12:06:08.929346 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a3')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6194
+ D, [2016-10-17T12:06:08.929733 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00032700000000000003s
6195
+ D, [2016-10-17T12:06:08.930404 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a3')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6196
+ D, [2016-10-17T12:06:08.930764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000294s
6197
+ D, [2016-10-17T12:06:08.932088 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a4'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6198
+ D, [2016-10-17T12:06:08.975903 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.043707s
6199
+ D, [2016-10-17T12:06:08.977176 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a5'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6200
+ D, [2016-10-17T12:06:08.977656 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00045599999999999997s
6201
+ D, [2016-10-17T12:06:08.979115 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a3'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a4')}}, "multi"=>false, "upsert"=>false}], "ordered...
6202
+ D, [2016-10-17T12:06:08.990141 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.010906s
6203
+ D, [2016-10-17T12:06:08.991610 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a3'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a5')}}, "multi"=>false, "upsert"=>false}], "ordered...
6204
+ D, [2016-10-17T12:06:08.992841 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.001027s
6205
+ D, [2016-10-17T12:06:08.993799 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a3')}}
6206
+ D, [2016-10-17T12:06:08.994747 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0005120000000000001s
6207
+ D, [2016-10-17T12:06:08.996185 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e06fc1414f383f68a5')]}}}
6208
+ D, [2016-10-17T12:06:08.996851 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0005780000000000001s
6209
+ D, [2016-10-17T12:06:08.998122 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>BSON::ObjectId('5804e8e06fc1414f383f68a4')}, "limit"=>1, "singleBatch"=>true}
6210
+ D, [2016-10-17T12:06:08.998660 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000401s
6211
+ D, [2016-10-17T12:06:08.999802 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6212
+ D, [2016-10-17T12:06:09.000504 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000554s
6213
+ D, [2016-10-17T12:06:09.000837 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6214
+ D, [2016-10-17T12:06:09.007620 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.006634s
6215
+ D, [2016-10-17T12:06:09.007983 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6216
+ D, [2016-10-17T12:06:09.205710 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.19762300000000002s
6217
+ D, [2016-10-17T12:06:09.207221 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a6'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6218
+ D, [2016-10-17T12:06:09.232354 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02502s
6219
+ D, [2016-10-17T12:06:09.233475 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a7'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6220
+ D, [2016-10-17T12:06:09.233892 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000366s
6221
+ D, [2016-10-17T12:06:09.234951 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a7')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6222
+ D, [2016-10-17T12:06:09.235306 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000305s
6223
+ D, [2016-10-17T12:06:09.236041 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a7')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6224
+ D, [2016-10-17T12:06:09.236344 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000254s
6225
+ D, [2016-10-17T12:06:09.237601 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a8'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6226
+ D, [2016-10-17T12:06:09.257123 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.01942s
6227
+ D, [2016-10-17T12:06:09.258591 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a9'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6228
+ D, [2016-10-17T12:06:09.259736 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000395s
6229
+ D, [2016-10-17T12:06:09.261018 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a7'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a8')}}, "multi"=>false, "upsert"=>false}], "ordered...
6230
+ D, [2016-10-17T12:06:09.261560 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000477s
6231
+ D, [2016-10-17T12:06:09.262125 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a7'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a9')}}, "multi"=>false, "upsert"=>false}], "ordered...
6232
+ D, [2016-10-17T12:06:09.262572 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000394s
6233
+ D, [2016-10-17T12:06:09.263008 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68a7')}}
6234
+ D, [2016-10-17T12:06:09.263392 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000321s
6235
+ D, [2016-10-17T12:06:09.264494 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68a9')]}}}
6236
+ D, [2016-10-17T12:06:09.264863 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000316s
6237
+ D, [2016-10-17T12:06:09.265585 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6238
+ D, [2016-10-17T12:06:09.265933 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00029099999999999997s
6239
+ D, [2016-10-17T12:06:09.266113 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6240
+ D, [2016-10-17T12:06:09.266624 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000454s
6241
+ D, [2016-10-17T12:06:09.266759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6242
+ D, [2016-10-17T12:06:09.277746 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010895s
6243
+ D, [2016-10-17T12:06:09.278932 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68aa'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
6244
+ D, [2016-10-17T12:06:09.302565 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023535999999999998s
6245
+ D, [2016-10-17T12:06:09.303889 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ab'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6246
+ D, [2016-10-17T12:06:09.304333 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000386s
6247
+ D, [2016-10-17T12:06:09.305400 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ab')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6248
+ D, [2016-10-17T12:06:09.305805 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000352s
6249
+ D, [2016-10-17T12:06:09.307075 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ab')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6250
+ D, [2016-10-17T12:06:09.307495 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000337s
6251
+ D, [2016-10-17T12:06:09.308617 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ac'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6252
+ D, [2016-10-17T12:06:09.328699 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019988000000000002s
6253
+ D, [2016-10-17T12:06:09.329962 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ad'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6254
+ D, [2016-10-17T12:06:09.330366 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031600000000000004s
6255
+ D, [2016-10-17T12:06:09.331596 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ab'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ac')}}, "multi"=>false, "upsert"=>false}], "ordered...
6256
+ D, [2016-10-17T12:06:09.332099 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043900000000000005s
6257
+ D, [2016-10-17T12:06:09.332775 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ab'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ad')}}, "multi"=>false, "upsert"=>false}], "ordered...
6258
+ D, [2016-10-17T12:06:09.333194 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000366s
6259
+ D, [2016-10-17T12:06:09.333696 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ab')}}
6260
+ D, [2016-10-17T12:06:09.334013 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000261s
6261
+ D, [2016-10-17T12:06:09.335051 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68ac'), BSON::ObjectId('5804e8e16fc1414f383f68ad')]}}}
6262
+ D, [2016-10-17T12:06:09.336351 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.001197s
6263
+ D, [2016-10-17T12:06:09.337483 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6264
+ D, [2016-10-17T12:06:09.337887 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00035299999999999996s
6265
+ D, [2016-10-17T12:06:09.338074 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6266
+ D, [2016-10-17T12:06:09.338576 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000455s
6267
+ D, [2016-10-17T12:06:09.338703 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6268
+ D, [2016-10-17T12:06:09.350287 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011468s
6269
+ D, [2016-10-17T12:06:09.351485 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ae'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6270
+ D, [2016-10-17T12:06:09.371936 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020351s
6271
+ D, [2016-10-17T12:06:09.373321 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68af'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:0...
6272
+ D, [2016-10-17T12:06:09.373785 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00041400000000000003s
6273
+ D, [2016-10-17T12:06:09.374871 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68af')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6274
+ D, [2016-10-17T12:06:09.375257 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000377s
6275
+ D, [2016-10-17T12:06:09.375902 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68af')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6276
+ D, [2016-10-17T12:06:09.376327 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000313s
6277
+ D, [2016-10-17T12:06:09.377426 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b0'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6278
+ D, [2016-10-17T12:06:09.395541 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018014000000000002s
6279
+ D, [2016-10-17T12:06:09.397081 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b1'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6280
+ D, [2016-10-17T12:06:09.397454 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000322s
6281
+ D, [2016-10-17T12:06:09.398474 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68af'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b0')}}, "multi"=>false, "upsert"=>false}], "ordered...
6282
+ D, [2016-10-17T12:06:09.399132 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000403s
6283
+ D, [2016-10-17T12:06:09.399686 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68af'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b1')}}, "multi"=>false, "upsert"=>false}], "ordered...
6284
+ D, [2016-10-17T12:06:09.400101 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000362s
6285
+ D, [2016-10-17T12:06:09.400480 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68af')}}
6286
+ D, [2016-10-17T12:06:09.400791 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000262s
6287
+ D, [2016-10-17T12:06:09.402043 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68b0'), BSON::ObjectId('5804e8e16fc1414f383f68b1')]}}}
6288
+ D, [2016-10-17T12:06:09.402451 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000351s
6289
+ D, [2016-10-17T12:06:09.403408 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6290
+ D, [2016-10-17T12:06:09.404387 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00037099999999999996s
6291
+ D, [2016-10-17T12:06:09.404598 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6292
+ D, [2016-10-17T12:06:09.405059 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000414s
6293
+ D, [2016-10-17T12:06:09.405209 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6294
+ D, [2016-10-17T12:06:09.418238 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012935s
6295
+ D, [2016-10-17T12:06:09.419432 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b2'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6296
+ D, [2016-10-17T12:06:09.441956 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022425999999999998s
6297
+ D, [2016-10-17T12:06:09.443440 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b3'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6298
+ D, [2016-10-17T12:06:09.443918 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000415s
6299
+ D, [2016-10-17T12:06:09.444962 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b3')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"rosenthaler", "_id"=>"rosenthaler"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6300
+ D, [2016-10-17T12:06:09.445340 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000325s
6301
+ D, [2016-10-17T12:06:09.446087 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b3')}, "u"=>{"$push"=>{"addresses"=>{"street"=>"weinmeister", "_id"=>"weinmeister"}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
6302
+ D, [2016-10-17T12:06:09.446441 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000296s
6303
+ D, [2016-10-17T12:06:09.447529 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b4'), "active"=>true, "name"=>"Depeche Mode", "upserted"=>false}], "ordered"=>true}
6304
+ D, [2016-10-17T12:06:09.473442 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025815s
6305
+ D, [2016-10-17T12:06:09.474809 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"bands", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b5'), "active"=>true, "name"=>"Tool", "upserted"=>false}], "ordered"=>true}
6306
+ D, [2016-10-17T12:06:09.475162 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000307s
6307
+ D, [2016-10-17T12:06:09.476215 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b3'), "addresses._id"=>"rosenthaler"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b4')}}, "multi"=>false, "upsert"=>false}], "ordered...
6308
+ D, [2016-10-17T12:06:09.476656 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00038500000000000003s
6309
+ D, [2016-10-17T12:06:09.477219 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b3'), "addresses._id"=>"weinmeister"}, "u"=>{"$set"=>{"addresses.$.band_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b5')}}, "multi"=>false, "upsert"=>false}], "ordered...
6310
+ D, [2016-10-17T12:06:09.478332 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000415s
6311
+ D, [2016-10-17T12:06:09.478753 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b3')}}
6312
+ D, [2016-10-17T12:06:09.479145 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00030199999999999997s
6313
+ D, [2016-10-17T12:06:09.480148 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"bands", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68b4'), BSON::ObjectId('5804e8e16fc1414f383f68b5')]}}}
6314
+ D, [2016-10-17T12:06:09.480634 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000424s
6315
+ D, [2016-10-17T12:06:09.481476 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6316
+ D, [2016-10-17T12:06:09.481892 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00035200000000000005s
6317
+ D, [2016-10-17T12:06:09.482176 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"bands"}
6318
+ D, [2016-10-17T12:06:09.482667 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000434s
6319
+ D, [2016-10-17T12:06:09.482790 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6320
+ D, [2016-10-17T12:06:09.493978 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011095s
6321
+ D, [2016-10-17T12:06:09.495153 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b6'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6322
+ D, [2016-10-17T12:06:09.516869 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021625000000000002s
6323
+ D, [2016-10-17T12:06:09.518421 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b7'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b6')}], "ordered"=>true}
6324
+ D, [2016-10-17T12:06:09.539134 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020625s
6325
+ D, [2016-10-17T12:06:09.539984 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b6')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6326
+ D, [2016-10-17T12:06:09.540558 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000527s
6327
+ D, [2016-10-17T12:06:09.541265 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b8'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b6')}], "ordered"=>true}
6328
+ D, [2016-10-17T12:06:09.541610 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000292s
6329
+ D, [2016-10-17T12:06:09.542109 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b6')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6330
+ D, [2016-10-17T12:06:09.542456 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000291s
6331
+ D, [2016-10-17T12:06:09.543174 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6332
+ D, [2016-10-17T12:06:09.544237 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000402s
6333
+ D, [2016-10-17T12:06:09.545024 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68b6')]}}}
6334
+ D, [2016-10-17T12:06:09.545370 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000287s
6335
+ D, [2016-10-17T12:06:09.546121 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6336
+ D, [2016-10-17T12:06:09.546482 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000302s
6337
+ D, [2016-10-17T12:06:09.546672 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6338
+ D, [2016-10-17T12:06:09.547345 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000623s
6339
+ D, [2016-10-17T12:06:09.547467 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6340
+ D, [2016-10-17T12:06:09.557211 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.009655s
6341
+ D, [2016-10-17T12:06:09.558383 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn9", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6342
+ D, [2016-10-17T12:06:09.578498 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020019000000000002s
6343
+ D, [2016-10-17T12:06:09.579807 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ba'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b9')}], "ordered"=>true}
6344
+ D, [2016-10-17T12:06:09.598584 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018680000000000002s
6345
+ D, [2016-10-17T12:06:09.599855 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6346
+ D, [2016-10-17T12:06:09.600314 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000395s
6347
+ D, [2016-10-17T12:06:09.601203 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bb'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b9')}], "ordered"=>true}
6348
+ D, [2016-10-17T12:06:09.601563 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030000000000000003s
6349
+ D, [2016-10-17T12:06:09.602386 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68b9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6350
+ D, [2016-10-17T12:06:09.602790 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000346s
6351
+ D, [2016-10-17T12:06:09.603709 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6352
+ D, [2016-10-17T12:06:09.604199 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000418s
6353
+ D, [2016-10-17T12:06:09.604904 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68b9')]}}}
6354
+ D, [2016-10-17T12:06:09.605554 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000588s
6355
+ D, [2016-10-17T12:06:09.607592 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6356
+ D, [2016-10-17T12:06:09.608203 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00049s
6357
+ D, [2016-10-17T12:06:09.608407 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6358
+ D, [2016-10-17T12:06:09.609018 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005449999999999999s
6359
+ D, [2016-10-17T12:06:09.609188 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6360
+ D, [2016-10-17T12:06:09.619918 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010639s
6361
+ D, [2016-10-17T12:06:09.621191 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bc'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6362
+ D, [2016-10-17T12:06:09.641818 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020527s
6363
+ D, [2016-10-17T12:06:09.643451 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bd'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bc')}], "ordered"=>true}
6364
+ D, [2016-10-17T12:06:09.684123 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.040655s
6365
+ D, [2016-10-17T12:06:09.685095 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bc')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6366
+ D, [2016-10-17T12:06:09.685603 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00044800000000000005s
6367
+ D, [2016-10-17T12:06:09.686685 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68be'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bc')}], "ordered"=>true}
6368
+ D, [2016-10-17T12:06:09.687130 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000375s
6369
+ D, [2016-10-17T12:06:09.687682 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bc')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6370
+ D, [2016-10-17T12:06:09.688165 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000372s
6371
+ D, [2016-10-17T12:06:09.688952 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6372
+ D, [2016-10-17T12:06:09.689336 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000326s
6373
+ D, [2016-10-17T12:06:09.690037 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68bc')]}}}
6374
+ D, [2016-10-17T12:06:09.690366 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027499999999999996s
6375
+ D, [2016-10-17T12:06:09.691374 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6376
+ D, [2016-10-17T12:06:09.691729 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000293s
6377
+ D, [2016-10-17T12:06:09.691923 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6378
+ D, [2016-10-17T12:06:09.693017 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000432s
6379
+ D, [2016-10-17T12:06:09.693143 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6380
+ D, [2016-10-17T12:06:09.713103 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019865s
6381
+ D, [2016-10-17T12:06:09.714329 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6382
+ D, [2016-10-17T12:06:09.740969 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026559000000000003s
6383
+ D, [2016-10-17T12:06:09.742381 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c0'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf')}], "ordered"=>true}
6384
+ D, [2016-10-17T12:06:09.763334 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020856s
6385
+ D, [2016-10-17T12:06:09.764381 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6386
+ D, [2016-10-17T12:06:09.764944 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0004980000000000001s
6387
+ D, [2016-10-17T12:06:09.765812 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c1'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf')}], "ordered"=>true}
6388
+ D, [2016-10-17T12:06:09.766163 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000289s
6389
+ D, [2016-10-17T12:06:09.766759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6390
+ D, [2016-10-17T12:06:09.767122 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00030599999999999996s
6391
+ D, [2016-10-17T12:06:09.767811 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6392
+ D, [2016-10-17T12:06:09.768252 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000388s
6393
+ D, [2016-10-17T12:06:09.768921 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68bf')]}}}
6394
+ D, [2016-10-17T12:06:09.769278 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000299s
6395
+ D, [2016-10-17T12:06:09.770456 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf')}, "limit"=>1, "singleBatch"=>true}
6396
+ D, [2016-10-17T12:06:09.770809 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029099999999999997s
6397
+ D, [2016-10-17T12:06:09.771522 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68bf')]}}}
6398
+ D, [2016-10-17T12:06:09.771821 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000246s
6399
+ D, [2016-10-17T12:06:09.772253 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | STARTED | {"count"=>"posts", "query"=>{"person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68bf')}}
6400
+ D, [2016-10-17T12:06:09.772550 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.count | SUCCEEDED | 0.000241s
6401
+ D, [2016-10-17T12:06:09.774005 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6402
+ D, [2016-10-17T12:06:09.774393 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000324s
6403
+ D, [2016-10-17T12:06:09.774600 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6404
+ D, [2016-10-17T12:06:09.775053 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000404s
6405
+ D, [2016-10-17T12:06:09.775214 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6406
+ D, [2016-10-17T12:06:09.786746 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011432s
6407
+ D, [2016-10-17T12:06:09.787927 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c2'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
6408
+ D, [2016-10-17T12:06:09.808443 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020417s
6409
+ D, [2016-10-17T12:06:09.810075 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c3'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c2')}], "ordered"=>true}
6410
+ D, [2016-10-17T12:06:09.835093 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024951s
6411
+ D, [2016-10-17T12:06:09.836187 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c2')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6412
+ D, [2016-10-17T12:06:09.836714 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000469s
6413
+ D, [2016-10-17T12:06:09.837508 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c4'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c2')}], "ordered"=>true}
6414
+ D, [2016-10-17T12:06:09.838169 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000596s
6415
+ D, [2016-10-17T12:06:09.838939 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c2')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6416
+ D, [2016-10-17T12:06:09.839318 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00031800000000000003s
6417
+ D, [2016-10-17T12:06:09.840071 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6418
+ D, [2016-10-17T12:06:09.840466 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000339s
6419
+ D, [2016-10-17T12:06:09.841161 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68c2')]}}}
6420
+ D, [2016-10-17T12:06:09.841482 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000268s
6421
+ D, [2016-10-17T12:06:09.842180 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6422
+ D, [2016-10-17T12:06:09.842584 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000348s
6423
+ D, [2016-10-17T12:06:09.842764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6424
+ D, [2016-10-17T12:06:09.843836 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000444s
6425
+ D, [2016-10-17T12:06:09.843961 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6426
+ D, [2016-10-17T12:06:09.855691 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011638s
6427
+ D, [2016-10-17T12:06:09.856853 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c5'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6428
+ D, [2016-10-17T12:06:09.878338 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021392s
6429
+ D, [2016-10-17T12:06:09.879787 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c6'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c5')}], "ordered"=>true}
6430
+ D, [2016-10-17T12:06:09.901374 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021494s
6431
+ D, [2016-10-17T12:06:09.902272 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c5')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6432
+ D, [2016-10-17T12:06:09.902759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000437s
6433
+ D, [2016-10-17T12:06:09.903508 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c7'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c5')}], "ordered"=>true}
6434
+ D, [2016-10-17T12:06:09.903876 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000304s
6435
+ D, [2016-10-17T12:06:09.904409 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c5')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6436
+ D, [2016-10-17T12:06:09.904738 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00027100000000000003s
6437
+ D, [2016-10-17T12:06:09.905425 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6438
+ D, [2016-10-17T12:06:09.905912 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000417s
6439
+ D, [2016-10-17T12:06:09.906512 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68c5')]}}}
6440
+ D, [2016-10-17T12:06:09.906849 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027699999999999996s
6441
+ D, [2016-10-17T12:06:09.907935 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6442
+ D, [2016-10-17T12:06:09.908353 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000346s
6443
+ D, [2016-10-17T12:06:09.908554 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6444
+ D, [2016-10-17T12:06:09.909156 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0005449999999999999s
6445
+ D, [2016-10-17T12:06:09.909301 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6446
+ D, [2016-10-17T12:06:09.921919 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012524s
6447
+ D, [2016-10-17T12:06:09.923036 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c8'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6448
+ D, [2016-10-17T12:06:09.943060 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019926s
6449
+ D, [2016-10-17T12:06:09.944444 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c9'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c8')}], "ordered"=>true}
6450
+ D, [2016-10-17T12:06:09.966755 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022223000000000003s
6451
+ D, [2016-10-17T12:06:09.967633 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c8')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6452
+ D, [2016-10-17T12:06:09.968082 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000403s
6453
+ D, [2016-10-17T12:06:09.968760 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68ca'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c8')}], "ordered"=>true}
6454
+ D, [2016-10-17T12:06:09.969083 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000262s
6455
+ D, [2016-10-17T12:06:09.969848 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68c8')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6456
+ D, [2016-10-17T12:06:09.970162 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00026000000000000003s
6457
+ D, [2016-10-17T12:06:09.970853 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6458
+ D, [2016-10-17T12:06:09.971251 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000328s
6459
+ D, [2016-10-17T12:06:09.972054 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68c8')]}}}
6460
+ D, [2016-10-17T12:06:09.972366 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026s
6461
+ D, [2016-10-17T12:06:09.973496 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6462
+ D, [2016-10-17T12:06:09.973885 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000332s
6463
+ D, [2016-10-17T12:06:09.974064 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6464
+ D, [2016-10-17T12:06:09.974554 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00044500000000000003s
6465
+ D, [2016-10-17T12:06:09.974691 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6466
+ D, [2016-10-17T12:06:09.998268 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.023482999999999997s
6467
+ D, [2016-10-17T12:06:09.999326 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68cb'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6468
+ D, [2016-10-17T12:06:10.024814 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025395s
6469
+ D, [2016-10-17T12:06:10.026485 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68cc'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68cb')}], "ordered"=>true}
6470
+ D, [2016-10-17T12:06:10.131842 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.104686s
6471
+ D, [2016-10-17T12:06:10.132775 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68cb')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6472
+ D, [2016-10-17T12:06:10.133283 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00045400000000000003s
6473
+ D, [2016-10-17T12:06:10.134078 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68cd'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e16fc1414f383f68cb')}], "ordered"=>true}
6474
+ D, [2016-10-17T12:06:10.134442 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031499999999999996s
6475
+ D, [2016-10-17T12:06:10.134924 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e16fc1414f383f68cb')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6476
+ D, [2016-10-17T12:06:10.135211 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00023700000000000001s
6477
+ D, [2016-10-17T12:06:10.136122 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6478
+ D, [2016-10-17T12:06:10.136507 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000333s
6479
+ D, [2016-10-17T12:06:10.137206 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e16fc1414f383f68cb')]}}}
6480
+ D, [2016-10-17T12:06:10.137731 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000472s
6481
+ D, [2016-10-17T12:06:10.138497 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6482
+ D, [2016-10-17T12:06:10.138848 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000297s
6483
+ D, [2016-10-17T12:06:10.139024 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6484
+ D, [2016-10-17T12:06:10.139480 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000404s
6485
+ D, [2016-10-17T12:06:10.139607 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6486
+ D, [2016-10-17T12:06:10.152504 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012784s
6487
+ D, [2016-10-17T12:06:10.153681 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ce'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn5", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6488
+ D, [2016-10-17T12:06:10.174249 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020472s
6489
+ D, [2016-10-17T12:06:10.175777 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68cf'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ce')}], "ordered"=>true}
6490
+ D, [2016-10-17T12:06:10.196857 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020982s
6491
+ D, [2016-10-17T12:06:10.197865 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ce')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6492
+ D, [2016-10-17T12:06:10.199042 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000466s
6493
+ D, [2016-10-17T12:06:10.199972 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d0'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ce')}], "ordered"=>true}
6494
+ D, [2016-10-17T12:06:10.200435 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00038700000000000003s
6495
+ D, [2016-10-17T12:06:10.201174 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ce')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6496
+ D, [2016-10-17T12:06:10.201812 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000563s
6497
+ D, [2016-10-17T12:06:10.203221 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6498
+ D, [2016-10-17T12:06:10.203705 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00040699999999999997s
6499
+ D, [2016-10-17T12:06:10.204607 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ce')]}}}
6500
+ D, [2016-10-17T12:06:10.204939 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00027499999999999996s
6501
+ D, [2016-10-17T12:06:10.205860 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6502
+ D, [2016-10-17T12:06:10.206278 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00030900000000000003s
6503
+ D, [2016-10-17T12:06:10.206474 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6504
+ D, [2016-10-17T12:06:10.206951 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00041600000000000003s
6505
+ D, [2016-10-17T12:06:10.207083 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6506
+ D, [2016-10-17T12:06:10.232169 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.024994s
6507
+ D, [2016-10-17T12:06:10.233433 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d1'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6508
+ D, [2016-10-17T12:06:10.278798 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.045256s
6509
+ D, [2016-10-17T12:06:10.280517 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d2'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d1')}], "ordered"=>true}
6510
+ D, [2016-10-17T12:06:10.340691 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.060062s
6511
+ D, [2016-10-17T12:06:10.341583 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d1')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6512
+ D, [2016-10-17T12:06:10.342192 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005409999999999999s
6513
+ D, [2016-10-17T12:06:10.343070 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d3'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d1')}], "ordered"=>true}
6514
+ D, [2016-10-17T12:06:10.344044 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00035200000000000005s
6515
+ D, [2016-10-17T12:06:10.344940 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d1')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6516
+ D, [2016-10-17T12:06:10.345306 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00031s
6517
+ D, [2016-10-17T12:06:10.346287 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6518
+ D, [2016-10-17T12:06:10.346688 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000334s
6519
+ D, [2016-10-17T12:06:10.347582 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68d1')]}}}
6520
+ D, [2016-10-17T12:06:10.347915 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026599999999999996s
6521
+ D, [2016-10-17T12:06:10.349015 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6522
+ D, [2016-10-17T12:06:10.349461 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00037900000000000005s
6523
+ D, [2016-10-17T12:06:10.349664 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6524
+ D, [2016-10-17T12:06:10.350169 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000453s
6525
+ D, [2016-10-17T12:06:10.350361 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6526
+ D, [2016-10-17T12:06:10.350747 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00032900000000000003s
6527
+ D, [2016-10-17T12:06:10.351681 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d4'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6528
+ D, [2016-10-17T12:06:10.370374 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018602s
6529
+ D, [2016-10-17T12:06:10.371751 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d5'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d4')}], "ordered"=>true}
6530
+ D, [2016-10-17T12:06:10.413343 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.041495s
6531
+ D, [2016-10-17T12:06:10.414275 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d4')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6532
+ D, [2016-10-17T12:06:10.414728 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00039799999999999997s
6533
+ D, [2016-10-17T12:06:10.415459 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d6'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d4')}], "ordered"=>true}
6534
+ D, [2016-10-17T12:06:10.415803 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000248s
6535
+ D, [2016-10-17T12:06:10.416281 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d4')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6536
+ D, [2016-10-17T12:06:10.417238 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000299s
6537
+ D, [2016-10-17T12:06:10.418341 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d7'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6538
+ D, [2016-10-17T12:06:10.418748 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000352s
6539
+ D, [2016-10-17T12:06:10.419670 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d8'), "title"=>"three", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d7')}], "ordered"=>true}
6540
+ D, [2016-10-17T12:06:10.419991 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000273s
6541
+ D, [2016-10-17T12:06:10.420638 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d7')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6542
+ D, [2016-10-17T12:06:10.420966 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000268s
6543
+ D, [2016-10-17T12:06:10.421680 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
6544
+ D, [2016-10-17T12:06:10.422058 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000324s
6545
+ D, [2016-10-17T12:06:10.422762 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68d4')]}}}
6546
+ D, [2016-10-17T12:06:10.423056 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00024s
6547
+ D, [2016-10-17T12:06:10.423532 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
6548
+ D, [2016-10-17T12:06:10.423874 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000286s
6549
+ D, [2016-10-17T12:06:10.424493 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6550
+ D, [2016-10-17T12:06:10.424801 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000255s
6551
+ D, [2016-10-17T12:06:10.424985 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6552
+ D, [2016-10-17T12:06:10.425473 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000441s
6553
+ D, [2016-10-17T12:06:10.425592 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6554
+ D, [2016-10-17T12:06:10.448480 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.022795s
6555
+ D, [2016-10-17T12:06:10.449618 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6556
+ D, [2016-10-17T12:06:10.494719 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.044888000000000004s
6557
+ D, [2016-10-17T12:06:10.496331 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68da'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d9')}], "ordered"=>true}
6558
+ D, [2016-10-17T12:06:10.525881 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028742s
6559
+ D, [2016-10-17T12:06:10.527043 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6560
+ D, [2016-10-17T12:06:10.527659 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0005380000000000001s
6561
+ D, [2016-10-17T12:06:10.528686 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68db'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d9')}], "ordered"=>true}
6562
+ D, [2016-10-17T12:06:10.529219 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000464s
6563
+ D, [2016-10-17T12:06:10.529886 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68d9')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6564
+ D, [2016-10-17T12:06:10.530332 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000371s
6565
+ D, [2016-10-17T12:06:10.532026 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68dc'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6566
+ D, [2016-10-17T12:06:10.532458 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000354s
6567
+ D, [2016-10-17T12:06:10.533937 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68dd'), "title"=>"three", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68dc')}], "ordered"=>true}
6568
+ D, [2016-10-17T12:06:10.534530 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000462s
6569
+ D, [2016-10-17T12:06:10.535648 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68dc')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6570
+ D, [2016-10-17T12:06:10.536126 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000399s
6571
+ D, [2016-10-17T12:06:10.537805 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
6572
+ D, [2016-10-17T12:06:10.538359 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00045200000000000004s
6573
+ D, [2016-10-17T12:06:10.539248 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68d9')]}}}
6574
+ D, [2016-10-17T12:06:10.539920 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000607s
6575
+ D, [2016-10-17T12:06:10.540930 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6576
+ D, [2016-10-17T12:06:10.541423 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000431s
6577
+ D, [2016-10-17T12:06:10.541643 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6578
+ D, [2016-10-17T12:06:10.542197 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000494s
6579
+ D, [2016-10-17T12:06:10.542352 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6580
+ D, [2016-10-17T12:06:10.559518 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017067000000000002s
6581
+ D, [2016-10-17T12:06:10.560719 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68de'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6582
+ D, [2016-10-17T12:06:10.596121 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.035308s
6583
+ D, [2016-10-17T12:06:10.597636 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68df'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68de')}], "ordered"=>true}
6584
+ D, [2016-10-17T12:06:10.616788 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019065000000000002s
6585
+ D, [2016-10-17T12:06:10.617685 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68de')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6586
+ D, [2016-10-17T12:06:10.618137 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000394s
6587
+ D, [2016-10-17T12:06:10.618949 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e0'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68de')}], "ordered"=>true}
6588
+ D, [2016-10-17T12:06:10.619285 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000281s
6589
+ D, [2016-10-17T12:06:10.619869 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68de')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6590
+ D, [2016-10-17T12:06:10.620176 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00025699999999999996s
6591
+ D, [2016-10-17T12:06:10.621153 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e1'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6592
+ D, [2016-10-17T12:06:10.621515 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000311s
6593
+ D, [2016-10-17T12:06:10.622364 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e2'), "title"=>"three", "person_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e1')}], "ordered"=>true}
6594
+ D, [2016-10-17T12:06:10.622724 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000306s
6595
+ D, [2016-10-17T12:06:10.623300 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e1')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6596
+ D, [2016-10-17T12:06:10.623650 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000295s
6597
+ D, [2016-10-17T12:06:10.624346 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
6598
+ D, [2016-10-17T12:06:10.624759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000363s
6599
+ D, [2016-10-17T12:06:10.625412 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68de')]}}}
6600
+ D, [2016-10-17T12:06:10.625774 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000309s
6601
+ D, [2016-10-17T12:06:10.627490 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6602
+ D, [2016-10-17T12:06:10.628005 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00044s
6603
+ D, [2016-10-17T12:06:10.628262 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6604
+ D, [2016-10-17T12:06:10.628731 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000421s
6605
+ D, [2016-10-17T12:06:10.628849 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6606
+ D, [2016-10-17T12:06:10.640296 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011355s
6607
+ D, [2016-10-17T12:06:10.641493 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e3'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6608
+ D, [2016-10-17T12:06:10.662958 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021375s
6609
+ D, [2016-10-17T12:06:10.665130 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e4'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68e3')]}], "ordered"=>true}
6610
+ D, [2016-10-17T12:06:10.702917 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.037687s
6611
+ D, [2016-10-17T12:06:10.704085 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e3')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68e4')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6612
+ D, [2016-10-17T12:06:10.704680 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000527s
6613
+ D, [2016-10-17T12:06:10.705685 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e5'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68e3')]}], "ordered"=>true}
6614
+ D, [2016-10-17T12:06:10.706064 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000313s
6615
+ D, [2016-10-17T12:06:10.706668 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e3')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68e5')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6616
+ D, [2016-10-17T12:06:10.707081 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00035299999999999996s
6617
+ D, [2016-10-17T12:06:10.707940 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6618
+ D, [2016-10-17T12:06:10.708353 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000352s
6619
+ D, [2016-10-17T12:06:10.709469 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e4'), BSON::ObjectId('5804e8e26fc1414f383f68e5')]}}}
6620
+ D, [2016-10-17T12:06:10.709991 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000444s
6621
+ D, [2016-10-17T12:06:10.711011 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6622
+ D, [2016-10-17T12:06:10.711529 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00041299999999999996s
6623
+ D, [2016-10-17T12:06:10.711779 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6624
+ D, [2016-10-17T12:06:10.712276 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00044s
6625
+ D, [2016-10-17T12:06:10.712404 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6626
+ D, [2016-10-17T12:06:10.735036 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.022536999999999998s
6627
+ D, [2016-10-17T12:06:10.736381 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e6'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6628
+ D, [2016-10-17T12:06:10.757748 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021259999999999998s
6629
+ D, [2016-10-17T12:06:10.759374 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e7'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68e6')]}], "ordered"=>true}
6630
+ D, [2016-10-17T12:06:10.779345 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019857000000000003s
6631
+ D, [2016-10-17T12:06:10.780239 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e6')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68e7')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6632
+ D, [2016-10-17T12:06:10.780764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00047400000000000003s
6633
+ D, [2016-10-17T12:06:10.781569 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e8'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68e6')]}], "ordered"=>true}
6634
+ D, [2016-10-17T12:06:10.781904 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000281s
6635
+ D, [2016-10-17T12:06:10.782403 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e6')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68e8')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6636
+ D, [2016-10-17T12:06:10.782832 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00037s
6637
+ D, [2016-10-17T12:06:10.783389 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6638
+ D, [2016-10-17T12:06:10.783868 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00041400000000000003s
6639
+ D, [2016-10-17T12:06:10.784629 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e7'), BSON::ObjectId('5804e8e26fc1414f383f68e8')]}}}
6640
+ D, [2016-10-17T12:06:10.785044 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000359s
6641
+ D, [2016-10-17T12:06:10.785990 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6642
+ D, [2016-10-17T12:06:10.786307 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00026300000000000005s
6643
+ D, [2016-10-17T12:06:10.786480 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6644
+ D, [2016-10-17T12:06:10.786957 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000425s
6645
+ D, [2016-10-17T12:06:10.787674 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6646
+ D, [2016-10-17T12:06:10.799717 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.01195s
6647
+ D, [2016-10-17T12:06:10.800833 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68e9'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6648
+ D, [2016-10-17T12:06:10.822386 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021478s
6649
+ D, [2016-10-17T12:06:10.823916 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ea'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68e9')]}], "ordered"=>true}
6650
+ D, [2016-10-17T12:06:10.845538 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021514s
6651
+ D, [2016-10-17T12:06:10.846508 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e9')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68ea')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6652
+ D, [2016-10-17T12:06:10.847071 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000516s
6653
+ D, [2016-10-17T12:06:10.847830 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68eb'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68e9')]}], "ordered"=>true}
6654
+ D, [2016-10-17T12:06:10.848190 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000289s
6655
+ D, [2016-10-17T12:06:10.848681 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68e9')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68eb')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6656
+ D, [2016-10-17T12:06:10.849109 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000372s
6657
+ D, [2016-10-17T12:06:10.849742 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6658
+ D, [2016-10-17T12:06:10.850155 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000359s
6659
+ D, [2016-10-17T12:06:10.850908 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ea'), BSON::ObjectId('5804e8e26fc1414f383f68eb')]}}}
6660
+ D, [2016-10-17T12:06:10.851280 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000319s
6661
+ D, [2016-10-17T12:06:10.852281 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6662
+ D, [2016-10-17T12:06:10.852659 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000319s
6663
+ D, [2016-10-17T12:06:10.852841 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6664
+ D, [2016-10-17T12:06:10.853327 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000424s
6665
+ D, [2016-10-17T12:06:10.853448 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6666
+ D, [2016-10-17T12:06:10.870176 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.016575s
6667
+ D, [2016-10-17T12:06:10.871671 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ec'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6668
+ D, [2016-10-17T12:06:10.893928 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.022112s
6669
+ D, [2016-10-17T12:06:10.895594 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ed'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68ec')]}], "ordered"=>true}
6670
+ D, [2016-10-17T12:06:10.924299 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.028575s
6671
+ D, [2016-10-17T12:06:10.925242 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ec')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68ed')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6672
+ D, [2016-10-17T12:06:10.925817 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000509s
6673
+ D, [2016-10-17T12:06:10.926670 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ee'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68ec')]}], "ordered"=>true}
6674
+ D, [2016-10-17T12:06:10.927004 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000279s
6675
+ D, [2016-10-17T12:06:10.927517 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ec')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68ee')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6676
+ D, [2016-10-17T12:06:10.928158 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00059s
6677
+ D, [2016-10-17T12:06:10.928727 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6678
+ D, [2016-10-17T12:06:10.929099 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000321s
6679
+ D, [2016-10-17T12:06:10.929901 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ed'), BSON::ObjectId('5804e8e26fc1414f383f68ee')]}}}
6680
+ D, [2016-10-17T12:06:10.930251 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029299999999999997s
6681
+ D, [2016-10-17T12:06:10.931117 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6682
+ D, [2016-10-17T12:06:10.931500 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00032100000000000005s
6683
+ D, [2016-10-17T12:06:10.931697 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6684
+ D, [2016-10-17T12:06:10.932193 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000441s
6685
+ D, [2016-10-17T12:06:10.932426 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6686
+ D, [2016-10-17T12:06:10.944578 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012053s
6687
+ D, [2016-10-17T12:06:10.945919 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68ef'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6688
+ D, [2016-10-17T12:06:10.969395 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023378000000000003s
6689
+ D, [2016-10-17T12:06:10.970909 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e26fc1414f383f68f0'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68ef')]}], "ordered"=>true}
6690
+ D, [2016-10-17T12:06:11.000488 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02952s
6691
+ D, [2016-10-17T12:06:11.001599 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ef')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e26fc1414f383f68f0')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6692
+ D, [2016-10-17T12:06:11.002357 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.0006609999999999999s
6693
+ D, [2016-10-17T12:06:11.003527 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f1'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e26fc1414f383f68ef')]}], "ordered"=>true}
6694
+ D, [2016-10-17T12:06:11.004014 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00041000000000000005s
6695
+ D, [2016-10-17T12:06:11.005028 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68ef')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68f1')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6696
+ D, [2016-10-17T12:06:11.005617 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000514s
6697
+ D, [2016-10-17T12:06:11.006501 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6698
+ D, [2016-10-17T12:06:11.007039 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00046300000000000003s
6699
+ D, [2016-10-17T12:06:11.008342 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e26fc1414f383f68f0'), BSON::ObjectId('5804e8e36fc1414f383f68f1')]}}}
6700
+ D, [2016-10-17T12:06:11.008861 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000433s
6701
+ D, [2016-10-17T12:06:11.010323 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6702
+ D, [2016-10-17T12:06:11.010883 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000464s
6703
+ D, [2016-10-17T12:06:11.011155 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6704
+ D, [2016-10-17T12:06:11.012504 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0012569999999999999s
6705
+ D, [2016-10-17T12:06:11.012724 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6706
+ D, [2016-10-17T12:06:11.026503 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013629s
6707
+ D, [2016-10-17T12:06:11.028422 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f2'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
6708
+ D, [2016-10-17T12:06:11.125467 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.096883s
6709
+ D, [2016-10-17T12:06:11.126859 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f3'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68f2')]}], "ordered"=>true}
6710
+ D, [2016-10-17T12:06:11.271404 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.14414300000000002s
6711
+ D, [2016-10-17T12:06:11.272574 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f2')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68f3')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6712
+ D, [2016-10-17T12:06:11.296047 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.023347999999999997s
6713
+ D, [2016-10-17T12:06:11.297137 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f4'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68f2')]}], "ordered"=>true}
6714
+ D, [2016-10-17T12:06:11.297589 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00037400000000000004s
6715
+ D, [2016-10-17T12:06:11.298282 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f2')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68f4')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6716
+ D, [2016-10-17T12:06:11.298733 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000393s
6717
+ D, [2016-10-17T12:06:11.299400 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6718
+ D, [2016-10-17T12:06:11.299803 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000344s
6719
+ D, [2016-10-17T12:06:11.300595 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f3'), BSON::ObjectId('5804e8e36fc1414f383f68f4')]}}}
6720
+ D, [2016-10-17T12:06:11.301080 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000432s
6721
+ D, [2016-10-17T12:06:11.302187 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6722
+ D, [2016-10-17T12:06:11.302656 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000395s
6723
+ D, [2016-10-17T12:06:11.302878 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6724
+ D, [2016-10-17T12:06:11.312200 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.009229999999999999s
6725
+ D, [2016-10-17T12:06:11.312502 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6726
+ D, [2016-10-17T12:06:11.335759 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.02315s
6727
+ D, [2016-10-17T12:06:11.336897 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f5'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6728
+ D, [2016-10-17T12:06:11.363358 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.026379s
6729
+ D, [2016-10-17T12:06:11.364811 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f6'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68f5')]}], "ordered"=>true}
6730
+ D, [2016-10-17T12:06:11.384328 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018808000000000002s
6731
+ D, [2016-10-17T12:06:11.385232 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f5')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68f6')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6732
+ D, [2016-10-17T12:06:11.385787 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000501s
6733
+ D, [2016-10-17T12:06:11.386644 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f7'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68f5')]}], "ordered"=>true}
6734
+ D, [2016-10-17T12:06:11.387091 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000363s
6735
+ D, [2016-10-17T12:06:11.387662 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f5')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68f7')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6736
+ D, [2016-10-17T12:06:11.388032 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000321s
6737
+ D, [2016-10-17T12:06:11.388669 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6738
+ D, [2016-10-17T12:06:11.389050 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000331s
6739
+ D, [2016-10-17T12:06:11.389764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f6'), BSON::ObjectId('5804e8e36fc1414f383f68f7')]}}}
6740
+ D, [2016-10-17T12:06:11.390082 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00026599999999999996s
6741
+ D, [2016-10-17T12:06:11.390815 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6742
+ D, [2016-10-17T12:06:11.391217 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000339s
6743
+ D, [2016-10-17T12:06:11.391405 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6744
+ D, [2016-10-17T12:06:11.391877 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000417s
6745
+ D, [2016-10-17T12:06:11.392049 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6746
+ D, [2016-10-17T12:06:11.402799 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010643s
6747
+ D, [2016-10-17T12:06:11.403920 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f8'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn8", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6748
+ D, [2016-10-17T12:06:11.423423 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019404s
6749
+ D, [2016-10-17T12:06:11.424882 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68f9'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68f8')]}], "ordered"=>true}
6750
+ D, [2016-10-17T12:06:11.444244 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019268999999999998s
6751
+ D, [2016-10-17T12:06:11.445202 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f8')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68f9')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6752
+ D, [2016-10-17T12:06:11.446799 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000639s
6753
+ D, [2016-10-17T12:06:11.447913 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fa'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68f8')]}], "ordered"=>true}
6754
+ D, [2016-10-17T12:06:11.448291 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00031999999999999997s
6755
+ D, [2016-10-17T12:06:11.448876 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f8')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68fa')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6756
+ D, [2016-10-17T12:06:11.449321 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000388s
6757
+ D, [2016-10-17T12:06:11.450004 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6758
+ D, [2016-10-17T12:06:11.450388 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000332s
6759
+ D, [2016-10-17T12:06:11.451156 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68f9'), BSON::ObjectId('5804e8e36fc1414f383f68fa')]}}}
6760
+ D, [2016-10-17T12:06:11.451530 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00032500000000000004s
6761
+ D, [2016-10-17T12:06:11.452634 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6762
+ D, [2016-10-17T12:06:11.453043 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00034700000000000003s
6763
+ D, [2016-10-17T12:06:11.453345 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6764
+ D, [2016-10-17T12:06:11.453814 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000413s
6765
+ D, [2016-10-17T12:06:11.453946 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6766
+ D, [2016-10-17T12:06:11.464364 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010326s
6767
+ D, [2016-10-17T12:06:11.465584 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fb'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6768
+ D, [2016-10-17T12:06:11.503088 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.037405s
6769
+ D, [2016-10-17T12:06:11.504701 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fc'), "name"=>"one", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68fb')]}], "ordered"=>true}
6770
+ D, [2016-10-17T12:06:11.525616 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020818000000000003s
6771
+ D, [2016-10-17T12:06:11.526456 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68fb')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68fc')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6772
+ D, [2016-10-17T12:06:11.527675 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000539s
6773
+ D, [2016-10-17T12:06:11.528474 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"preferences", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fd'), "name"=>"two", "person_ids"=>[BSON::ObjectId('5804e8e36fc1414f383f68fb')]}], "ordered"=>true}
6774
+ D, [2016-10-17T12:06:11.528837 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030599999999999996s
6775
+ D, [2016-10-17T12:06:11.529424 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"$and"=>[{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68fb')]}}]}, "u"=>{"$addToSet"=>{"preference_ids"=>BSON::ObjectId('5804e8e36fc1414f383f68fd')}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6776
+ D, [2016-10-17T12:06:11.529968 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000483s
6777
+ D, [2016-10-17T12:06:11.530984 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6778
+ D, [2016-10-17T12:06:11.531451 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000397s
6779
+ D, [2016-10-17T12:06:11.532273 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"preferences", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68fc'), BSON::ObjectId('5804e8e36fc1414f383f68fd')]}}}
6780
+ D, [2016-10-17T12:06:11.532655 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000325s
6781
+ D, [2016-10-17T12:06:11.533829 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6782
+ D, [2016-10-17T12:06:11.534167 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000282s
6783
+ D, [2016-10-17T12:06:11.534349 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6784
+ D, [2016-10-17T12:06:11.534799 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000403s
6785
+ D, [2016-10-17T12:06:11.534973 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"preferences"}
6786
+ D, [2016-10-17T12:06:11.552478 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.017403s
6787
+ D, [2016-10-17T12:06:11.553666 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fe'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6788
+ D, [2016-10-17T12:06:11.577830 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024073999999999998s
6789
+ D, [2016-10-17T12:06:11.579295 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68ff'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fe')}], "ordered"=>true}
6790
+ D, [2016-10-17T12:06:11.598606 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019152000000000002s
6791
+ D, [2016-10-17T12:06:11.599401 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fe')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6792
+ D, [2016-10-17T12:06:11.599837 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000385s
6793
+ D, [2016-10-17T12:06:11.600574 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6900'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fe')}], "ordered"=>true}
6794
+ D, [2016-10-17T12:06:11.601555 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00030000000000000003s
6795
+ D, [2016-10-17T12:06:11.601995 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f68fe')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6796
+ D, [2016-10-17T12:06:11.602326 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000278s
6797
+ D, [2016-10-17T12:06:11.602987 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6798
+ D, [2016-10-17T12:06:11.603471 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00042500000000000003s
6799
+ D, [2016-10-17T12:06:11.604143 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f68fe')]}}}
6800
+ D, [2016-10-17T12:06:11.604540 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000343s
6801
+ D, [2016-10-17T12:06:11.605252 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6802
+ D, [2016-10-17T12:06:11.605584 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000281s
6803
+ D, [2016-10-17T12:06:11.605793 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6804
+ D, [2016-10-17T12:06:11.606256 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00042s
6805
+ D, [2016-10-17T12:06:11.606377 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6806
+ D, [2016-10-17T12:06:11.616516 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.010043999999999999s
6807
+ D, [2016-10-17T12:06:11.617764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6901'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6808
+ D, [2016-10-17T12:06:11.637885 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020023s
6809
+ D, [2016-10-17T12:06:11.639215 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6902'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f6901')}], "ordered"=>true}
6810
+ D, [2016-10-17T12:06:11.658503 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.019198s
6811
+ D, [2016-10-17T12:06:11.659316 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6901')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6812
+ D, [2016-10-17T12:06:11.659803 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043000000000000004s
6813
+ D, [2016-10-17T12:06:11.660634 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6903'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f6901')}], "ordered"=>true}
6814
+ D, [2016-10-17T12:06:11.661023 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000339s
6815
+ D, [2016-10-17T12:06:11.661435 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6901')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6816
+ D, [2016-10-17T12:06:11.662530 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000373s
6817
+ D, [2016-10-17T12:06:11.663298 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6818
+ D, [2016-10-17T12:06:11.663946 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0005690000000000001s
6819
+ D, [2016-10-17T12:06:11.664918 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f6901')]}}}
6820
+ D, [2016-10-17T12:06:11.665367 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037999999999999997s
6821
+ D, [2016-10-17T12:06:11.666338 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6822
+ D, [2016-10-17T12:06:11.666675 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000281s
6823
+ D, [2016-10-17T12:06:11.666918 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6824
+ D, [2016-10-17T12:06:11.667402 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00044s
6825
+ D, [2016-10-17T12:06:11.667530 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6826
+ D, [2016-10-17T12:06:11.679609 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011985s
6827
+ D, [2016-10-17T12:06:11.680940 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6904'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6828
+ D, [2016-10-17T12:06:11.701595 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020537s
6829
+ D, [2016-10-17T12:06:11.702975 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6905'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f6904')}], "ordered"=>true}
6830
+ D, [2016-10-17T12:06:11.735004 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.031931999999999995s
6831
+ D, [2016-10-17T12:06:11.735803 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6904')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6832
+ D, [2016-10-17T12:06:11.736267 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000379s
6833
+ D, [2016-10-17T12:06:11.737007 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6906'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f6904')}], "ordered"=>true}
6834
+ D, [2016-10-17T12:06:11.737345 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000288s
6835
+ D, [2016-10-17T12:06:11.737751 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6904')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6836
+ D, [2016-10-17T12:06:11.738083 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000279s
6837
+ D, [2016-10-17T12:06:11.738671 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6838
+ D, [2016-10-17T12:06:11.739058 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00033299999999999996s
6839
+ D, [2016-10-17T12:06:11.739669 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f6904')]}}}
6840
+ D, [2016-10-17T12:06:11.740604 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000285s
6841
+ D, [2016-10-17T12:06:11.741594 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6842
+ D, [2016-10-17T12:06:11.741973 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000317s
6843
+ D, [2016-10-17T12:06:11.742160 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6844
+ D, [2016-10-17T12:06:11.742647 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000438s
6845
+ D, [2016-10-17T12:06:11.742789 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6846
+ D, [2016-10-17T12:06:11.753976 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011090000000000001s
6847
+ D, [2016-10-17T12:06:11.755149 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6907'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6848
+ D, [2016-10-17T12:06:11.777200 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.021953s
6849
+ D, [2016-10-17T12:06:11.778608 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6908'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f6907')}], "ordered"=>true}
6850
+ D, [2016-10-17T12:06:11.799114 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020411000000000002s
6851
+ D, [2016-10-17T12:06:11.799882 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6907')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6852
+ D, [2016-10-17T12:06:11.800321 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000379s
6853
+ D, [2016-10-17T12:06:11.801120 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6909'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f6907')}], "ordered"=>true}
6854
+ D, [2016-10-17T12:06:11.801492 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000316s
6855
+ D, [2016-10-17T12:06:11.801933 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f6907')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6856
+ D, [2016-10-17T12:06:11.802314 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00032900000000000003s
6857
+ D, [2016-10-17T12:06:11.802953 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6858
+ D, [2016-10-17T12:06:11.803392 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000374s
6859
+ D, [2016-10-17T12:06:11.804222 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f6907')]}}}
6860
+ D, [2016-10-17T12:06:11.804633 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000333s
6861
+ D, [2016-10-17T12:06:11.805473 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6862
+ D, [2016-10-17T12:06:11.805852 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000295s
6863
+ D, [2016-10-17T12:06:11.806658 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6864
+ D, [2016-10-17T12:06:11.807143 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000432s
6865
+ D, [2016-10-17T12:06:11.807286 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6866
+ D, [2016-10-17T12:06:11.820863 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.013464s
6867
+ D, [2016-10-17T12:06:11.822117 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690a'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6868
+ D, [2016-10-17T12:06:11.846116 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023910999999999998s
6869
+ D, [2016-10-17T12:06:11.847899 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690b'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f690a')}], "ordered"=>true}
6870
+ D, [2016-10-17T12:06:11.868266 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020215999999999998s
6871
+ D, [2016-10-17T12:06:11.869034 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6872
+ D, [2016-10-17T12:06:11.869464 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00038s
6873
+ D, [2016-10-17T12:06:11.870230 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690c'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f690a')}], "ordered"=>true}
6874
+ D, [2016-10-17T12:06:11.870564 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000281s
6875
+ D, [2016-10-17T12:06:11.870945 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690a')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6876
+ D, [2016-10-17T12:06:11.871281 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000281s
6877
+ D, [2016-10-17T12:06:11.871897 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}, "limit"=>1, "singleBatch"=>true}
6878
+ D, [2016-10-17T12:06:11.872281 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000333s
6879
+ D, [2016-10-17T12:06:11.872924 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f690a')]}}}
6880
+ D, [2016-10-17T12:06:11.873249 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000268s
6881
+ D, [2016-10-17T12:06:11.873660 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6882
+ D, [2016-10-17T12:06:11.873963 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00025299999999999997s
6883
+ D, [2016-10-17T12:06:11.874703 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6884
+ D, [2016-10-17T12:06:11.875082 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000313s
6885
+ D, [2016-10-17T12:06:11.875299 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6886
+ D, [2016-10-17T12:06:11.876454 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.0004930000000000001s
6887
+ D, [2016-10-17T12:06:11.876588 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6888
+ D, [2016-10-17T12:06:11.888127 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.011431s
6889
+ D, [2016-10-17T12:06:11.889535 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690d'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
6890
+ D, [2016-10-17T12:06:11.909910 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020229999999999998s
6891
+ D, [2016-10-17T12:06:11.911328 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690e'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f690d')}], "ordered"=>true}
6892
+ D, [2016-10-17T12:06:11.937128 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02571s
6893
+ D, [2016-10-17T12:06:11.938099 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690d')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6894
+ D, [2016-10-17T12:06:11.938658 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000479s
6895
+ D, [2016-10-17T12:06:11.939672 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690f'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e36fc1414f383f690d')}], "ordered"=>true}
6896
+ D, [2016-10-17T12:06:11.940174 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000418s
6897
+ D, [2016-10-17T12:06:11.941019 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e36fc1414f383f690d')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6898
+ D, [2016-10-17T12:06:11.941514 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000418s
6899
+ D, [2016-10-17T12:06:11.942471 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6900
+ D, [2016-10-17T12:06:11.943058 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000497s
6901
+ D, [2016-10-17T12:06:11.943851 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e36fc1414f383f690d')]}}}
6902
+ D, [2016-10-17T12:06:11.944224 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000309s
6903
+ D, [2016-10-17T12:06:11.945169 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6904
+ D, [2016-10-17T12:06:11.945661 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00040500000000000003s
6905
+ D, [2016-10-17T12:06:11.946010 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6906
+ D, [2016-10-17T12:06:11.946811 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000695s
6907
+ D, [2016-10-17T12:06:11.947083 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6908
+ D, [2016-10-17T12:06:12.025538 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.078335s
6909
+ D, [2016-10-17T12:06:12.027097 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6910'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
6910
+ D, [2016-10-17T12:06:12.124930 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.097692s
6911
+ D, [2016-10-17T12:06:12.127265 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6911'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6910')}], "ordered"=>true}
6912
+ D, [2016-10-17T12:06:12.147861 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020464s
6913
+ D, [2016-10-17T12:06:12.148810 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6910')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6914
+ D, [2016-10-17T12:06:12.149557 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000636s
6915
+ D, [2016-10-17T12:06:12.150909 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6912'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6910')}], "ordered"=>true}
6916
+ D, [2016-10-17T12:06:12.151596 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000559s
6917
+ D, [2016-10-17T12:06:12.152457 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6910')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6918
+ D, [2016-10-17T12:06:12.153034 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000509s
6919
+ D, [2016-10-17T12:06:12.154106 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>-1}, "limit"=>1, "singleBatch"=>true}
6920
+ D, [2016-10-17T12:06:12.154825 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.0005930000000000001s
6921
+ D, [2016-10-17T12:06:12.155970 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6910')]}}}
6922
+ D, [2016-10-17T12:06:12.156453 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000373s
6923
+ D, [2016-10-17T12:06:12.156969 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6924
+ D, [2016-10-17T12:06:12.157293 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000274s
6925
+ D, [2016-10-17T12:06:12.158060 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6926
+ D, [2016-10-17T12:06:12.158508 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000375s
6927
+ D, [2016-10-17T12:06:12.158771 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6928
+ D, [2016-10-17T12:06:12.160496 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.001615s
6929
+ D, [2016-10-17T12:06:12.160755 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6930
+ D, [2016-10-17T12:06:12.187634 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.026789s
6931
+ D, [2016-10-17T12:06:12.188776 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6913'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn7", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6932
+ D, [2016-10-17T12:06:12.221178 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0323s
6933
+ D, [2016-10-17T12:06:12.222514 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6914'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6913')}], "ordered"=>true}
6934
+ D, [2016-10-17T12:06:12.247883 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02528s
6935
+ D, [2016-10-17T12:06:12.248764 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6913')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6936
+ D, [2016-10-17T12:06:12.249290 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00043900000000000005s
6937
+ D, [2016-10-17T12:06:12.250266 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6915'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6913')}], "ordered"=>true}
6938
+ D, [2016-10-17T12:06:12.250680 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034100000000000005s
6939
+ D, [2016-10-17T12:06:12.251219 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6913')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6940
+ D, [2016-10-17T12:06:12.251602 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000328s
6941
+ D, [2016-10-17T12:06:12.252653 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6916'), "age"=>100, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00...
6942
+ D, [2016-10-17T12:06:12.253061 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000343s
6943
+ D, [2016-10-17T12:06:12.254105 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6917'), "title"=>"three", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6916')}], "ordered"=>true}
6944
+ D, [2016-10-17T12:06:12.254509 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00034199999999999996s
6945
+ D, [2016-10-17T12:06:12.254949 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6916')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
6946
+ D, [2016-10-17T12:06:12.255384 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00036700000000000003s
6947
+ D, [2016-10-17T12:06:12.256236 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "limit"=>1, "sort"=>{"age"=>1}}
6948
+ D, [2016-10-17T12:06:12.256688 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000398s
6949
+ D, [2016-10-17T12:06:12.257328 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6913')]}}}
6950
+ D, [2016-10-17T12:06:12.257685 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000309s
6951
+ D, [2016-10-17T12:06:12.258525 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6952
+ D, [2016-10-17T12:06:12.258914 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000333s
6953
+ D, [2016-10-17T12:06:12.259687 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6954
+ D, [2016-10-17T12:06:12.260180 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000449s
6955
+ D, [2016-10-17T12:06:12.260301 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
6956
+ D, [2016-10-17T12:06:12.276180 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.015787s
6957
+ D, [2016-10-17T12:06:12.277368 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6918'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn0", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6958
+ D, [2016-10-17T12:06:12.297298 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.01984s
6959
+ D, [2016-10-17T12:06:12.299235 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6918')}, "limit"=>1, "singleBatch"=>true}
6960
+ D, [2016-10-17T12:06:12.299748 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000389s
6961
+ D, [2016-10-17T12:06:12.300916 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6919'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6918')}], "ordered"=>true}
6962
+ D, [2016-10-17T12:06:12.325540 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.024440999999999997s
6963
+ D, [2016-10-17T12:06:12.327301 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6919')}, "limit"=>1}], "ordered"=>true}
6964
+ D, [2016-10-17T12:06:12.332954 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.00556s
6965
+ D, [2016-10-17T12:06:12.333970 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691a'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6918')}], "ordered"=>true}
6966
+ D, [2016-10-17T12:06:12.334429 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000384s
6967
+ D, [2016-10-17T12:06:12.335729 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
6968
+ D, [2016-10-17T12:06:12.336160 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000372s
6969
+ D, [2016-10-17T12:06:12.336954 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6918')]}}}
6970
+ D, [2016-10-17T12:06:12.337234 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00023s
6971
+ D, [2016-10-17T12:06:12.337995 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6972
+ D, [2016-10-17T12:06:12.338307 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000261s
6973
+ D, [2016-10-17T12:06:12.338480 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
6974
+ D, [2016-10-17T12:06:12.338975 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000444s
6975
+ D, [2016-10-17T12:06:12.339096 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
6976
+ D, [2016-10-17T12:06:12.351752 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.012563000000000001s
6977
+ D, [2016-10-17T12:06:12.352958 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691b'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn10", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:...
6978
+ D, [2016-10-17T12:06:12.387772 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.034709s
6979
+ D, [2016-10-17T12:06:12.389040 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f691b')}, "limit"=>1, "singleBatch"=>true}
6980
+ D, [2016-10-17T12:06:12.389420 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00032900000000000003s
6981
+ D, [2016-10-17T12:06:12.390139 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691c'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f691b')}], "ordered"=>true}
6982
+ D, [2016-10-17T12:06:12.408917 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018668s
6983
+ D, [2016-10-17T12:06:12.410377 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691c')}, "limit"=>1}], "ordered"=>true}
6984
+ D, [2016-10-17T12:06:12.410787 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.00035400000000000004s
6985
+ D, [2016-10-17T12:06:12.411442 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691d'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f691b')}], "ordered"=>true}
6986
+ D, [2016-10-17T12:06:12.411761 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000267s
6987
+ D, [2016-10-17T12:06:12.412926 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691e'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
6988
+ D, [2016-10-17T12:06:12.413292 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000313s
6989
+ D, [2016-10-17T12:06:12.414400 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f691e')}, "limit"=>1, "singleBatch"=>true}
6990
+ D, [2016-10-17T12:06:12.414907 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000364s
6991
+ D, [2016-10-17T12:06:12.415989 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691f'), "high_score"=>500, "score"=>0, "name"=>"Skyrim", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f691e')}], "ordered"=>true}
6992
+ D, [2016-10-17T12:06:12.416510 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00042899999999999997s
6993
+ D, [2016-10-17T12:06:12.418271 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f691b')}, "limit"=>1, "sort"=>{"age"=>1}}
6994
+ D, [2016-10-17T12:06:12.418696 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000357s
6995
+ D, [2016-10-17T12:06:12.419439 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f691b')]}}}
6996
+ D, [2016-10-17T12:06:12.419788 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000296s
6997
+ D, [2016-10-17T12:06:12.420613 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
6998
+ D, [2016-10-17T12:06:12.421656 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000361s
6999
+ D, [2016-10-17T12:06:12.421852 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
7000
+ D, [2016-10-17T12:06:12.422410 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000504s
7001
+ D, [2016-10-17T12:06:12.422542 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
7002
+ D, [2016-10-17T12:06:12.441943 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019309s
7003
+ D, [2016-10-17T12:06:12.443064 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6920'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn4", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
7004
+ D, [2016-10-17T12:06:12.469089 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025939s
7005
+ D, [2016-10-17T12:06:12.470311 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6920')}, "limit"=>1, "singleBatch"=>true}
7006
+ D, [2016-10-17T12:06:12.470654 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000292s
7007
+ D, [2016-10-17T12:06:12.471521 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6921'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6920')}], "ordered"=>true}
7008
+ D, [2016-10-17T12:06:12.490463 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.018845999999999998s
7009
+ D, [2016-10-17T12:06:12.492044 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6922'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn6", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
7010
+ D, [2016-10-17T12:06:12.492460 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.00036300000000000004s
7011
+ D, [2016-10-17T12:06:12.493349 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6922')}, "limit"=>1, "singleBatch"=>true}
7012
+ D, [2016-10-17T12:06:12.493692 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00029s
7013
+ D, [2016-10-17T12:06:12.494363 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6923'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6922')}], "ordered"=>true}
7014
+ D, [2016-10-17T12:06:12.494657 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000244s
7015
+ D, [2016-10-17T12:06:12.495763 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{}}
7016
+ D, [2016-10-17T12:06:12.496101 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000272s
7017
+ D, [2016-10-17T12:06:12.496829 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6920'), BSON::ObjectId('5804e8e46fc1414f383f6922')]}}}
7018
+ D, [2016-10-17T12:06:12.497260 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000368s
7019
+ D, [2016-10-17T12:06:12.497690 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{}}
7020
+ D, [2016-10-17T12:06:12.498630 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000325s
7021
+ D, [2016-10-17T12:06:12.499598 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
7022
+ D, [2016-10-17T12:06:12.500208 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000524s
7023
+ D, [2016-10-17T12:06:12.500491 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
7024
+ D, [2016-10-17T12:06:12.501064 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000517s
7025
+ D, [2016-10-17T12:06:12.501241 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
7026
+ D, [2016-10-17T12:06:12.522222 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.020884999999999997s
7027
+ D, [2016-10-17T12:06:12.523406 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6924'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn3", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
7028
+ D, [2016-10-17T12:06:12.546739 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.023229s
7029
+ D, [2016-10-17T12:06:12.548147 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6924')}, "limit"=>1, "singleBatch"=>true}
7030
+ D, [2016-10-17T12:06:12.548499 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000295s
7031
+ D, [2016-10-17T12:06:12.549522 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6925'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6924')}], "ordered"=>true}
7032
+ D, [2016-10-17T12:06:12.582329 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.032625999999999995s
7033
+ D, [2016-10-17T12:06:12.584086 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6926'), "age"=>2, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn2", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
7034
+ D, [2016-10-17T12:06:12.584692 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.0005009999999999999s
7035
+ D, [2016-10-17T12:06:12.585760 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6926')}, "limit"=>1, "singleBatch"=>true}
7036
+ D, [2016-10-17T12:06:12.586186 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00036s
7037
+ D, [2016-10-17T12:06:12.586965 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6927'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6926')}], "ordered"=>true}
7038
+ D, [2016-10-17T12:06:12.587445 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000424s
7039
+ D, [2016-10-17T12:06:12.588847 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6925')}, "limit"=>1, "sort"=>{"_id"=>1}}
7040
+ D, [2016-10-17T12:06:12.589204 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000299s
7041
+ D, [2016-10-17T12:06:12.589856 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6924')]}}}
7042
+ D, [2016-10-17T12:06:12.590978 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00041999999999999996s
7043
+ D, [2016-10-17T12:06:12.591851 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
7044
+ D, [2016-10-17T12:06:12.592226 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00032s
7045
+ D, [2016-10-17T12:06:12.592417 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
7046
+ D, [2016-10-17T12:06:12.592892 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.00041999999999999996s
7047
+ D, [2016-10-17T12:06:12.593011 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
7048
+ D, [2016-10-17T12:06:12.611535 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.018425999999999998s
7049
+ D, [2016-10-17T12:06:12.612642 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"people", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928'), "age"=>1, "map_with_default"=>{}, "_type"=>"Person", "username"=>"arthurnn1", "pets"=>false, "blood_alcohol_content"=>0.0, "last_drink_taken_at"=>2016-10-16 00:00:0...
7050
+ D, [2016-10-17T12:06:12.638546 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.025807s
7051
+ D, [2016-10-17T12:06:12.640058 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6929'), "title"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}], "ordered"=>true}
7052
+ D, [2016-10-17T12:06:12.660417 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.020263000000000003s
7053
+ D, [2016-10-17T12:06:12.661145 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
7054
+ D, [2016-10-17T12:06:12.661604 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.00041000000000000005s
7055
+ D, [2016-10-17T12:06:12.662342 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"posts", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f692a'), "title"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}], "ordered"=>true}
7056
+ D, [2016-10-17T12:06:12.662697 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000303s
7057
+ D, [2016-10-17T12:06:12.663075 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | STARTED | {"update"=>"people", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}, "u"=>{"$inc"=>{"posts_count"=>1}}, "multi"=>true, "upsert"=>false}], "ordered"=>true}
7058
+ D, [2016-10-17T12:06:12.663464 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.update | SUCCEEDED | 0.000306s
7059
+ D, [2016-10-17T12:06:12.664225 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}, "limit"=>1, "singleBatch"=>true}
7060
+ D, [2016-10-17T12:06:12.664583 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000301s
7061
+ D, [2016-10-17T12:06:12.665280 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f692b'), "high_score"=>500, "score"=>0, "name"=>"one", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}], "ordered"=>true}
7062
+ D, [2016-10-17T12:06:12.686072 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.02069s
7063
+ D, [2016-10-17T12:06:12.687519 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | STARTED | {"delete"=>"games", "deletes"=>[{"q"=>{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f692b')}, "limit"=>1}], "ordered"=>true}
7064
+ D, [2016-10-17T12:06:12.688648 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.delete | SUCCEEDED | 0.000446s
7065
+ D, [2016-10-17T12:06:12.689687 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | STARTED | {"insert"=>"games", "documents"=>[{"_id"=>BSON::ObjectId('5804e8e46fc1414f383f692c'), "high_score"=>500, "score"=>0, "name"=>"two", "person_id"=>BSON::ObjectId('5804e8e46fc1414f383f6928')}], "ordered"=>true}
7066
+ D, [2016-10-17T12:06:12.690053 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.insert | SUCCEEDED | 0.000309s
7067
+ D, [2016-10-17T12:06:12.691266 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
7068
+ D, [2016-10-17T12:06:12.691696 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00037099999999999996s
7069
+ D, [2016-10-17T12:06:12.692482 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"posts", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6928')]}}}
7070
+ D, [2016-10-17T12:06:12.692830 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.00028s
7071
+ D, [2016-10-17T12:06:12.693521 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"games", "filter"=>{"person_id"=>{"$in"=>[BSON::ObjectId('5804e8e46fc1414f383f6928')]}}}
7072
+ D, [2016-10-17T12:06:12.693884 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000261s
7073
+ D, [2016-10-17T12:06:12.694308 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | STARTED | {"find"=>"people", "filter"=>{}, "sort"=>{"age"=>1}}
7074
+ D, [2016-10-17T12:06:12.694626 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.find | SUCCEEDED | 0.000268s
7075
+ D, [2016-10-17T12:06:12.695309 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
7076
+ D, [2016-10-17T12:06:12.695636 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.00027400000000000005s
7077
+ D, [2016-10-17T12:06:12.695840 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"people"}
7078
+ D, [2016-10-17T12:06:12.696319 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.000432s
7079
+ D, [2016-10-17T12:06:12.696439 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"games"}
7080
+ D, [2016-10-17T12:06:12.712521 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.015989s
7081
+ D, [2016-10-17T12:06:12.712760 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | STARTED | {"drop"=>"posts"}
7082
+ D, [2016-10-17T12:06:12.732745 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.drop | SUCCEEDED | 0.019896s
7083
+ D, [2016-10-17T12:06:12.733940 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
7084
+ D, [2016-10-17T12:06:12.734389 #85816] DEBUG -- : MONGODB | localhost:27017 | mongoid_test.listCollections | SUCCEEDED | 0.000373s