mwmitchell-rsolr 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. data/CHANGES.txt +41 -0
  2. data/LICENSE +201 -0
  3. data/README.rdoc +191 -0
  4. data/Rakefile +40 -0
  5. data/examples/direct.rb +20 -0
  6. data/examples/http.rb +16 -0
  7. data/lib/core_ext.rb +8 -0
  8. data/lib/rsolr.rb +34 -0
  9. data/lib/rsolr/connection.rb +7 -0
  10. data/lib/rsolr/connection/adapter.rb +7 -0
  11. data/lib/rsolr/connection/adapter/common_methods.rb +46 -0
  12. data/lib/rsolr/connection/adapter/direct.rb +80 -0
  13. data/lib/rsolr/connection/adapter/http.rb +51 -0
  14. data/lib/rsolr/connection/base.rb +121 -0
  15. data/lib/rsolr/connection/search_ext.rb +126 -0
  16. data/lib/rsolr/http_client.rb +115 -0
  17. data/lib/rsolr/http_client/adapter.rb +6 -0
  18. data/lib/rsolr/http_client/adapter/curb.rb +51 -0
  19. data/lib/rsolr/http_client/adapter/net_http.rb +48 -0
  20. data/lib/rsolr/indexer.rb +23 -0
  21. data/lib/rsolr/mapper.rb +62 -0
  22. data/lib/rsolr/mapper/rss.rb +29 -0
  23. data/lib/rsolr/message.rb +73 -0
  24. data/lib/rsolr/response.rb +8 -0
  25. data/lib/rsolr/response/base.rb +33 -0
  26. data/lib/rsolr/response/index_info.rb +22 -0
  27. data/lib/rsolr/response/query.rb +170 -0
  28. data/lib/rsolr/response/update.rb +4 -0
  29. data/test/connection/direct_test.rb +22 -0
  30. data/test/connection/http_test.rb +19 -0
  31. data/test/connection/search_ext_test_methods.rb +17 -0
  32. data/test/connection/test_methods.rb +122 -0
  33. data/test/http_client/curb_test.rb +19 -0
  34. data/test/http_client/net_http_test.rb +13 -0
  35. data/test/http_client/test_methods.rb +40 -0
  36. data/test/http_client/util_test.rb +40 -0
  37. data/test/mapper_test.rb +123 -0
  38. data/test/message_test.rb +87 -0
  39. data/test/pagination_test.rb +58 -0
  40. data/test/ruby-lang.org.rss.xml +391 -0
  41. data/test/test_helpers.rb +39 -0
  42. metadata +107 -0
