daengine 0.1.9 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/daengine.rb +2 -1
- data/lib/daengine/teamsite_metadata_parser.rb +23 -7
- data/lib/daengine/version.rb +1 -1
- metadata +2 -6
- data/spec/dummy/log/development.log +0 -4
- data/spec/dummy/log/test.log +0 -435
data/lib/daengine.rb
CHANGED
@@ -51,7 +51,8 @@ module Daengine
|
|
51
51
|
@config
|
52
52
|
end
|
53
53
|
|
54
|
-
def self.execute(
|
54
|
+
def self.execute()
|
55
|
+
config_options = YAML.load_file('C:\dev\529-workspace\rails\daengine\client\config.yml')
|
55
56
|
self.configure(config_options)
|
56
57
|
self.set_logger()
|
57
58
|
self.log("Daengine: ### Loading application config ###", "info")
|
@@ -25,7 +25,7 @@ module Daengine::TeamsiteMetadataParser
|
|
25
25
|
"TeamSite/Metadata/display_on_website" => lambda { |val| /Y|1|true/ =~ val },
|
26
26
|
"TeamSite/Metadata/enterprise_expiration_date" => lambda {|val| !val.blank? },
|
27
27
|
# "TeamSite/Metadata/enterprise_unpublish_date" => lambda {|val| val.blank? },
|
28
|
-
"path" => lambda {|val| !(/\/manifest\// =~ val) }
|
28
|
+
#"path" => lambda {|val| !(/\/manifest\// =~ val) }
|
29
29
|
}
|
30
30
|
|
31
31
|
@@logger = nil
|
@@ -86,14 +86,21 @@ module Daengine::TeamsiteMetadataParser
|
|
86
86
|
DigitalAsset.where(guid: key).try :delete_all
|
87
87
|
delete_count += 1
|
88
88
|
else
|
89
|
+
asset_docs = remove_manifest_file(assets[key]['documents_attributes'])
|
89
90
|
da = DigitalAsset.find_or_initialize_by(guid: key)
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
91
|
+
if (!asset_docs.empty?)
|
92
|
+
assets[key]['documents_attributes'] = asset_docs
|
93
|
+
creating = da.new?
|
94
|
+
da.documents = []
|
95
|
+
da.update_attributes!(assets[key])
|
96
|
+
if (creating)
|
97
|
+
added_count += 1
|
98
|
+
else
|
99
|
+
update_count += 1
|
100
|
+
end
|
95
101
|
else
|
96
|
-
|
102
|
+
DigitalAsset.where(guid: key).try :delete_all
|
103
|
+
delete_count += 1
|
97
104
|
end
|
98
105
|
end
|
99
106
|
rescue Exception => e
|
@@ -111,6 +118,15 @@ module Daengine::TeamsiteMetadataParser
|
|
111
118
|
end
|
112
119
|
end
|
113
120
|
|
121
|
+
|
122
|
+
def self.remove_manifest_file(asset_docs)
|
123
|
+
docs = []
|
124
|
+
asset_docs.each do |doc|
|
125
|
+
docs << doc unless doc['path'].match('\/manifest\/')
|
126
|
+
end
|
127
|
+
docs
|
128
|
+
end
|
129
|
+
|
114
130
|
def self.time
|
115
131
|
start = Time.now
|
116
132
|
yield
|
data/lib/daengine/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: daengine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.
|
5
|
+
version: 0.2.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- sbhatia
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-06-
|
13
|
+
date: 2012-06-29 00:00:00.000000000Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -113,8 +113,6 @@ files:
|
|
113
113
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
114
114
|
- spec/dummy/config/locales/en.yml
|
115
115
|
- spec/dummy/db/test.sqlite3
|
116
|
-
- spec/dummy/log/development.log
|
117
|
-
- spec/dummy/log/test.log
|
118
116
|
- spec/dummy/public/404.html
|
119
117
|
- spec/dummy/public/422.html
|
120
118
|
- spec/dummy/public/500.html
|
@@ -176,8 +174,6 @@ test_files:
|
|
176
174
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
177
175
|
- spec/dummy/config/locales/en.yml
|
178
176
|
- spec/dummy/db/test.sqlite3
|
179
|
-
- spec/dummy/log/development.log
|
180
|
-
- spec/dummy/log/test.log
|
181
177
|
- spec/dummy/public/404.html
|
182
178
|
- spec/dummy/public/422.html
|
183
179
|
- 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)
|
data/spec/dummy/log/test.log
DELETED
@@ -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)
|