Sha256: 5a40c97ef4f90476082aac61d1551c751adcee71c92f2c6c7aae6814dc92b4b6

Contents?: true

Size: 992 Bytes

Versions: 27

Compression:

Stored size: 992 Bytes

Contents

# 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/xml'

class Solr::Request::Commit < Solr::Request::Update

  def initialize(options={})
    @wait_searcher = options[:wait_searcher] || true
    @wait_flush = options[:wait_flush] || true
  end


  def to_s
    e = Solr::XML::Element.new('commit')
    e.attributes['waitSearcher'] = @wait_searcher ? 'true' : 'false'
    e.attributes['waitFlush'] = @wait_flush ? 'true' : 'false'
    
    e.to_s
  end

end

Version data entries

27 entries across 27 versions & 5 rubygems

Version Path
greglu-solr-ruby-0.0.7 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.1.1 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.3.3 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.4.0 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.4.1 lib/solr/request/commit.rb
acts_as_solr-1.3.3 lib/solr/request/commit.rb
acts_as_solr-1.3.2 lib/solr/request/commit.rb
acts_as_solr-1.3.1 lib/solr/request/commit.rb
acts_as_solr-1.3.0 lib/solr/request/commit.rb
acts_as_solr-1.2.0 lib/solr/request/commit.rb
acts_as_solr-1.1.3 lib/solr/request/commit.rb
acts_as_solr-1.1.2 lib/solr/request/commit.rb
acts_as_solr-1.1.1 lib/solr/request/commit.rb
acts_as_solr-1.0.0 lib/solr/request/commit.rb
solr-ruby-0.0.8 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.4.6 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.4.5 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.4.4 lib/solr/request/commit.rb
websolr-rails-1.4.4 lib/solr/request/commit.rb
onemorecloud-websolr-rails-1.4.3 lib/solr/request/commit.rb