Tips for Effective SearchingThe History Cooperative uses swish++ for our search backend, Swish++ supports full boolean searches and more. Here are some examples from the Swish++ documentation: |
Simple QueriesThe query:
will return all documents that contain ``library,'' ``libraries,'' or ``librarian.'' The query:
will return only those documents regarding the kind of mice attached to a computer and not the rodents. The query:
will return only those documents regarding cats. The query:
will return only those documents regarding mice (the rodents) and not the kind attached to a computer. The query:
is the same as:
in that they will both return only those documents regarding either mice attached to a computer or any kind of keyboard. However, neither of those is the same as:
that will return only those documents regarding mice and either a computer or a keyboard. Queries Using Meta DataThe query:
will return only documents in which the META author attribute contains "carroll". The query:
will return only those documents whose author attribute contains "stevenson" and also regarding treasure. The query:
will return only those documents whose author is Lewis Carroll. The query:
will return only those documents whose author is Lewis Carroll or that contain the word "wonderland" anywhere in the document regardless of the author.
|