Well, i'm coding some methods for returning solr docs that mach a interval date range.
Docs stored date fields with ISO 8601 format.
Any idea?
thx
|
I want to get all results AFTER a given date, can you do this with solr?
(http://lucene.apache.org/solr/)
Right now the results are search the entire result set, I want to filter ... |
In the solr admin (www.example.com:8065/solr/admin/file/?file=schema.xml, my schema.xml looks like:
<field name="unique_id" type="string" indexed="true" stored="true" required="true"/>
<field name="collapse" type="string" indexed="true" stored="true"/>
<field name="roles" type="string" indexed="true" stored="true" multiValued="true"/>
<field name="apptype" type="string" indexed="true" stored="true"/>
<field name="attachmentname" type="string" indexed="true" stored="true"/>
<field ...
|
Is it possible to search on date ranges using Lucene in Java? How do I build Lucene search queries based on date fields and dates ranges? For example:
- between specified dates
- prior to ...
|
We have set up an Solr index containing 36 million documents (~1K-2K each) and we try to query a maximum of 100 documents matching a single simple keyword. This works pretty ... |
I index some data include date in solr
but when search for specific date, i get some record (not all record) include some record in next day for example:
http://localhost:8080/solr/select/?q=pubdate:[2010-03-25T00:00:00Z ... |
Date ranges including BC dates is this possible?
I would like to return facets for all years between 11000 BCE (BC) and 9000 BCE (BC) using SOLR.
A sample query might be ... |
|
According to the Apache Solr documentation on facets, I can use keys because: 'This can be helpful when faceting on the same field multiple times with different exclusions.'
I need ... |
1)I have a field storing timestamp as text (YYYYMMDDHHMM). Can i get the results as i get with date faceting? (July(30),August(54) etc)
As per my knowledge Solr currently doesn't support range faceting, ... |
I'm using ColdFusion 9.0.1 and the integrated SOLR full text search engine.
I have dates stored in my SQL Server database as datetime fields for upcoming events. I took these records and ... |
I'm using the Stats component in solr to do get faceted statistics, which works very well, and now I'm interested in doing the same for my date fields. But it seems ... |
I am new to solr and this is my first attempt at indexing solr data, I am getting the following exception while indexing,
org.apache.solr.common.SolrException: Invalid Date String:'2011-01-07'
at org.apache.solr.schema.DateField.parseMath(DateField.java:165)
... |
I am trying to facet based on date field and apply user timezone offset so that the faceted results are in user timezone. My faceted result is given below,
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst ...
|
We are using SOLR 3.1 and facing many problems with dates.
We are using database Sql Server 2005. So, when we imported data from database to collection, the first problem we ... |
I´m using solr 3.2 version.
I need to get the current date in this format: yyyyMMdd and then use that result in a delta query
I´ve tried using this wiki |
When querying SolR with a date SolR will actually highlight stuff from the text field where it matches elements from the date, typically year.
So a query like:
q=text:(John)++AND+date:[2010-01-01T00:00:00Z+TO+2019-12-31T23:59:59Z]&hl=true
Will return snippets like:
blabla bla ...
|
if have the problem to execute multiple Solr queries at ones with the same phrase but for different timeranges.
Example:
search for "atom" at:
2011-04-01T10:20:22.0Z TO 2011-04-01T12:20:22.0Z
2011-03-08T10:20:22.0Z TO 2011-03-08T12:20:22.0Z
2011-02-05T10:20:22.0Z TO 2011-02-05T12:20:22.0Z
So i need ... |
I have a scenario in which I have an object which has an availability property assosiated with it. I have encoded the dates in a month as a 32 bit binary ... |