Re: Solr date and string search problem

2009-11-17 Thread Chris Hostetter
: PlantSearch^1 GeographySearch^1 RegionSearch^1 : CountrySearch^1 BusUnitSearch^1 BusinessFunctionSearch^1 : Businessprocesses^1 LifecycleStatus^1 ApplicationNature^1 UploadedDate^1 : : PlantSearch^1 GeographySearch^1 RegionSearch^1 : CountrySearch^1 BusUnitSearch^1 BusinessFunctionS

Re: Solr date and string search problem

2009-11-16 Thread Lance Norskog
If you search a 'date' field you have to give it a correct UTC formatted string. You can have a copy of the date field into a string field, and search the string. These will have to be pure UTC formatted strings also. The directive can do this copying for you. The target field does not have to be

Re: Solr date and string search problem

2009-11-15 Thread ashokcz
Hi Lance Norskog , Thanks for your reply. Let me first put the config files details. These are the fields i have defined

Re: Solr date and string search problem

2009-11-14 Thread Lance Norskog
This line is the key: > SEVERE: org.apache.solr.core.SolrException: Invalid Date String:'Behavior' >at org.apache.solr.schema.DateField.toInternal(DateField.java:108) >at The string 'Behavior' is being parsed as a date, and fails. Your query is attempting to find this as a date. Pl