The FAST query parser is designed to take a query in FQL from an Aspire document and parse it in to Search Technologies' query processing language (QPL - Introduction to QPL). The output of the parsing is to a Job variable.

 

FAST Query Parser
Factory Namecom.searchtechnologies.aspire:aspire-fast-qpl
subType

default

InputsAn element in the AspireObject associated with the Job
OutputsA Job variable

Configuration

ElementTypeDefaultDescription
fqlPathString/doc/queryThe path to the element in the Aspire document that holds the FQL to parse.
jobVariableStringqplThe name of the job variable that will be used to hold QPL output from the parser.

Example Configuration

Simple

 <component subType="default" name="QueryParser" factoryName="aspire-fast-qpl"/>

Complex

 <component subType="default" name="QueryParser" factoryName="aspire-fast-qpl">
   <fqlPath>/doc/query</fqlPath>
   <debug>true</debug>
   <jobVariable>qpl</jobVariable>
 </component>
  • No labels