daengine 0.0.10.alpha → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/Gemfile +17 -17
  2. data/MIT-LICENSE +20 -20
  3. data/Rakefile +29 -29
  4. data/app/assets/javascripts/digital_assets.js +2 -2
  5. data/app/assets/stylesheets/digital_assets.css +4 -4
  6. data/app/controllers/digital_assets_controller.rb +76 -76
  7. data/app/helpers/digital_assets_helper.rb +2 -2
  8. data/app/views/digital_assets/_form.html.erb +17 -17
  9. data/app/views/digital_assets/edit.html.erb +6 -6
  10. data/app/views/digital_assets/index.html.erb +34 -34
  11. data/app/views/digital_assets/new.html.erb +5 -5
  12. data/app/views/digital_assets/search.html.erb +46 -46
  13. data/app/views/digital_assets/show.html.erb +58 -58
  14. data/config/routes.rb +8 -8
  15. data/lib/daengine.rb +43 -43
  16. data/lib/daengine/engine.rb +6 -6
  17. data/lib/daengine/version.rb +3 -3
  18. data/lib/tasks/daengine_tasks.rake +4 -4
  19. data/spec/controllers/digital_assets_controller_spec.rb +202 -202
  20. data/spec/dummy/README.rdoc +261 -261
  21. data/spec/dummy/Rakefile +7 -7
  22. data/spec/dummy/app/assets/javascripts/application.js +15 -15
  23. data/spec/dummy/app/assets/stylesheets/application.css +13 -13
  24. data/spec/dummy/app/controllers/application_controller.rb +3 -3
  25. data/spec/dummy/app/helpers/application_helper.rb +2 -2
  26. data/spec/dummy/app/views/layouts/application.html.erb +14 -14
  27. data/spec/dummy/config.ru +4 -4
  28. data/spec/dummy/config/application.rb +70 -70
  29. data/spec/dummy/config/boot.rb +9 -9
  30. data/spec/dummy/config/environment.rb +5 -5
  31. data/spec/dummy/config/environments/development.rb +37 -37
  32. data/spec/dummy/config/environments/production.rb +67 -67
  33. data/spec/dummy/config/environments/test.rb +37 -37
  34. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
  35. data/spec/dummy/config/initializers/inflections.rb +15 -15
  36. data/spec/dummy/config/initializers/mime_types.rb +5 -5
  37. data/spec/dummy/config/initializers/secret_token.rb +7 -7
  38. data/spec/dummy/config/initializers/session_store.rb +8 -8
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
  40. data/spec/dummy/config/locales/en.yml +5 -5
  41. data/spec/dummy/config/mongoid.yml +20 -20
  42. data/spec/dummy/config/routes.rb +58 -58
  43. data/spec/dummy/public/404.html +26 -26
  44. data/spec/dummy/public/422.html +26 -26
  45. data/spec/dummy/public/500.html +25 -25
  46. data/spec/dummy/script/rails +6 -6
  47. data/spec/lib/teamsite_metadata_parser_spec.rb +59 -59
  48. data/spec/spec_helper.rb +40 -40
  49. metadata +15 -20
  50. data/spec/dummy/log/development.log +0 -4
  51. data/spec/dummy/log/test.log +0 -435
