You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2007/04/26 04:15:13 UTC

svn commit: r532572 - /lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb

Author: ehatcher
Date: Wed Apr 25 19:15:13 2007
New Revision: 532572

URL: http://svn.apache.org/viewvc?view=rev&rev=532572
Log:
Add SolrSource class, which simply iterates over all documents matching query and filter constraints to be returned.  This is suitable for use with a Mapper and the Indexer to pull documents (stored fields only) from one Solr instance to another.

Added:
    lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb   (with props)

Added: lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb?view=auto&rev=532572
==============================================================================
--- lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb (added)
+++ lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb Wed Apr 25 19:15:13 2007
@@ -0,0 +1,43 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+require 'solr'
+
+class Solr::Importer::SolrSource
+  def initialize(solr_url, query, filter_queries, options={})
+    @connection = Solr::Connection.new(solr_url)
+    @query = query
+    @filter_queries = filter_queries
+
+    @page_size = options[:page_size] || 1000
+    @field_list = options[:field_list] || ["*"]
+  end
+  
+  def each
+    done = false
+    start = 0
+    until done do
+      # request N documents from a starting point
+      request = Solr::Request::Standard.new(:query => @query,
+                                            :rows => @page_size,
+                                            :start => start,
+                                            :field_list => @field_list,
+                                            :filter_queries => @filter_queries)
+      response = @connection.send(request)
+      response.each do |doc|
+        yield doc  # TODO: perhaps convert to HashWithIndifferentAccess.new(doc), so stringify_keys isn't necessary
+      end
+      done = start + @page_size >= response.total_hits
+      start = start + @page_size
+    end
+  end
+end

Propchange: lucene/solr/trunk/client/ruby/solr-ruby/lib/solr/importer/solr_source.rb
------------------------------------------------------------------------------
    svn:executable = *