Re: Search substring in field

2017-05-10 Thread Emir Arnautovic
Hi, Solr works on top of data structure called inverted index . You can misuse it and do not invert your documents and use regex or wildcards to find matches, but that is not the way to use it - it'll be significantly slower. Solr does support su

Re: Search substring in field

2017-05-09 Thread jnobre
Hello, Thanks for your response. I realize the concept, but I do not know which one to use in my case. Not exactly the difference between the analyzes. 1- At this moment I search for "source": * "hello word" * or url = http://:8983/solr/AWP10/select?Indent=on&q=source:*%22hello%20world%22*&w

Re: Search substring in field

2017-05-05 Thread Emir Arnautovic
Hi, I would start from https://cwiki.apache.org/confluence/display/solr/Understanding+Analyzers%2C+Tokenizers%2C+and+Filters And this https://cwiki.apache.org/confluence/display/solr/Solr+Field+Types And after that https://cwiki.apache.org/confluence/display/solr/Query+Syntax+and+Parsing P