@@ -1,25 +1,25 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>We're sorry, but something went wrong (500)</title>
5
- <style type="text/css">
6
- body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
- div.dialog {
8
- width: 25em;
9
- padding: 0 4em;
10
- margin: 4em auto 0 auto;
11
- border: 1px solid #ccc;
12
- border-right-color: #999;
13
- border-bottom-color: #999;
14
- }
15
- h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
- </style>
17
- </head>
18
-
19
- <body>
20
- <!-- This file lives in public/500.html -->
21
- <div class="dialog">
22
- <h1>We're sorry, but something went wrong.</h1>
23
- </div>
24
- </body>
25
- </html>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
@@ -1,6 +1,6 @@
1
- #!/usr/bin/env jruby.exe
2
- # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
-
4
- APP_PATH = File.expand_path('../../config/application', __FILE__)
5
- require File.expand_path('../../config/boot', __FILE__)
6
- require 'rails/commands'
1
+ #!/usr/bin/env jruby.exe
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -1,60 +1,60 @@
1
- require 'spec_helper'
2
-
3
- describe Daengine::TeamsiteMetadataParser do
4
-
5
- subject { Daengine::TeamsiteMetadataParser }
6
-
7
- context "#parse_tuple_file" do
8
- it 'reads xml' do
9
- # subject.logger= Logger.new(STDOUT)
10
- file = File.expand_path('./spec/mock_data/selective_new_package.xml')
11
- expect {
12
- subject.parse_tuple_file(open(file))
13
- }.to change(DigitalAsset, :count).by(2)
14
- entered = DigitalAsset.first
15
- entered.id.should == '163742d3-fbc2-4c99-8396-6eabe7464b8f'
16
- entered.documents[0].path.should == '/digitalAssets/SSC_Developer_Installation_Guide-163742d3-fbc2-4c99-8396-6eabe7464b8f.doc'
17
- entered.summary.should == 'first foo bar...'
18
- DigitalAsset.first.documents.count.should eq(2)
19
- end
20
- it 'can read a whole bulk deploy xml file quickly' do
21
- # subject.logger= Logger.new(STDOUT)
22
- file = File.expand_path('./spec/mock_data/bulk-ssc_deploy.xml')
23
- open_file = open(file, 'rb')
24
- expect {
25
- subject.parse_tuple_file(open_file)
26
- }.to change(DigitalAsset, :count).by(1588)
27
- end
28
- end
29
-
30
-
31
- context 'deleting paths' do
32
- before do
33
- file = File.expand_path('./spec/mock_data/selective_new_package.xml')
34
- subject.parse_tuple_file(open(file))
35
- end
36
- it 'deletes paths that are no-longer in the tuples for a package' do
37
- file = File.expand_path('./spec/mock_data/selective_path_delete_from_package.xml')
38
- DigitalAsset.find('163742d3-fbc2-4c99-8396-6eabe7464b8f').documents.should have(2).items
39
- expect {
40
- subject.parse_tuple_file(open(file))
41
- }.to change(DigitalAsset, :count).by(0)
42
- DigitalAsset.find('163742d3-fbc2-4c99-8396-6eabe7464b8f').documents.should have(1).item
43
- end
44
- end
45
-
46
- context 'remove unpublished documents from mongo' do
47
- before do
48
- file = File.expand_path('./spec/mock_data/selective-ssc_2012_05_18_13_48_03_publish.xml')
49
- subject.parse_tuple_file(open(file))
50
- end
51
- it 'removes package records from mongo that are in unpublished state' do
52
- DigitalAsset.find('11570991-9887-46df-8c47-d0870e6b5008').documents.should have(1).item
53
- file = File.expand_path('./spec/mock_data/selective-ssc_2012_05_18_13_56_18_unpublish.xml')
54
- expect {
55
- subject.parse_tuple_file(open(file))
56
- }.to change(DigitalAsset, :count).by(-1)
57
- end
58
- end
59
-
1
+ require 'spec_helper'
2
+
3
+ describe Daengine::TeamsiteMetadataParser do
4
+
5
+ subject { Daengine::TeamsiteMetadataParser }
6
+
7
+ context "#parse_tuple_file" do
8
+ it 'reads xml' do
9
+ # subject.logger= Logger.new(STDOUT)
10
+ file = File.expand_path('./spec/mock_data/selective_new_package.xml')
11
+ expect {
12
+ subject.parse_tuple_file(open(file))
13
+ }.to change(DigitalAsset, :count).by(2)
14
+ entered = DigitalAsset.first
15
+ entered.id.should == '163742d3-fbc2-4c99-8396-6eabe7464b8f'
16
+ entered.documents[0].path.should == '/digitalAssets/SSC_Developer_Installation_Guide-163742d3-fbc2-4c99-8396-6eabe7464b8f.doc'
17
+ entered.summary.should == 'first foo bar...'
18
+ DigitalAsset.first.documents.count.should eq(2)
19
+ end
20
+ it 'can read a whole bulk deploy xml file quickly' do
21
+ # subject.logger= Logger.new(STDOUT)
22
+ file = File.expand_path('./spec/mock_data/bulk-ssc_deploy.xml')
23
+ open_file = open(file, 'rb')
24
+ expect {
25
+ subject.parse_tuple_file(open_file)
26
+ }.to change(DigitalAsset, :count).by(1588)
27
+ end
28
+ end
29
+
30
+
31
+ context 'deleting paths' do
32
+ before do
33
+ file = File.expand_path('./spec/mock_data/selective_new_package.xml')
34
+ subject.parse_tuple_file(open(file))
35
+ end
36
+ it 'deletes paths that are no-longer in the tuples for a package' do
37
+ file = File.expand_path('./spec/mock_data/selective_path_delete_from_package.xml')
38
+ DigitalAsset.find('163742d3-fbc2-4c99-8396-6eabe7464b8f').documents.should have(2).items
39
+ expect {
40
+ subject.parse_tuple_file(open(file))
41
+ }.to change(DigitalAsset, :count).by(0)
42
+ DigitalAsset.find('163742d3-fbc2-4c99-8396-6eabe7464b8f').documents.should have(1).item
43
+ end
44
+ end
45
+
46
+ context 'remove unpublished documents from mongo' do
47
+ before do
48
+ file = File.expand_path('./spec/mock_data/selective-ssc_2012_05_18_13_48_03_publish.xml')
49
+ subject.parse_tuple_file(open(file))
50
+ end
51
+ it 'removes package records from mongo that are in unpublished state' do
52
+ DigitalAsset.find('11570991-9887-46df-8c47-d0870e6b5008').documents.should have(1).item
53
+ file = File.expand_path('./spec/mock_data/selective-ssc_2012_05_18_13_56_18_unpublish.xml')
54
+ expect {
55
+ subject.parse_tuple_file(open(file))
56
+ }.to change(DigitalAsset, :count).by(-1)
57
+ end
58
+ end
59
+
60
60
  end
