On 9/3/2013 3:59 AM, devendra W wrote:
> in my case - the fields with apostrophe not returned in results

Don't use special characters in field names.  If it wouldn't work as an
variable name, function name (or other identifier) in a typical
programming language (Java, C, Perl), then it will probably cause you
problems with a field name.

This basically means: 7-bit ASCII only.  Starts with a letter, contains
only letters, numbers, and the underscore.

Most punctuation other than the underscore has a special meaning to
Solr.  Using extended characters (UTF-8, or those beyond 7-bit ASCII)
*might* work, but it's fairly easy to screw that up and use the wrong
character set, so it's better if you just don't do it.

Thanks,
Shawn

Reply via email to