On 6/6/2014 2:32 AM, O. Klein wrote:
> Is there a way to tokenize 12-6-2014 as 12 june 2014 and the other way around
> as well?
>
> Making it possible for people to search on text and numbers for dates?

Dates in Solr (if you use an actual date field, and not a text field)
follow strict interpretation of ISO 8601.  Here is an example of a
date/time in this format:

2014-06-06T03:07:29Z

Solr only displays and accepts time in UTC.  Although the ISO standard
does have an additional form that includes the timezone offset, this
extension won't work with Solr.

If you want human readable dates as output or input, your code must
convert them to/from the format that Solr expects.

Thanks,
Shawn

Reply via email to