data/spec/spec_helper.rb CHANGED
@@ -1,40 +1,40 @@
1
- # This file is copied to spec/ when you run 'rails generate rspec:install'
2
- ENV["RAILS_ENV"] ||= 'test'
3
- # require File.expand_path("../../config/environment", __FILE__)
4
- require File.expand_path("../../spec/dummy/config/environment", __FILE__)
5
- require 'rspec/rails'
6
- require 'factory_girl'
7
- # require 'rspec/autorun'
8
-
9
- # Requires supporting ruby files with custom matchers and macros, etc,
10
- # in spec/support/ and its subdirectories.
11
- Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
12
-
13
- require File.expand_path('../factories.rb', __FILE__)
14
-
15
- RSpec.configure do |config|
16
- # ## Mock Framework
17
- #
18
- # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
19
- #
20
- # config.mock_with :mocha
21
- # config.mock_with :flexmock
22
- # config.mock_with :rr
23
-
24
- # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
25
- # config.fixture_path = "#{::Rails.root}/spec/fixtures"
26
-
27
- # If you're not using ActiveRecord, or you'd prefer not to run each of your
28
- # examples within a transaction, remove the following line or assign false
29
- # instead of true.
30
- # config.use_transactional_fixtures = true
31
-
32
- config.before(:each) do
33
- Mongoid.purge!
34
- end
35
-
36
- # If true, the base class of anonymous controllers will be inferred
37
- # automatically. This will be the default behavior in future versions of
38
- # rspec-rails.
39
- config.infer_base_class_for_anonymous_controllers = false
40
- end
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV["RAILS_ENV"] ||= 'test'
3
+ # require File.expand_path("../../config/environment", __FILE__)
4
+ require File.expand_path("../../spec/dummy/config/environment", __FILE__)
5
+ require 'rspec/rails'
6
+ require 'factory_girl'
7
+ # require 'rspec/autorun'
8
+
9
+ # Requires supporting ruby files with custom matchers and macros, etc,
10
+ # in spec/support/ and its subdirectories.
11
+ Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
12
+
13
+ require File.expand_path('../factories.rb', __FILE__)
14
+
15
+ RSpec.configure do |config|
16
+ # ## Mock Framework
17
+ #
18
+ # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
19
+ #
20
+ # config.mock_with :mocha
21
+ # config.mock_with :flexmock
22
+ # config.mock_with :rr
23
+
24
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
25
+ # config.fixture_path = "#{::Rails.root}/spec/fixtures"
26
+
27
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
28
+ # examples within a transaction, remove the following line or assign false
29
+ # instead of true.
30
+ # config.use_transactional_fixtures = true
31
+
32
+ config.before(:each) do
33
+ Mongoid.purge!
34
+ end
35
+
36
+ # If true, the base class of anonymous controllers will be inferred
37
+ # automatically. This will be the default behavior in future versions of
38
+ # rspec-rails.
39
+ config.infer_base_class_for_anonymous_controllers = false
40
+ end
metadata CHANGED
@@ -1,64 +1,63 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daengine
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: 7
5
- version: 0.0.10.alpha
4
+ prerelease:
5
+ version: 0.1.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - sbhatia
9
- - ! '@john_s_in_co'
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-06-20 00:00:00.000000000Z
12
+ date: 2012-06-22 00:00:00.000000000Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rails
17
- version_requirements: &2058 !ruby/object:Gem::Requirement
16
+ version_requirements: &2056 !ruby/object:Gem::Requirement
18
17
  requirements:
19
18
  - - ~>
20
19
  - !ruby/object:Gem::Version
21
20
  version: 3.2.3
22
21
  none: false
23
- requirement: *2058
22
+ requirement: *2056
24
23
  prerelease: false
25
24
  type: :runtime
26
25
  - !ruby/object:Gem::Dependency
27
26
  name: mongoid
28
- version_requirements: &2076 !ruby/object:Gem::Requirement
27
+ version_requirements: &2074 !ruby/object:Gem::Requirement
29
28
  requirements:
30
29
  - - ! '>='
31
30
  - !ruby/object:Gem::Version
32
31
  version: '0'
33
32
  none: false
34
- requirement: *2076
33
+ requirement: *2074
35
34
  prerelease: false
36
35
  type: :runtime
37
36
  - !ruby/object:Gem::Dependency
38
37
  name: factory_girl
39
- version_requirements: &2092 !ruby/object:Gem::Requirement
38
+ version_requirements: &2090 !ruby/object:Gem::Requirement
40
39
  requirements:
41
40
  - - ! '>='
42
41
  - !ruby/object:Gem::Version
43
42
  version: '0'
44
43
  none: false
45
- requirement: *2092
44
+ requirement: *2090
46
45
  prerelease: false
47
46
  type: :development
48
47
  - !ruby/object:Gem::Dependency
49
48
  name: rspec-rails
50
- version_requirements: &2110 !ruby/object:Gem::Requirement
49
+ version_requirements: &2108 !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - ! '>='
53
52
  - !ruby/object:Gem::Version
54
53
  version: '0'
55
54
  none: false
56
- requirement: *2110
55
+ requirement: *2108
57
56
  prerelease: false
58
57
  type: :development
59
58
  description: Daengine handles digital asset processing.
60
59
  email:
61
- - ML-WebDevelopers@oppenheimerfunds.com
60
+ - samcojava@yahoo.com
62
61
  executables:
63
62
  - process_assets
64
63
  extensions: []
@@ -113,8 +112,6 @@ files:
113
112
  - spec/dummy/config/initializers/wrap_parameters.rb
114
113
  - spec/dummy/config/locales/en.yml
115
114
  - spec/dummy/db/test.sqlite3
116
- - spec/dummy/log/development.log
117
- - spec/dummy/log/test.log
118
115
  - spec/dummy/public/404.html
119
116
  - spec/dummy/public/422.html
120
117
  - spec/dummy/public/500.html
@@ -124,7 +121,7 @@ files:
124
121
  - spec/lib/teamsite_metadata_parser_spec.rb