data/CHANGES.txt ADDED
@@ -0,0 +1,41 @@
1
+ 0.5.6 - December 30, 2008
2
+ solr.gemspec cleanedup thanks to shairontoledo on github! :)
3
+ Added Solr::Response::Query::Facet module with helpers from the delsolr project
4
+ Also added test stub in test/connection/search_ext_test_methods.rb
5
+ Fixed pagination math errors
6
+ Added new SearchExt helper field: :phrase_filters
7
+ This will add quoted values to the :filters (fq solr param) hash for doing easier facet requests
8
+
9
+ Be sure to check out the new demo app: http://github.com/mwmitchell/consuminator/tree/master
10
+
11
+ 0.5.5 - December 29, 2008
12
+ Fixed bug where accessing a field by method name failed:
13
+ docs.each do |doc|
14
+ doc.timestamp
15
+ end
16
+ Fixed bug where using the #has? method on a doc failed:
17
+ docs.each do |doc|
18
+ doc.has?('timestamp')
19
+ end
20
+ Removed invalid autoload in Solr module
21
+ Fixed spelling error in Solr::Connection::SearchExt (thanks to matthewrudy)
22
+
23
+ 0.5.4 - December 29, 2008
24
+ Re-organized the main Solr adapters, they're now in Solr::Connection::Adapter instead of Solr::Adapter
25
+ All responses from HTTPClient and Connection::Adapter::Direct return a hash with the following keys:
26
+ :status_code
27
+ :body
28
+ :params
29
+ :url
30
+ :path
31
+ :headers
32
+ :data
33
+ This hash is now available in the solr response objects as #source - this will be useful in testing and debugging by allowing you to see the generated params and queries... example:
34
+ response = Solr.query(:q=>'*:*')
35
+ response.source[:params]
36
+ response.source[:body]
37
+ response.source[:url]
38
+ Added MultiValue field support in Solr::Message, thanks to Fouad Mardini
39
+ Bug in Solr::Connection::SearchExt where the :q params was not getting generated - fixed by Fouad Mardini
40
+ Organized tests a bit, moved connection tests into test/connection
41
+ Fixed a bug in Solr::Connection::Adapter::HTTP where invalid HTTP POST headers were being generated
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README.rdoc ADDED
@@ -0,0 +1,191 @@
1
+ =Solr
2
+
3
+ A Ruby client for Apache Solr. Has transparent JRuby support by using "org.apache.solr.servlet.DirectSolrConnection" as a connection adapter.
4
+
5
+ To run tests:
6
+
7
+ Copy a Solr 1.3.0 (or later) distribution into this directory and rename to "apache-solr"
8
+ Start Solr HTTP: rake start_test_server
9
+ MRI Ruby: rake
10
+ JRuby: jruby -S rake
11
+
12
+ To get a connection in MRI/standard Ruby:
13
+
14
+ solr = Solr.connect(:http)
15
+
16
+ To get a direct connection in jRuby using DirectSolrConnection:
17
+
18
+ solr = Solr.connect(:direct, :home_dir=>'/path/to/solr/home', :dist_dir=>'/path/to/solr/distribution')
19
+
20
+ You can set Solr params that will be sent for every request:
21
+
22
+ solr = Solr.connect(:http, :global_params=>{:wt=>:ruby, :echoParams=>'EXPLICIT'})
23
+
24
+
25
+ == Requests
26
+ Once you have a connection, you can execute queries, updates etc..
27
+
28
+
29
+ === Querying
30
+ response = solr.query(:q=>'washington', :facet=>true, :facet.limit=>-1, :facet.field=>'cat', :facet.field=>'inStock')
31
+ response = solr.find_by_id(1)
32
+
33
+ * thanks to a little Ruby magic, we can chain symbols to create Solr "dot" syntax: :facet.field=>'cat'
34
+
35
+ Using the #search method makes building more complex Solr queries easier:
36
+
37
+ response = solr.search 'my search', :filters=>{:price=>(0.00..10.00)}
38
+ response.docs.each do |doc|
39
+ doc.price
40
+ end
41
+
42
+ ====Pagination
43
+ Pagination is simplified by using the :page and :per_page params:
44
+
45
+ response = solr.query(:page=>1, :per_page=>10, :q=>'*:*')
46
+ response.per_page
47
+ response.total_pages
48
+ response.current_page
49
+ response.previous_page
50
+ response.next_page
51
+
52
+ If you use WillPaginate, just pass-in the response to the #will_paginate view helper:
53
+
54
+ <%= will_paginate(@response) %>
55
+
56
+ The #query and #search methods automatically figure out the :start and :rows value, based on the values of :page and :per_page. The will_paginate view helper just needs the right methods (#current_page, #previous_page, #next_page and #total_pages) to create the pagination view widget.
57
+
58
+
59
+ === Updating Solr
60
+ Updating is done using native Ruby structures. Hashes are used for single documents and arrays are used for a collection of documents (hashes). These structures get turned into simple XML "messages".
61
+
62
+ Single document
63
+ response = solr.add(:id=>1, :price=>1.00)
64
+
65
+ Multiple documents
66
+ response = solr.add([{:id=>1, :price=>1.00}, {:id=>2, :price=>10.50}])
67
+
68
+ When adding, you can also supply "add" attributes and/or a block for digging into the Solr "add" params:
69
+
70
+ doc = {:id=>1, :price=>1.00}
71
+ solr.add(doc, {:allowDups=>false, :commitWithin=>10.0}) do |doc_attrs|
72
+ doc_attrs[:boost] = 10.0
73
+ end
74
+
75
+ Delete by id
76
+ response = solr.delete_by_id(1)
77
+ or an array of ids
78
+ response = solr.delete_by_id([1, 2, 3, 4])
79
+
80
+ Delete by query:
81
+ response = solr.delete_by_query('price:1.00')
82
+ Delete by array of queries
83
+ response = solr.delete_by_query(['price:1.00', 'price:10.00'])
84
+
85
+
86
+ Commit & Optimize
87
+ solr.commit
88
+ solr.optimize
89
+
90
+
91
+ ==Response Formats
92
+ The default response format is Ruby. When the :wt param is set to :ruby, the response is eval'd and wrapped up in a nice Solr::Response class. You can get an unwrapped response by setting the :wt to "ruby" - notice, the string -- not a symbol. All other response formats are available as expected, :wt=>'xml' etc.. Currently, the only response format that gets eval'd and wrapped is :ruby.
93
+
94
+ You can access the original request context (path, params, url etc.) from response.source. The response.source is a hash that contains the generated params, url, path, post data, headers etc.. This could be useful for debugging and testing.
95
+
96
+ ==Data Mapping
97
+ The Solr::Mapper::Base class provides some nice ways of mapping data. You provide a hash mapping and a "data source". The keys of the hash mapping become the Solr field names. The values of the hash mapping get processed differently based on the value. The data source must be an Enumerable type object. The hash mapping is processed for each item in the data source.
98
+
99
+ ===Hash Map Processing
100
+ If the value is a string, the value of the String is used as the final Solr field value. If the value is a Symbol, the Symbol is used as a key on the data source. An Enumerable type does the same as the Symbol, but for each item in the set. The most interesting and flexible processing occurs when the value is a Proc. When a Proc is used as a hash mapping value, the mapper executes the Proc's #call method, passing in the current data source item.
101
+
102
+ ===Examples
103
+
104
+ mapping = {
105
+ :id=>:id,
106
+ :title=>:title,
107
+ :source=>'Example',
108
+ :meta=>[:author, :sub_title],
109
+ :web_id=>proc {|item|
110
+ WebService.fetch_item_id_by_name(item[:name])
111
+ }
112
+ }
113
+
114
+ data_source = [
115
+ {
116
+ :id=>100,
117
+ :title=>'Doc One',
118
+ :author=>'Mr. X',
119
+ :sub_title=>'A first class document.',
120
+ :name=>'doc_1'
121
+ },
122
+ {
123
+ :id=>200,
124
+ :title=>'Doc Two',
125
+ :author=>'Mr. XYZ',
126
+ :sub_title=>'A second class document.',
127
+ :name=>'doc_2'
128
+ }
129
+ ]
130
+
131
+ mapper = Solr::Mapper::Base(mapping)
132
+ mapped_data = mapper.map(data_source)
133
+
134
+ # the following would be true...
135
+ mapped_data == [
136
+ {
137
+ :id=>100,
138
+ :title=>'Doc One',
139
+ :source=>'Example',
140
+ :meta=>['Mr. X', 'A first class document'],
141
+ :web_id=>'web_id_for_doc_1_for_example'
142
+ },
143
+ {
144
+ :id=>200,
145
+ :title=>'Doc Two',
146
+ :source=>'Example',
147
+ :meta=>['Mr. XYZ', 'A second class document'],
148
+ :web_id=>'web_id_for_doc_2_for_example'
149
+ }
150
+ ]
151
+
152
+ ===RSS Mapper
153
+ There is currently one built in mapper, Solr::Mapper::RSS. Here's an example usage:
154
+
155
+ mapper = Solr::Mapper::RSS.new
156
+ mapping = {
157
+ :channel=>:'channel.title',
158
+ :url=>:'channel.link',
159
+ :total=>:'items.size',
160
+ :title=>proc {|item,m| item.title },
161
+ :link=>proc {|item,m| item.link },
162
+ :published=>proc {|item,m| item.date },
163
+ :description=>proc {|item,m| item.description }
164
+ }
165
+ mapped_data = m.map('http://site.com/feed.rss')
166
+
167
+ ==Indexing
168
+ Solr (ruby) comes with a simple indexer that makes use of the Solr mapper. Here's an example, using the "mapping" and "mapped_data" variables above (RSS mapper):
169
+
170
+ solr = Solr.connect(:http)
171
+ i = Solr::Indexer.new(solr, mapping)
172
+ i.index(mapped_data)
173
+
174
+
175
+ ==HTTP Client Adapter
176
+ You can specify the Ruby http client to use by setting Solr::Connection::Adapter::HTTP.client_adapter to one of:
177
+ :net_http uses the standard Net::HTTP library
178
+ :curb uses the Ruby "curl" bindings
179
+
180
+ Example:
181
+
182
+ Solr::Connection::Adapter::HTTP.client_adapter = :curb
183
+
184
+ Example of using the HTTP client only:
185
+
186
+ hclient = Solr::HTTPClient.connect(url, :curb)
187
+ hclient = Solr::HTTPClient.connect(url, :net_http)
188
+
189
+ After reading this http://apocryph.org/2008/11/09/more_indepth_analysis_ruby_http_client_performance/ - I would recommend using the :curb adapter. NOTE: You can't use the :curb adapter under jRuby. To install curb:
190
+
191
+ sudo gem install curb
data/Rakefile ADDED
@@ -0,0 +1,40 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ require File.join(File.dirname(__FILE__), 'lib', 'rsolr')
6
+
7
+ namespace :rsolr do
8
+
9
+ desc "Starts the HTTP server used for running HTTP connection tests"
10
+ task :start_test_server do
11
+ system "cd apache-solr/example; java -jar start.jar"
12
+ end
13
+
14
+ end
15
+
16
+ task :default => [:test_units]
17
+
18
+ desc "Run basic tests"
19
+ Rake::TestTask.new("test_units") { |t|
20
+ t.pattern = 'test/**/*_test.rb'
21
+ t.verbose = true
22
+ t.warning = true
23
+ }
24
+
25
+ # Clean house
26
+ desc 'Clean up tmp files.'
27
+ task :clean do |t|
28
+ FileUtils.rm_rf "doc"
29
+ FileUtils.rm_rf "pkg"
30
+ end
31
+
32
+ # Rdoc
33
+ desc 'Generate documentation for the rsolr gem.'
34
+ Rake::RDocTask.new(:doc) do |rdoc|
35
+ rdoc.rdoc_dir = 'doc'
36
+ rdoc.title = 'Solr-Ruby'
37
+ rdoc.options << '--line-numbers' << '--inline-source'
38
+ rdoc.rdoc_files.include('README.rdoc')
39
+ rdoc.rdoc_files.include('lib/**/*.rb')
40
+ end