Query Syntax

Field
You can search any field by typing the field name followed by a colon ":" and then the term you are looking for. If you want to find documents which has "intra-mart" as the document title, you can enter:
title:intra-mart
The available fields are "url", "host", "site", "title", "content", "contentLength", "lastModified" and "mimetype", and they are customizable.
Sort
sort field sorts documents by a specified field name. The format is "sort:<field>.<order>", where <order> is asc or desc. If you want to find documents which has "intra-mart" and sort them in descending order, you can enter:
intra-mart sort:contentLength.desc
The available sort field are "created", "contentLength" and "lastModified", and they are customizable.
AND
AND operator is the default conjunction operator. You can omit it from a query. AND operator matches documents where both terms exist anywhere in the text of a single document.
intra-mart AND Solr
OR
OR operator matches documents where any terms exist anywhere in the text of a single document.
intra-mart OR Solr
Wildcard
single and multiple character wildcard searches within single terms are supported. "?" symbol is a single character wildcard search, and "*" is a multiple character wildcard search.
intra-mart*
or
Fe?s
Range
Range Queries allow one to match documents whose field(s) values are between the lower and upper bound specified by the Range Query. Range Queries can be inclusive or exclusive of the upper and lower bounds. If you want to find documents whose contentLength fields have values between 1000 and 10000, inclusive, you can enter:
contentLength:[1000 TO 10000]
If you want to exclude the upper and lower bounds, use "{}".
Boost
To boost a term use the "^" symbol with a boost factor (a number) at the end of the term you are searching.
intra-mart^100
Fuzzy
To do a fuzzy search use the "~" symbol at the end of a single word term. For example to search for a term similar in spelling to "intra-mart" use the fuzzy search:
intra-mart~0.5

Others

Add To Browser Search Engines
Click here to add a search engine list for your browser.

Back to top