You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@lucene.apache.org by Furkan KAMACI <fu...@gmail.com> on 2013/12/01 23:59:49 UTC

getFieldQuery Method of edismax

Hi;

I am customizing edismax. Here is some lines of codes from edismax:

    @Override
    protected Query getFieldQuery(String field, String val, boolean quoted)
throws SyntaxError {
      this.type = QType.FIELD;
      this.field = field;
      this.val = val;
      this.slop = getPhraseSlop(); // unspecified
      return getAliasedQuery();
    }

What is the difference between getFieldQuery of SolrQueryParserBase and
edismax's getFieldQuery?

Thanks;
Furkan KAMACI