1

Tire でクエリを定義するのに問題があります。

私が持っているもの:

私のドキュメントはイベントです。彼らにはstarts_at日付があり、ends_at日付があります。ends_at日付は必須ではありません。

私が欲しいもの:

今後のイベントを表示したい (たとえば)。私は次のように定義upcomingします。

  • ends_at日付が存在し、かつ Time.now の後

また

  • ends_at日付が存在せず、かつstarts_atTime.now より後です

今、ちょうどやっています

query do
    boolean do
        must { range :starts_at, { gte: bod } }
    end
end

この OR クエリを実行するにはどうすればよいですか?

4

1 に答える 1

3

私が今考えることができる唯一の方法は、文字列クエリで使用することです_missing__exists_

require 'tire'
require 'active_support/core_ext/numeric/time'
require 'active_support/core_ext/date/calculations'
require 'active_support/duration'

Time::DATE_FORMATS.update :lucene => "%Y-%m-%dT%H:%M:%S%z"

Tire.index('events_stackoverflow_demo').delete

class Event
  include Tire::Model::Persistence

  property :title
  property :starts_at, type: 'date'
  property :ends_at,   type: 'date'

  index_name 'events_stackoverflow_demo'
end

Event.create id: 1, title: 'Test 1', starts_at: 2.days.ago, ends_at: 1.days.ago
Event.create id: 2, title: 'Test 2', starts_at: 1.day.ago,  ends_at: 1.day.since
Event.create id: 3, title: 'Test 3', starts_at: 1.day.since

Event.tire.index.refresh

upcoming = Event.search do
  query do
    boolean minimum_number_should_match: 1 do
      should { string "_exists_:ends_at AND ends_at:[#{Time.now.to_s(:lucene)} TO *]"  }
      should { string "_missing_:ends_at AND starts_at:[#{Time.now.to_s(:lucene)} TO *]"  }
    end
  end

  p to_curl

end.results

puts "---"

p upcoming
于 2012-03-19T21:35:40.407 に答える