Re: Converting java date to solr date and querying dates

2009-12-17 Thread Lance Norskog
Or add a new field type to Solr. This would accept a date and include a Java formatting string. The field would parse the date, print it with that format string, and store the results. You could use any aspect of the date. On Tue, Dec 15, 2009 at 1:06 PM, Chris Hostetter wrote: > > :       i want

Re: Converting java date to solr date and querying dates

2009-12-15 Thread Chris Hostetter
: i want to store dates into a date field called publish date in solr. : how do we do it using solrj I'm pretty sure that when indexing docs, you can add Date objects directly to the SolrInputDocument as field values -- but 'm not 100% certain (i don't use SolrJ much) : likewise ho