Why does this return results:
@results = Index.search "#{@keywords}", :with => {
:published_on => 1.week.ago..Time.now,
}
but not this?
@results = Index.search "#{@keywords}", :with => {
:published_on => '2011-04-01'..'2011-04-08',
}
published_on is a datetime field, but I have tried it with hour, minutes and seconds as well.