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.

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.



FAST Query Parser (Aspire 2)
Factory Name com.searchtechnologies.aspire:aspire-fast-qpl
subType default
Inputs An element in the AspireObject associated with the Job
Outputs A Job variable

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