125
122
  - spec/models/digital_asset_spec.rb
126
123
  - bin/process_assets
127
- homepage: https://github.com/johnsinco/daengine
124
+ homepage: http://www.globalizeyourthinking.com
128
125
  licenses: []
129
126
  post_install_message:
130
127
  rdoc_options: []
@@ -138,9 +135,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
135
  none: false
139
136
  required_rubygems_version: !ruby/object:Gem::Requirement
140
137
  requirements:
141
- - - ! '>'
138
+ - - ! '>='
142
139
  - !ruby/object:Gem::Version
143
- version: 1.3.1
140
+ version: '0'
144
141
  none: false
145
142
  requirements: []
146
143
  rubyforge_project:
@@ -176,8 +173,6 @@ test_files:
176
173
  - spec/dummy/config/initializers/wrap_parameters.rb
177
174
  - spec/dummy/config/locales/en.yml
178
175
  - spec/dummy/db/test.sqlite3
179
- - spec/dummy/log/development.log
180
- - spec/dummy/log/test.log
181
176
  - spec/dummy/public/404.html
182
177
  - spec/dummy/public/422.html
183
178
  - spec/dummy/public/500.html
@@ -1,4 +0,0 @@
1
- MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
2
- MONGODB (86ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
3
- MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
4
- MONGODB (37ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
@@ -1,435 +0,0 @@
1
- MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
2
- MONGODB (49ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
3
- MONGODB (110ms) dummy_test['system.namespaces'].find({})
4
- MONGODB (41ms) dummy_test['system.namespaces'].find({})
5
- MONGODB (318ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
6
- MONGODB (36ms) dummy_test['system.namespaces'].find({})
7
- MONGODB (68ms) dummy_test['$cmd'].find({:drop=>"contents"}).limit(-1)
8
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
9
- MONGODB (73ms) dummy_test['$cmd'].find({:drop=>"content_definitions"}).limit(-1)
10
- Processing by DigitalAssetsController#index as HTML
11
- Rendered c:/dev/rails/sandbox/daengine_3/app/views/digital_assets/index.html.erb within layouts/application (48.0ms)
12
- Completed 200 OK in 198ms (Views: 196.0ms)
13
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
14
- MONGODB (116ms) dummy_test['$cmd'].find({:create=>"digital_assets"}).limit(-1)
15
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-1", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-1", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:27 UTC, "created_at"=>2012-06-18 19:25:27 UTC, "documents"=>[{"path"=>"/1/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:27 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-1-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
16
- MONGODB (37ms) dummy_test['digital_assets'].find({})
17
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
18
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
19
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
20
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-2", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-2", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:27 UTC, "created_at"=>2012-06-18 19:25:27 UTC, "documents"=>[{"path"=>"/2/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:27 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-2-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
21
- Processing by DigitalAssetsController#show as HTML
22
- Parameters: {"id"=>"guid-foobar-permanent-2"}
23
- MONGODB (22ms) dummy_test['digital_assets'].find({:_id=>"guid-foobar-permanent-2"}).limit(-1).sort([[:_id, :asc]])
24
- Completed 200 OK in 51ms (Views: 24.0ms)
25
- MONGODB (36ms) dummy_test['system.namespaces'].find({})
26
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
27
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
28
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-3", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-3", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:27 UTC, "created_at"=>2012-06-18 19:25:27 UTC, "documents"=>[{"path"=>"/3/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:27 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-3-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
29
- Processing by DigitalAssetsController#show as HTML
30
- Parameters: {"id"=>"F0000.BAR"}
31
- MONGODB (12ms) dummy_test['digital_assets'].find({:sami_code=>"F0000.BAR"}).limit(-1).sort([[:changed_at, :desc]])
32
- Completed 200 OK in 21ms (Views: 4.0ms)
33
- MONGODB (22ms) dummy_test['system.namespaces'].find({})
34
- MONGODB (22ms) dummy_test['system.namespaces'].find({})
35
- MONGODB (11ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
36
- MONGODB (2ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-4", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-4", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/4/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-4-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
37
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-5", "title"=>"Doc Title", "changed_at"=>2010-06-18 19:25:28 UTC, "guid"=>"guid-foobar-permanent-5", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/5/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-5-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
38
- Processing by DigitalAssetsController#show as HTML
39
- Parameters: {"id"=>"F0000.BAR"}
40
- MONGODB (12ms) dummy_test['digital_assets'].find({:sami_code=>"F0000.BAR"}).limit(-1).sort([[:changed_at, :desc]])
41
- Completed 200 OK in 18ms (Views: 3.0ms)
42
- MONGODB (40ms) dummy_test['system.namespaces'].find({})
43
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
44
- MONGODB (1ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
45
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-6", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-6", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/6/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-6-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
46
- Processing by DigitalAssetsController#show as HTML
47
- Parameters: {"id"=>"guid-foobar-permanent-6"}
48
- MONGODB (26ms) dummy_test['digital_assets'].find({:_id=>"guid-foobar-permanent-6"}).limit(-1).sort([[:_id, :asc]])
49
- Completed 200 OK in 33ms (Views: 5.0ms)
50
- MONGODB (25ms) dummy_test['system.namespaces'].find({})
51
- MONGODB (22ms) dummy_test['system.namespaces'].find({})
52
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
53
- Processing by DigitalAssetsController#search as HTML
54
- Completed 200 OK in 22ms (Views: 20.0ms)
55
- MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
56
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
57
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-7", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-7", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/7/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-7-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
58
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-8", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-8", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/8/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-8-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
59
- MONGODB (2ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-9", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-9", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/9/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-9-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
60
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-10", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-10", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/10/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-10-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
61
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-11", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-11", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/11/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-11-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
62
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-12", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-12", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/12/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-12-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
63
- MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-12"}, {"$unset"=>{"documents"=>true}})
64
- MONGODB (1ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-12"}, {"$pushAll"=>{"documents"=>[{"path"=>"/one/off.path", "doc_changed_at"=>2012-06-18 19:25:28 UTC, "content_type"=>"999", "_id"=>"-fwdslsh-one-fwdslsh-off-period-path"}]}})
65
- Processing by DigitalAssetsController#search as HTML
66
- Parameters: {"path"=>"/one/off.path"}
67
- Completed 200 OK in 5ms (Views: 3.0ms)
68
- MONGODB (36ms) dummy_test['digital_assets'].find({:"documents.path"=>"/one/off.path"})
69
- MONGODB (12ms) dummy_test['digital_assets'].find({:"documents.path"=>"/one/off.path"})
70
- MONGODB (13ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:"documents.path"=>"/one/off.path"}, "fields"=>nil}).limit(-1)
71
- MONGODB (20ms) dummy_test['digital_assets'].find({:"documents.path"=>"/one/off.path"}).limit(-1).sort([[:_id, :asc]])
72
- MONGODB (25ms) dummy_test['system.namespaces'].find({})
73
- MONGODB (23ms) dummy_test['system.namespaces'].find({})
74
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
75
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-13", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-13", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/13/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-13-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
76
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-14", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-14", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/14/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-14-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
77
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-15", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-15", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/15/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-15-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
78
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-16", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-16", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/16/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-16-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
79
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-17", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-17", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/17/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-17-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
80
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-18", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-18", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/18/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-18-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
81
- MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-18"}, {"$unset"=>{"documents"=>true}})
82
- MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-18"}, {"$pushAll"=>{"documents"=>[{"path"=>"/one/off.path", "doc_changed_at"=>2012-06-18 19:25:29 UTC, "content_type"=>"999", "_id"=>"-fwdslsh-one-fwdslsh-off-period-path"}]}})
83
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
84
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
85
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
86
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"some-new-asset-undscr-134", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"some-new-asset_134", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/19/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-19-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
87
- MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$unset"=>{"documents"=>true}})
88
- MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$push"=>{"documents"=>{"_id"=>"-fwdslsh-some-fwdslsh-crazy-fwdslsh-file-period-path", "path"=>"/some/crazy/file.path", "doc_changed_at"=>2012-06-16 19:25:25 UTC, "content_type"=>"777"}}})
89
- Processing by DigitalAssetsController#search as HTML
90
- Parameters: {"doctype"=>"666"}
91
- Completed 200 OK in 4ms (Views: 3.0ms)
92
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-19", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-19", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/20/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-20-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
93
- MONGODB (11ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666"]}})
94
- MONGODB (25ms) dummy_test['system.namespaces'].find({})
95
- MONGODB (32ms) dummy_test['system.namespaces'].find({})
96
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
97
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"some-new-asset-undscr-134", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"some-new-asset_134", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/21/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-21-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
98
- MONGODB (1ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$unset"=>{"documents"=>true}})
99
- MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$push"=>{"documents"=>{"_id"=>"-fwdslsh-some-fwdslsh-crazy-fwdslsh-file-period-path", "path"=>"/some/crazy/file.path", "doc_changed_at"=>2012-06-16 19:25:25 UTC, "content_type"=>"777"}}})
100
- Processing by DigitalAssetsController#search as HTML
101
- Parameters: {"doctype"=>["666", "777"]}
102
- Completed 200 OK in 10ms (Views: 8.0ms)
103
- MONGODB (11ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666", "777"]}})
104
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-20", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-20", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/22/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-22-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
105
- MONGODB (16ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666", "777"]}})
106
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
107
- MONGODB (30ms) dummy_test['system.namespaces'].find({})
108
- MONGODB (11ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
109
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-21", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-21", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"SOMETHING.001", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/23/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-23-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
110
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-22", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-22", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"SOMETHING.001", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/24/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-24-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
111
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-23", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-23", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"SOMETHING.001", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/25/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-25-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
112
- Processing by DigitalAssetsController#search as HTML
113
- Parameters: {"sami"=>"SOMETHING.001"}
114
- Completed 200 OK in 18ms (Views: 17.0ms)
115
- MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:sami_code=>"SOMETHING.001"}, "fields"=>nil}).limit(-1)
116
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
117
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
118
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
119
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-24", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-24", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/26/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-26-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
120
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-25", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-25", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/27/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-27-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
121
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-26", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-26", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/28/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-28-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
122
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-27", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-27", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/29/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-29-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
123
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["9999"], "_id"=>"guid-foobar-permanent-28", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-28", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/30/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-30-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
124
- Processing by DigitalAssetsController#search as HTML
125
- Parameters: {"funds"=>"1234"}
126
- Completed 200 OK in 7ms (Views: 3.0ms)
127
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["1234"]}}, "fields"=>nil}).limit(-1)
128
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
129
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
130
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
131
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-29", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-29", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/31/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-31-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
132
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-30", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-30", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/32/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-32-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
133
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-31", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-31", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/33/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-33-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
134
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-32", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-32", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/34/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-34-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
135
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["9999"], "_id"=>"guid-foobar-permanent-33", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-33", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/35/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-35-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
136
- Processing by DigitalAssetsController#search as HTML
137
- Parameters: {"funds"=>["1234", "9999"]}
138
- Completed 200 OK in 35ms (Views: 27.0ms)
139
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["1234", "9999"]}}, "fields"=>nil}).limit(-1)
140
- MONGODB (23ms) dummy_test['system.namespaces'].find({})
141
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
142
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
143
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-34", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-34", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/36/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-36-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
144
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-35", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-35", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/37/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-37-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
145
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-36", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-36", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/38/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-38-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
146
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-37", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-37", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/39/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-39-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
147
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["9999"], "_id"=>"guid-foobar-permanent-38", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-38", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/40/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-40-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
148
- Processing by DigitalAssetsController#search as HTML
149
- Parameters: {"funds"=>["7777", "9999"]}
150
- Completed 200 OK in 5ms (Views: 4.0ms)
151
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["7777", "9999"]}}, "fields"=>nil}).limit(-1)
152
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
153
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
154
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
155
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["492"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-39", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-39", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/41/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-41-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
156
- MONGODB (2ms) dummy_test['digital_assets'].insert([{"audiences"=>["492"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-40", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-40", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/42/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-42-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
157
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["492"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-41", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-41", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/43/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-43-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
158
- Processing by DigitalAssetsController#search as HTML
159
- Parameters: {"audience"=>"492"}
160
- Completed 200 OK in 4ms (Views: 2.0ms)
161
- MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:audiences=>{"$in"=>["492"]}}, "fields"=>nil}).limit(-1)
162
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
163
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
164
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
165
- Processing by DigitalAssetsController#search as HTML
166
- Parameters: {"title"=>"Doc Title"}
167
- Completed 200 OK in 7ms (Views: 6.0ms)
168
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-42", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-42", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/44/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-44-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
169
- MONGODB (10ms) dummy_test['digital_assets'].find({:title=>"Doc Title"})
170
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
171
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
172
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
173
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-43", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-43", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/45/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-45-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
174
- Processing by DigitalAssetsController#search as HTML
175
- Parameters: {"guid"=>"guid-foobar-permanent-43"}
176
- Completed 200 OK in 3ms (Views: 2.0ms)
177
- MONGODB (11ms) dummy_test['digital_assets'].find({:guid=>"guid-foobar-permanent-43"})
178
- MONGODB (22ms) dummy_test['system.namespaces'].find({})
179
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
180
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
181
- Processing by DigitalAssetsController#search as HTML
182
- Parameters: {"business_owner"=>"biz owner"}
183
- Completed 200 OK in 19ms (Views: 13.0ms)
184
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-44", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-44", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/46/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-46-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
185
- MONGODB (11ms) dummy_test['digital_assets'].find({:business_owner=>"biz owner"})
186
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
187
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
188
- MONGODB (11ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
189
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-45", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-45", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/47/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-47-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
190
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-46", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-46", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/48/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-48-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
191
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-47", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-47", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/49/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-49-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
192
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-48", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-48", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/50/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-50-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
193
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-49", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-49", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/51/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-51-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
194
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-50", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-50", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/52/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-52-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
195
- Processing by DigitalAssetsController#search as HTML
196
- Parameters: {"guid"=>"guid-foobar-permanent-50", "title"=>"Doc Title"}
197
- Completed 200 OK in 4ms (Views: 3.0ms)
198
- MONGODB (25ms) dummy_test['digital_assets'].find({:guid=>"guid-foobar-permanent-50", :title=>"Doc Title"})
199
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
200
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
201
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
202
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-51", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-51", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/53/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-53-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
203
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-52", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-52", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/54/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-54-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
204
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-53", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-53", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/55/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-55-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
205
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-54", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-54", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/56/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-56-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
206
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-55", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-55", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/57/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-57-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
207
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-56", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-56", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/58/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-58-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
208
- Processing by DigitalAssetsController#search as HTML
209
- Parameters: {"title"=>"Doc Title", "audiences"=>["490"], "sami"=>"F0000.BAR"}
210
- Completed 200 OK in 3ms (Views: 3.0ms)
211
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:title=>"Doc Title", :sami_code=>"F0000.BAR"}, "fields"=>nil}).limit(-1)
212
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
213
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
214
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
215
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-57", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-57", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/59/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-59-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
216
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-58", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-58", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/60/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-60-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
217
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-59", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-59", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/61/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-61-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
218
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-60", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-60", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/62/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-62-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
219
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-61", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-61", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/63/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-63-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
220
- Processing by DigitalAssetsController#search as HTML
221
- Parameters: {"guid"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
222
- Completed 200 OK in 3ms (Views: 2.0ms)
223
- MONGODB (5ms) dummy_test['digital_assets'].find({:guid=>"blargh-blargh-blargh", :title=>"Doc Title"})
224
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
225
- MONGODB (18ms) dummy_test['system.namespaces'].find({})
226
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
227
- MONGODB (9ms) dummy_test['system.namespaces'].find({})
228
- MONGODB (9ms) dummy_test['system.namespaces'].find({})
229
- MONGODB (10ms) dummy_test['system.namespaces'].find({})
230
- MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
231
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
232
- MONGODB (12ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
233
- MONGODB (12ms) dummy_test['system.namespaces'].find({})
234
- MONGODB (12ms) dummy_test['system.namespaces'].find({})
235
- MONGODB (10ms) dummy_test['system.namespaces'].find({})
236
- MONGODB (12ms) dummy_test['system.namespaces'].find({})
237
- MONGODB (12ms) dummy_test['system.namespaces'].find({})
238
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
239
- MONGODB (10ms) dummy_test['system.namespaces'].find({})
240
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
241
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
242
- MONGODB (12ms) dummy_test['system.namespaces'].find({})
243
- MONGODB (11ms) dummy_test['system.namespaces'].find({})
244
- MONGODB (10ms) dummy_test['system.namespaces'].find({})
245
- MONGODB (12ms) dummy_test['system.namespaces'].find({})
246
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-71", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-71", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/73/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-73-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
247
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-72", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-72", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/74/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-74-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
248
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-73", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-73", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/75/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-75-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
249
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-74", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-74", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/76/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-76-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
250
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-75", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-75", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/77/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-77-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
251
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-76", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-76", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/78/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-78-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
252
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-77", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-77", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/79/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-79-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
253
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-78", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-78", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/80/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-80-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
254
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-79", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-79", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/81/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-81-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
255
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-80", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-80", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/82/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-82-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
256
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-81", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-81", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/83/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-83-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
257
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-82", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-82", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/84/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-84-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
258
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-83", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-83", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/85/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-85-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
259
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-84", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-84", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/86/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-86-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
260
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-85", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-85", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/87/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-87-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
261
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-86", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-86", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/88/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-88-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
262
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-87", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-87", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/89/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-89-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
263
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-88", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-88", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/90/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-90-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
264
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-89", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-89", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/91/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-91-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
265
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-90", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-90", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/92/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-92-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
266
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-91", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-91", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/93/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-93-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
267
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-92", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-92", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/94/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-94-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
268
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-93", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-93", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/95/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-95-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
269
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-94", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-94", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/96/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-96-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
270
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-95", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-95", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/97/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-97-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
271
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-96", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-96", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/98/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-98-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
272
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-97", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-97", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/99/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-99-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
273
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-98", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-98", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/100/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-100-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
274
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-99", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-99", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/101/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-101-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
275
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-100", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-100", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/102/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-102-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
276
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-101", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-101", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/103/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-103-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
277
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-102", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-102", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/104/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-104-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
278
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-103", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-103", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/105/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-105-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
279
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-104", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-104", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/106/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-106-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
280
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-105", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-105", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/107/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-107-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
281
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-106", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-106", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/108/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-108-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
282
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-107", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-107", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/109/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-109-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
283
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-108", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-108", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/110/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-110-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
284
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-109", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-109", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/111/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-111-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
285
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-110", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-110", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/112/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-112-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
286
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-111", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-111", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/113/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-113-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
287
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-112", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-112", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/114/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-114-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
288
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-113", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-113", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/115/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-115-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
289
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-114", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-114", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/116/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-116-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
290
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-115", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-115", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/117/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-117-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
291
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-116", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-116", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/118/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-118-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
292
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-117", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-117", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/119/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-119-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
293
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-118", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-118", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/120/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-120-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
294
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-119", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-119", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/121/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-121-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
295
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-120", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-120", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/122/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-122-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
296
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-121", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-121", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:15:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/123/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-123-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
297
- MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
298
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:35 UTC}}, "fields"=>nil}).limit(-1)
299
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
300
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:35 UTC}}, "fields"=>nil}).limit(-1)
301
- MONGODB (10ms) dummy_test['digital_assets'].find({:updated_at=>{"$lte"=>2012-06-18 19:23:35 UTC}})
302
- MONGODB (0ms) dummy_test['digital_assets'].remove({:_id=>"guid-foobar-permanent-121"})
303
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
304
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
305
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
306
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
307
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-122", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-122", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/124/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-124-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
308
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-123", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-123", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/125/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-125-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
309
- MONGODB (11ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303"]}})
310
- MONGODB (11ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303"]}})
311
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["303"]}}, "fields"=>nil}).limit(-1)
312
- MONGODB (4ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["808"]}})
313
- MONGODB (4ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["808"]}})
314
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["808"]}}, "fields"=>nil}).limit(-1)
315
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
316
- MONGODB (109ms) dummy_test['system.namespaces'].find({})
317
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
318
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-124", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-124", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/126/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-126-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
319
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-125", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-125", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/127/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-127-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
320
- MONGODB (16ms) dummy_test['digital_assets'].find({:product_ids=>{"$in"=>["690"]}})
321
- MONGODB (61ms) dummy_test['digital_assets'].find({:product_ids=>{"$in"=>["690"]}})
322
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:product_ids=>{"$in"=>["690"]}}, "fields"=>nil}).limit(-1)
323
- MONGODB (21ms) dummy_test['system.namespaces'].find({})
324
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
325
- MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
326
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-126", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-126", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/128/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-128-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
327
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-127", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-127", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/129/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-129-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
328
- MONGODB (11ms) dummy_test['digital_assets'].find({:sami_code=>"F000000.BAR"})
329
- MONGODB (9ms) dummy_test['digital_assets'].find({:sami_code=>"F000000.BAR"})
330
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:sami_code=>"F000000.BAR"}, "fields"=>nil}).limit(-1)
331
- MONGODB (20ms) dummy_test['system.namespaces'].find({})
332
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
333
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
334
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-128", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-128", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/130/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-130-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
335
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-129", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-129", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/131/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-131-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
336
- MONGODB (10ms) dummy_test['digital_assets'].find({:"documents.path"=>"/130/foo/bar.txt"})
337
- MONGODB (9ms) dummy_test['digital_assets'].find({:"documents.path"=>"/130/foo/bar.txt"})
338
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:"documents.path"=>"/130/foo/bar.txt"}, "fields"=>nil}).limit(-1)
339
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
340
- MONGODB (18ms) dummy_test['system.namespaces'].find({})
341
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
342
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-130", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-130", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/132/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-132-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
343
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-131", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-131", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/133/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-133-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
344
- MONGODB (15ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666"]}})
345
- MONGODB (14ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666"]}})
346
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:"documents.content_type"=>{"$in"=>["666"]}}, "fields"=>nil}).limit(-1)
347
- MONGODB (18ms) dummy_test['system.namespaces'].find({})
348
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
349
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
350
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-132", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-132", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/134/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-134-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
351
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-133", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-133", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/135/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-135-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
352
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["420"], "product_ids"=>["690", "420"], "fund_ids"=>["999"], "_id"=>"guid-foobar-permanent-134", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-134", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/136/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-136-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
353
- MONGODB (15ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}})
354
- MONGODB (14ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}})
355
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["303", "420"]}}, "fields"=>nil}).limit(-1)
356
- MONGODB (9ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}, :audiences=>{"$in"=>["690"]}})
357
- MONGODB (10ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}, :audiences=>{"$in"=>["690"]}})
358
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["303", "420"]}, :audiences=>{"$in"=>["690"]}}, "fields"=>nil}).limit(-1)
359
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
360
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
361
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
362
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-135", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-135", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/137/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-137-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
363
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-136", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-136", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/138/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-138-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
364
- MONGODB (10ms) dummy_test['digital_assets'].find({:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}})
365
- MONGODB (10ms) dummy_test['digital_assets'].find({:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}})
366
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
367
- MONGODB (18ms) dummy_test['system.namespaces'].find({})
368
- MONGODB (19ms) dummy_test['system.namespaces'].find({})
369
- MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
370
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-137", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-137", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/139/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-139-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
371
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-138", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-138", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/140/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-140-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
372
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-139", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-139", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/141/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-141-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
373
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-140", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-140", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/142/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-142-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
374
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-141", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-141", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:15:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/143/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-143-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
375
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-142", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-142", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:15:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/144/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-144-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
376
- MONGODB (33ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
377
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
378
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
379
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
380
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-143", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-143", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/145/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-145-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
381
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-144", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-144", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/146/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-146-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
382
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-145", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-145", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/147/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-147-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
383
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-146", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-146", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/148/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-148-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
384
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-147", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-147", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/149/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-149-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
385
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-148", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-148", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/150/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-150-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
386
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-149", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-149", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/151/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-151-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
387
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-150", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-150", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/152/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-152-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
388
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-151", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-151", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/153/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-153-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
389
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-152", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-152", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/154/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-154-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
390
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-153", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-153", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/155/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-155-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
391
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-154", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-154", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/156/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-156-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
392
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-155", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-155", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/157/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-157-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
393
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-156", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-156", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/158/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-158-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
394
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-157", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-157", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/159/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-159-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
395
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-158", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-158", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/160/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-160-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
396
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-159", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-159", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/161/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-161-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
397
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-160", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-160", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/162/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-162-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
398
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-161", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-161", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/163/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-163-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
399
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-162", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-162", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/164/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-164-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
400
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-163", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-163", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/165/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-165-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
401
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-164", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-164", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/166/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-166-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
402
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-165", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-165", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/167/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-167-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
403
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-166", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-166", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/168/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-168-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
404
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-167", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-167", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/169/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-169-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
405
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-168", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-168", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/170/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-170-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
406
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-169", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-169", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/171/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-171-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
407
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-170", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-170", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/172/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-172-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
408
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-171", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-171", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/173/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-173-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
409
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-172", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-172", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/174/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-174-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
410
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-173", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-173", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/175/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-175-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
411
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-174", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-174", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/176/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-176-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
412
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-175", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-175", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/177/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-177-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
413
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-176", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-176", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/178/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-178-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
414
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-177", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-177", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/179/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-179-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
415
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-178", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-178", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/180/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-180-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
416
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-179", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-179", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/181/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-181-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
417
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-180", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-180", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/182/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-182-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
418
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-181", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-181", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/183/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-183-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
419
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-182", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-182", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/184/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-184-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
420
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-183", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-183", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/185/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-185-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
421
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-184", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-184", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/186/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-186-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
422
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-185", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-185", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/187/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-187-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
423
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-186", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-186", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/188/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-188-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
424
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-187", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-187", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/189/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-189-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
425
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-188", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-188", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/190/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-190-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
426
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-189", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-189", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/191/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-191-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
427
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-190", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-190", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/192/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-192-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
428
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-191", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-191", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/193/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-193-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
429
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-192", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-192", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/194/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-194-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
430
- MONGODB (3ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-193", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-193", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/195/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-195-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
431
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-194", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-194", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/196/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-196-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
432
- MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-195", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-195", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/197/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-197-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
433
- MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-196", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-196", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/198/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-198-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
434
- MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
435
- MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)