Free Framers Mailing List Archives


Query: [How to search]

Display: Description: Sort:

Query

Single term query

This query specifies only one term for retrieving all documents which contain the term. For example,

namazu

AND query

This query specifies two or more terms, and retrieves all indexed documents that contain both terms. You can insert the and operator between the terms. For example,

Linux and Netscape

Because the and operator is assumed between terms separated by one or more spaces, it can be omitted.

OR query

This query specifies two or more terms, and retrieves all indexed documents which contain either one of the terms. You insert the or operator between the terms in your query. For example,

Linux or FreeBSD

NOT query

This query specifies two or more terms, and retrieves all indexed documents which contain the first term but do not contain the following terms. You insert the not operator between the terms in the NOT query. For example,

Linux not UNIX

Grouping

You can group queries by surrounding them with parentheses. The parentheses should be separated from the terms by one or more spaces. For example,

( Linux or FreeBSD ) and Netscape not Windows

Phrase searching

You can search for a phrase composed of two or more terms by surrounding the terms with double quotes, "...", or with braces, {...}. For example,

{GNU Emacs}

In Namazu, the accuracy of phrase searching is not 100%, so erroneous results may be returned.

Substring matching

The are three types of substring match searches.

Prefix matching
inter* (terms which begin with inter)
Inside matching
*text* (terms which contain text)
Suffix matching
*net (terms which end with net)

Regular expressions

You can use regular expressions for pattern matching. The regular expressions must be surrounded by slashes: /.../. Namazu uses Ruby's regular expressions engine. It offers Perl compatible flavor. For example,

/pro(gram|blem)s?/

Field-specific searching

You can limit your search to specific fields such as Subject:, From:, Message-Id:. This type of query is especially convenient for Mail/News documents. For example,

Notes


This search system is powered by Namazu