Help:Search
The quickest way to find information in the Traditional Tune Archive is to look it up directly. On every page there is a search box.
CirrusSearch is a Traditional Tune Archive extension that uses Elasticsearch to provide enhanced search features over the default TTA search. The Wikimedia Foundation uses CirrusSearch for all Wikimedia projects. This page describes the features of CirrusSearch.
How it works
Enter key words and phrases and press Enter or Return on your keyboard. Or click the magnifying glass icon, Search, or Go button. If a Tune has the same title as what you entered you will be directed to that page. Otherwise, it searches all pages on the wiki, and presents a list of articles that matched your search terms, or a message informing you that no page has all the key words and phrases.
If you click the search button without filling in anything, you will be taken to "Special:Search" which gives you extra searching options (also available from any search results list)
You may find it useful to restrict a search to pages within a particular namespace e.g., only search within the Book pages. Check the namespaces you require for this search.
By default only the namespaces specified in your preferences will be searched. Logged-in users can change their preferences to specify the namespaces they want to search by default. This can be done by selecting and deselecting boxes in the ”search” section of user preferences.
Adding additional default namespaces has a side effect of changing the autocomplete algorithm from the default to a somewhat stricter algorithm.
What's improved?
CirrusSearch features three main improvements over the default MediaWiki search, namely:
- Better support for searching in different languages.
- Faster updates to the search index, meaning changes to articles are reflected in search results much faster.
- Expanding templates, meaning that all content from a template is now reflected in search results.
How frequently is the search index updated?
Updates to the search index are done in near real time. Changes to pages should appear immediately in the search results. Changes to templates should take effect in articles that include the template in a few minutes. The templates changes use the job queue, so performance may vary. A null edit to the article will force the change through, but that shouldn't be required if everything is going well.
Search suggestions
The search suggestions you get when you type into the search box that drops down candidate pages is sorted by a rough measure of article quality.
This takes into account the number of incoming wikilinks, the size of the page, the number of external links, the number of headings, and the number of redirects.
Search suggestions can be skipped and queries will go directly to the search results page. Add a tilde ~
before the query. Example "~Jackie Layton". The search suggestions will still appear, but hitting the Enter key at any time will take you to the search results page.
ASCII/accents/diacritics folding is turned on for English text, but there are some formatting problems with the result.
Full text search
A "full text search" is an "indexed search". All pages are stored in the wiki database, and all the words in the non-redirect pages are stored in the search database, which is an index to practically the full text of the wiki. Each visible word is indexed to the list of pages where it is found, so a search for a word is as fast as looking up a single-record. Note that the tagline is not part of the actual content. To see the searchable content for a page append ?action=cirrusdump to the URL. Furthermore, for any changes in wording, the search index is updated within seconds. There are many indexes of the "full text" of the wiki to facilitate the many types of searches needed. The full wikitext is indexed many times into many special-purpose indexes, each parsing the wikitext in whatever way optimizes their use. Example indexes include:
- "auxiliary" text, includes hatnotes, captions, ToC, and any wikitext classed by an HTML attribute.
- "Lead-in" text is the wikitext between the top of the page and the first heading.
- The "category" text indexes the listings at the bottom.
- Templates are indexed. If the transcluded words of a template change, then all the pages that transclude it are updated. (This can take a long time depending on a job queue.) If the subtemplates used by a template change, the index is updated.
- Document contents that are stored in the File/Media namespace are now indexed. Thousands of formats are recognized.
There is support for dozens of languages, but all languages are wanted. There is a list of currently supported languages at elasticsearch.org; see their documentation on contributing to submit requests or patches.
CirrusSearch will optimize your query, and run it. The resulting titles are weighted by relevance, and heavily post-processed, 20 at a time, for the search results page. For example snippets are garnered from the article, and search terms are highlighted in bold text.
Search results will often be accompanied by various preliminary reports. These include Did you mean (spelling correction), and, when no results would otherwise be found it will say Showing results for (query correction) and search instead for (your query).
Search features also include:
- sorting navigation suggestions by the number of incoming links.
- Starting with the tilde character ~ to disable navigation and suggestions in such a way that also preserves page ranking.
- Smart-matching characters by normalizing (or "folding") non-keyboard characters into keyboard characters.
- Words and phrases that match are highlighted in bold on the search results page. The highlighter is a cosmetic analyzer, while the search-indexing analyzer actually finds the page, and these may not be 100% in sync, especially for regex. The highlighter can match more or less accurately than the indexer.
Words, phrases, and modifiers
The basic search term is a word or a "phrase in quotes". Search recognizes a "word" to be:
- a string of digits
- a string of letters
- subwords between letters/digit transitions, such as in txt2regex
- subwords inside a compoundName using camelCase
A "stop word" is a word that is ignored (because it is common, or for other reasons). Stop words are rarely called for in CirrusSearch, except for when they are in certain kinds of phrases, as explained below. A given search term matches against content (rendered on the page). To match against wikitext instead, use the insource search parameter (See section below). Each search parameter has its own index, and interpret its given term in its own way. CirrusSearch parameters do not use a consistent way to handle these search terms.
Spacing between words, phrases, parameters, and input to parameters, can include generous instances of whitespace and greyspace characters. "Greyspace characters" are all the non-alphanumeric characters ~!@#$%^&*()_+-={}|[]\:";'<>?,./
. A mixed string of greyspace characters and whitespace characters, is "greyspace", and is treated as one big word boundary. Greyspace is how indexes are made and queries are interpreted. The same analyzer used to index the wikitext is also used to interpret the query.
Two exceptions are where 1) an embedded:
colon is one word (it being treated as a letter), and 2) an embedded comma ,
such as in 1,2,3
, is treated as a number.
Greyspace characters are otherwise ignored unless, due to query syntax, they can be interpreted as modifier characters.
The modifiers are ~ * \? - " !
. Depending on their placement in the syntax they can apply to a term, a parameter, or to an entire query. Word and phrase modifiers are the wildcard, proximity, and fuzzy searches. Each parameter can have their own modifiers, but in general:
- A fuzzy-word or fuzzy-phrase search can suffix a tilde
~
character (and a number telling the degree). - A tilde
~
character prefixed to the first term of a query guarantees search results instead of any possible navigation. - A wildcard character inside a word can be a (escaped) question mark
\?
for one character or an asterisk*
character for more. - Truth-logic can interpret
AND
andOR
, but parameters cannot. - Truth-logic understands
-
or!
prefixed to a term to invert the usual meaning of the term from "match" to "exclude".
Words that begin with - or !, such as -in-law or !Kung can exactly match titles and redirects, but will also match every document that does not contain the negated word, which is usually almost all documents. To search for such terms other than as exact matches for titles or redirects, use the insource search parameter.
- Quotes around words mark an "exact phrase" search. For parameters they are also needed to delimit multi-word input.
- Stemming is automatic but can be turned off using an "exact phrase".
</translate>
The two wildcard characters are the star and the (escaped) question mark, and both can come in the middle or end of a word. The escaped question mark \?
stands for one character and the star *
stands for any number of characters. Because many users, instead of writing a query, will ask a question, any question mark is ignored unless purposefully escaped \?
into its wildcard meaning.
A phrase search can be initiated by various hints to the search engine. Each method of hinting has a side-effect of how tolerant the matching of the word sequence will be. For greyspace, camelCase, or txt2number hints: </translate> <translate>
- given
words-joined_by_greyspace(characters)
orwordsJoinedByCamelCaseCharacters
it findswords joined by
...characters
, in their bare forms or greyspace forms. txt2number
will matchtxt 2 number
ortxt-2.number
- Stop words are enabled for the edge cases (in the periphery) of a grey_space or camelCase phrase. An example using
the
,of
, anda
is thatthe_invisible_hand_of_a
matchesmeetings invisible hand shake
.
A "search instead" report is triggered when a universally unknown word is ignored in a phrase.
Each one of the following types of phrase-matching contains and widens the match-tolerances of the previous one:
- An "exact phrase" "in quotes" will tolerate (match with) greyspace. Given
"exact_phrase"
or"exact phrase"
it matches"exact]phrase"
. - A greyspace_phrase initiates stemming and stop word checks.
- Given
CamelCase
it will additionally matchcamelcase
, in all lowercase, because CirrusSearch is not case sensitive in matching.
Page ranking saves you from typing quotes for a two-word search. With no quotes a word-pair index is used in page-ranking, plus it finds the two words anywhere on the page.
Some parameters interpret greyspace phrases, but other parameters, like insource
only interpret the usual "phrase in quotes".
In search terminology, support for "stemming" means that a search for "swim" will also include "swimming" and "swimmed", but not "swam".
Search phrase | parserfunction | parserFunction | parser function | parser-function | parser:function | parSer:funcTion |
---|---|---|---|---|---|---|
parserfunction | ✔ | ✔ | ||||
"parser function" | ✔ | ✔ | ||||
parser_function | ✔ | ✔ | ✔ | |||
parserFunction | ✔ | ✔ | ✔ | ✔ | ||
"parser:function" | ✔ | ✔ | ||||
"parser_function" | ✔ | ✔ | ||||
"parSer_funcTion" | ✔ | ✔ | ||||
parSer_FuncTion | ✔ | ✔ | ✔ | ✔ |
Note that all stemming is case insensitive.
<translate> Note how the "exact phrase" search interpreted the embedded:colon character as a letter, but not the embedded_underscore character. A similar event occurs with the comma <tvar|comma>,</> character inside a number.
Given <tvar|inthisword>in:this:word
</>, CirrusSearch, when in an "exact phrase" context, (which includes the insource parameter context), will not match <tvar|in>in
</>, <tvar|this>this
</>, or <tvar|word>word
</>, but will then only match <tvar|inthiswordcolon>in:this:word
</>.
Otherwise, remember that for CirrusSearch words are letters, numbers, or a combination of the two, and case does not matter.
The common word search employs the space character and is aggressive with stemming, and when the same words are joined by greyspace characters or camelCase they are aggressive with phrases and subwords.
When common words like "of" or "the" are included in a greyspace-phrase, they are ignored, so as to match more aggressively.
A greyspace_phrase search term, or a camelCase, or a txt2number term, match the signified words interchangeably. You can use any of those three forms.</translate>[1] <translate> Now <tvar|camelcase>camelcase</> matches <tvar|camelCase>camelCase</> because Search is not case sensitive, but <tvar|camelCase2>camelCase</> matches <tvar|camelcase2>camelcase</> because camelCase is more aggressive. Like the rest of Search, subword "words" are not case-sensitive. By comparison the "exact phrase" is greyspace oriented and ignores numeric or letter-case transitions, and stemming. "Quoted phrases" are not case sensitive.
From the table we can surmise that the basic search <tvar|parser_function>parser_function -"parser function"</> is the sum of the basic searches <tvar|parserFunction>parserFunction
</> and <tvar|parser>parser<stems> function<stems>
</>.
Making inquiries with numbers, we would find that: </translate> <translate>
- <tvar|Plan9>Plan9</> or <tvar|Plan_9>Plan_9</> matches any of: <tvar|plan9>
plan9
</>, <tvar|plans9>plans 9
</>, <tvar|planned9th>planned 9th
</>, <tvar|planned92>(planned) 9.2
</>, <tvar|plans>"plans" (9:24)
</> - <tvar|plan92>"plan9"</> only matches <tvar|plan93>
plan9
</> (case insensitive) - <tvar|planast>Plan*9</> matches <tvar|plan94>
plan9
</> or <tvar|planet>planet4589
</>.
</translate> <translate> The star <tvar|asterisk>*</> wildcard matches a string of letters and digits within a rendered word, but never the beginning character. One or more characters, a percentage of the word, must precede the <tvar|asterisk1>*</> character. </translate> <translate>
- If the leading part is only letters then it will limit a match to a string of (zero of more) letters.
- If only numbers, then it will limit a match to a sequence of (zero or more) numbers, including also ordinal letters (st, nd, rd), capital letters, or time abbreviations (am or pm); and it will match the entirety of (both sides of) a decimal numbers.
- Otherwise the comma is considered part of one number, but the decimal point is considered a greyspace character, and will delimit two numbers.
- Inside an "exact phrase" it matches stemming plus compounding.
</translate> <translate> The <tvar|quest>\?</> wildcard represents one letter or number; The <tvar|bsq>*\?</> is also accepted, but <tvar|bsqast>\?*</> is not recognized.
The wildcards are for basic word, phrase, and insource searches, and may also be an alternative to (some) advanced regex searches (covered later).
Putting a tilde <tvar|tilde>~</> character after a word or phrase activates a fuzzy search. </translate> <translate>
- For a phrase it is termed a proximity search, because proximal words are tolerated to an approximate rather than exact phrase.
- For example, <tvar|exact12p>"exact one two phrase"~2</> matches <tvar|exact>
exact phrase
</>. - For a word it means extra characters or changed characters.
- For a phrase a fuzzy search requires a whole number telling it how many extra words to fit in, but for a word a fuzzy search can have a decimal fraction, defaulting to <tvar|word05>word~0.5</> (<tvar|wordtilde>word~.5</>), where at most two letters can be found swapped, changed, or added, but never the first two letters.
- For a proximity phrase, a large number can be used, but that is an "expensive" (slow) search.
- For a word <tvar|wordtilde1>word~2</> is most fuzzy with an edit distance of 2 (default), and <tvar|wordtilde9>word~1</> is least fuzzy, and <tvar|wordtilde12>word~0</> is not fuzzy at all.
</translate>
flowers algernon | Flowers for Algernon | flowers are for Algernon | Flowers a1 2b 3c 4f 5j 6l 7j 8p q9 z10 for Algernon | |
"flowers algernon" | ||||
"flowers algernon"~0 | ||||
"flowers algernon"~1 | ||||
"flowers algernon"~2 | ||||
"flowers algernon"~11 | ||||
"algernon flowers"~1 | ||||
"algernon flowers"~2 | ||||
"algernon flowers"~3 | ||||
"algernon flowers"~4 | ||||
"algernon flowers"~13 |
<translate> For the closeness value necessary to match in reverse (right to left) order, count and discard all the extra words, then add twice the total count of remaining words minus one. (In other words, add twice the number of segments). For the full proximity algorithm, see [<tvar|esslop>https://www.elastic.co/guide/en/elasticsearch/guide/current/slop.html</> Elasticsearch slop]. An explicit <tvar|and>AND</> is required between two phrases because otherwise the two "inner" "quotation marks" are confused. </translate> <translate> Quotes turn off stemming, <tvar|appendtilde>"but appending"~</> the tilde reactivates the stemming. </translate>
flowers | flower | Flowers for Algernon | flower for Algernon | ||
flowers | <translate> Stemming is in effect.</translate> | ||||
"flowers" | <translate> Proximity search turns off stemming. </translate> | ||||
"flowers"~ | <translate> Proximity plus stemming by suffixing a tilde. </translate> | ||||
"flowers for algernon" | <translate> Proximity search turns off stemming. </translate> | ||||
"flowers for algernon"~ | <translate> Proximity plus stemming by suffixing a tilde. </translate> | ||||
"flowers algernon"~1 | <translate> Proximity search turns off stemming. </translate> | ||||
"flowers algernon"~1~ | <translate> Proximity plus stemming by suffixing a tilde. </translate> |
<translate>
Insource
</translate> Template:MW version
<translate>
Insource searches can be used to find any one word rendered on a page, but it's made for finding any phrase you might find - including MediaWiki markup, on any page except redirects. This phrase completely ignores greyspace: <tvar|issa>insource: "state state autocollapse"</> matches <tvar|state>|state={{{state|autocollapse}}}
</>.
</translate>
insource: word insource: "word1 word2" |
<translate> Greyspace characters are ignored, just as they are with word searches and exact-phrase searches.</translate> |
insource:/regexp/ insource:/regexp/i |
<translate> These are [[<tvar|regex>w:regular expression</>|regular expressions]]. They aren't efficient, so we can only allow a few at a time on the search cluster, but they are very powerful. The version with the extra <tvar|i> |
<translate> Insource complements itself. On the one hand it has full text search for any word in the wikitext, instantly. On the other hand it can process a regexp search for any string of characters.</translate>[2] <translate> Regex scan all the textual characters in a given list of pages; they don't have a word index to speed things up, and the process is interrupted if it must run more than twenty seconds. Regex run last, so to limit needless character-level scanning, you advance it a list of pages (a search domain) selected by an indexed search added to the query as a "clause", and you do this to every single regex query.</translate>[3]. <translate> Insource can play both roles, and the best candidate for <tvar|insourcearg>insource:/arg/</> is often <tvar|insourcearg2>insource: arg</>, where arg is the same.
The syntax for the regexp is <tvar|insource>insource:</> no space, and then <tvar|regexp>/regexp/</>. (No other parameter disallows a space. All the parameters except <tvar|regex>insource:/regexp/</> generously accept space after their colon.)
Insource indexed-search and regexp-search roles are similar in many respects: </translate> <translate>
- Both search wikitext only.
- Neither finds things "sourced" by a [[<tvar|transclusion>Special:MyLanguage/Help:Transclusion</>|transclusion]].
- Neither does stemmed, fuzzy, or proximity searches.
- Both want the fewest results, and both work faster when accompanied by another clause.
</translate> <translate> But indexed searches all ignore greyspace; wildcards searches do not match greyspace, so regex are the only way to find an exact string of any and all characters, for example a sequence of two spaces. Regex are an entirely different class of search tool that make matching a literal string easy (basic, beginner use), and make matching by metacharacter expressions possible (advanced use) on the wiki. See [[<tvar|regexanchor>#Regular expression searches</>]] below. </translate> Lua error: expandTemplate: template loop detected.
Lua error: expandTemplate: template loop detected.
Lua error: expandTemplate: template loop detected.
<translate>
Prefix and namespace
For Search, a namespace term functions to specify the initial search domain. Instead of searching the entire wiki, the default is the main namespace (mainspace).
Only one namespace name can be set from the search box query. It is either the first term or in the last term, in a prefix parameter.
Two or more namespaces may be searched from the Advanced pane of the search bar found on the top of every search results page, Special:Search. Your search domain, as a profile of namespaces, can be set here (without going to the user preferences page). The namespaces list will then present itself on the first page of future search results to indicate the search domain of the search results. To unset this, select the default namespace (shown in parentheses), select "Remember", and press Search.
The search bar graphically sets and indicates a search domain. "Content pages" (mainspace), "Multimedia" (File), "Everything" (all plus File), "Translations", etc., are hyperlinks that can activate the query in that domain, and then indicate this by going inactive (dark). But the query will override the search bar. When a namespace or prefix is used in the query the search bar activations and indications may be misleading, so the search bar and the search box are mutually exclusive (not complementary) ways to set the search domain.
A namespace term overrides the search bar, and a prefix term overrides a namespace.
Enter a namespace name, or enter <tvar|all>all:
</>, or enter a <tvar|colon>:
</> colon for mainspace.</translate>
<translate>
All does not include the File namespace. File includes media content held at Commons such as PDF, which are all indexed and searchable.
</translate>
<translate>
When File is involved, a namespace modifier <tvar|local>local:
</> has an effect, otherwise it is ignored.
</translate>
<translate>
Namespace aliases are accepted.</translate>
talk: "Wind clock" | <translate> Find pages in the Talk namespace whose title or text contains the phrase "wind clock".</translate> |
file: "Wind clock" | <translate> Find pages in File namespace, whose title, text, or media content contains the phrase "wind clock".</translate> |
file: local: "Wind clock" | <translate> Filter out results from Commons wiki.</translate> |
local: "Wind clock" | <translate> Ignored.</translate> <translate> Searches mainspace. Local is ignored unless File is involved.</translate> |
<translate> As with search parameters, local and all must be lowercase. Namespaces names are case insensitive.
The <tvar|prefixcolon>prefix:</> parameter matches any number of first-characters of all pagenames in one namespace.</translate>[4] <translate> When the first letters match a namespace name and colon, the search domain changes. </translate> <translate> Given a namespace only, prefix will match all its pagenames. Given one character only, it cannot be - dash or ' quote or " double quote. The last character cannot be a colon. </translate> <translate> For pagenames that match, their subpage titles match by definition. </translate> <translate> The prefix parameter does not allow a space before a namespace, but allows whitespace before a pagename. </translate>
prefix:cow | c_o_w>c o w</>.</translate> |
domestic prefix:cow | c_o_w2>c o w</>, and that contain the word "<tvar|domestic2>domestic</>".</translate> |
domestic prefix:cow/ | Cow>Cow</> but only if they contain the word "<tvar|domestic5>domestic</>".</translate> <translate> This is a very common search and is frequently built using a special URL parameter called <tvar|prefixequal>prefix=</>.</translate> |
domestic prefix:Talk:cow/ | talkcow2>Talk:cow</>, but only if they contain the word "<tvar|domestic6>domestic</>".</translate> |
1967 prefix:Pink Floyd/ | <translate> List any subpages of Pink Floyd, but only if it also contains the word "1967".</translate> |
<translate> The prefix parameter goes at the end so that pagename characters may contain " quotation marks.
The [[<tvar|extrans>Extension:Translate</>|Translate extension]] creates a sort of "language namespace", of translated versions of a page. But unlike namespace or prefix, which create the initial search domain, the <tvar|inlang>inlanguage</> parameter is a filter of it. (See the next section.)
Exclude content from the search index
Content can be excluded from the search index by adding <tvar|css-class>class="navigation-not-searchable"
</>. This will instruct CirrusSearch to ignore this content from the search index (see <tvar|phab>Template:Phab</> for more context).
Additionally content can be marked as auxiliary information by adding <tvar|css-class>class="searchaux"
</>. This will instruct CirrusSearch to move the content from the main text to an auxiliary field which has lower importance for search and snippet highlighting. This distinction is used for items such as image thumbnail descriptions, 'see also' sections, etc.
Filters
A filter can have multiple instances, and negated instances, and it can run as a standalone filtering a search domain. A query is formed as terms that filter a search domain. A namespace or a prefix term is not a filter because a namespace will not run standalone, and a prefix will not negate.
Adding another word, phrase, or parameter filters more. A highly refined search result may have very many Y/N filters when every page in the results will be addressed. (In this case ranking is largely irrelevant.) Filtering applies critically to adding a regex term; you want as few pages as possible before adding a regex (because it can never have a prepared index for its search).
The search parameters below are filters.
Insource (covered above) is also a filter, but <tvar|regexp>insource:/regexp/</> is not a filter. Filters and all other search parameters are lowercase. (Namespaces are an exception, being case insensitive.)
Intitle and incategory
Word and phrase searches match in a title and match in the category box on bottom of the page. But with these parameters you can select titles only or category only.
- <tvar|cowast>cow*</>
- Find articles whose title or text contains words that start with cow
</translate> <translate>
- <tvar|itfoo>intitle:foo</>
- Find articles whose title contains foo. Stemming is enabled for foo.
- <tvar|itfineline>intitle:"fine line"</>
- Find articles whose title contains fine line. Stemming is disabled.
- <tvar|itfoobar>intitle:foo bar</>
- Find articles whose title contains foo and whose title or text contains bar.
- <tvar|itfoo_bar>-intitle:foo bar</></translate>
<translate>
- Find articles whose title does not contain foo and whose title or text contains bar.
- <tvar|icmusic>incategory:Music</>
- Find articles that are in Category:Music
- <tvar|icmusichistory>incategory:"music history"</>
- Find articles that are in Category:Music_history</translate>
<translate>
- <tvar|icmusicals>incategory:"musicals" incategory:"1920"</>
- Find articles that are in both Category:Musicals and Category:1920
- <tvar|icmusicalsnot>-incategory:"musicals" incategory:"1920"</>
- Find articles that are not in Category:Musicals but are in Category:1920
</translate> <translate> Intitle and incategory are old search parameters. Incategory no longer searches any subcategory automatically, but you can now add multiple category pagenames manually. </translate>
Deepcategory
<translate> Deep category search allows to search in category and all subcategories. The depth of the tree is limited by 5 levels currently (configurable) and the number of categories is limited by 256 (configurable). The deep search uses [[<tvar|1>Special:MyLanguage/Wikidata Query Service/Categories</>|SPARQL Category service from WDQS]]. Keywords are deepcategory or deepcat. Example:
- <tvar|dcmusicals>deepcat:"musicals"</>
- Find articles that are in Category:Musicals or any of the subcategories.
Previously this parameter was implemented by a gadget: to get the search parameter deepcat, to automatically add up to 70 subcategories onto an incategory parameter, <tvar|incategory>incategory:category1|category2|...|category70</>, you can add a line to your Custom JavaScript.</translate>[5] <translate>
Linksto
Linksto finds wikilinks to a given name, not links to content. The input is the canonical, case sensitive, page name. It must match the title line of the content page, exactly, before any title modifications of the letter-case. (It must match its {{FULLPAGENAME}}, e.g. Help:Search.)
Linksto does not find redirects. It only finds [[wikilinks]], even when they are made by a template.</translate> <translate> It does not find a link made by a URL, even if that URL is an internal wiki link.
To find all wikilinks to a "<tvar|hcs>Help:Cirrus Search</>", if "<tvar|helpSearching>Help:Searching</>" and "<tvar|HS>H:S</>" are redirects to it: </translate>
- linksto: "Help:Cirrus Search"
- linksto: Help:Searching
- linksto: H:S
<translate>
<tvar|linksto>CirrusSearch -linksto: Help:CirrusSearch
</> finds articles that mention "<tvar|CirrusSearch>CirrusSearch</>" but not in a wikilink.
</translate>
<translate>
Hastemplate
You can specify template usage with <tvar|hastemplate>hastemplate: template
</>. Input the canonical pagename to find all usage of the template, but use any of its redirect pagenames finds just that naming. Namespace aliases are accepted, capitalization is entirely ignored, and redirects are found, all in one name-search. (Compare boost-template no default namespace; linksto no namespace aliases, case-sensitive, no redirects; intitle no redirects.)
Hastemplate finds secondary (or meta-template) usage on a page: it searches the post-expansion inclusion. This is the same philosophy as for words and phrases from a template, but here it's for templates from a template. The page will be listed as having that content even though that content is not seen in the wikitext.
- <tvar|hastempquality>hastemplate: "quality image"</>, finds "<tvar|tempquality>Template:Quality image</>" usage in your default search domain (namespaces).
- <tvar|hastportal>: hastemplate: portal:contents/tocnavbar</>, finds mainspace usage of a "<tvar|tocnavbar>Contents/TOCnavbar</>" template in the Portal namespace.
For installations with the Translate extension, hastemplate searches get interference wherever Template:Translatable template name wraps the template name of a translatable template. Use insource instead. </translate>
<translate>
Inlanguage
For installations with the Translate extension, <tvar|inlang>inlanguage</> is important for highly refined searches and page counts. </translate>
- inlanguage: <translate> language code</translate>
<translate> will produce search results in that language only.
For example
- to count all Japanese pages on the wiki
</translate>
- all: inlanguage: ja
<translate>
- to filter out German and Spanish pages in the Help namespace
</translate>
- help: -inlanguage: de -inlanguage: es
<translate>
- to ignore Translate, and where English is the base language, add
</translate>
- inlanguage:en
Contentmodel
<translate> The <tvar|contentmodel>contentmodel:</> keyword allows to limit the search to pages of a specific content model. For possible models cf. [[<tvar|cthandle>Special:MyLanguage/Content handlers</>|Content handlers]]. E.g.:
- To see only JSON pages:
</translate>
- contentmodel:json
<translate>
subpageof
To find sub-pages. </translate>
- subpageof: <translate> ParentPage</translate>
<translate> For example
- To find all subpages of CirrusSearch.
</translate>
- subpageof:CirrusSearch
<translate>
- Use double quotes if the parent page contains spaces.
</translate>
- subpageof:"Requests for comment"
<translate> NOTE: unlike prefix:, do not include the page namespace in the keyword value. If you want to limit to sub-pages of a particular namespace use the namespace filter.
Page weighting
Weighting determines snippet, suggestions, and page relevance. The normal weight is one. Additional weighting is given through multipliers.
If the query is just words, pages that match them in order are given a boost. If you add any explicit phrases to your search, or for certain other additions, this "prefer phrase" feature is not applied. </translate>
<translate>
Morelike
</translate>
- morelike:page name 1|page name 2|...|page name n
<translate>
- Find articles whose text is most similar to the text of the given articles.
</translate>
- morelike:wasp|bee|ant
- <translate> Find articles about stinging insects.</translate>
- morelike:template:search|template:regex|template:usage
- <translate> Find templates about regex searching for template usage on the wiki.</translate>
<translate> The <tvar|morelike>morelike:</> query works by choosing a set of words in the input articles and run a query with the chosen words. You can tune the way it works by adding the following parameters to the search results URL:
- <tvar|cmmindf>cirrusMltMinDocFreq</>: Minimum number of documents (per shard) that need a term for it to be considered.
- <tvar|cmmaxdf>cirrusMltMaxDocFreq</>: Maximum number of documents (per shard) that have a term for it to be considered.
- <tvar|cmmaxqt>cirrusMltMaxQueryTerms</>: Maximum number of terms to be considered.
- <tvar|cmmintf>cirrusMltMinTermFreq</>: Minimum number of times the term appears in the input to doc to be considered. For small fields (<tvar|title>title</>) this value should be 1.
- <tvar|cmminwl>cirrusMltMinWordLength</>: Minimal length of a term to be considered. Defaults to 0.
- <tvar|cmmaxwl>cirrusMltMaxWordLength</>: The maximum word length above which words will be ignored. Defaults to unbounded (0).
- <tvar|cmf>cirrusMltFields</> (comma separated list of values): These are the fields to use. Allowed fields are <tvar|title>title</>, <tvar|text>text</>, <tvar|auxtext>auxiliary_text</>, <tvar|opening>opening_text</>, <tvar|headings>headings</> and <tvar|all>all</>.
- <tvar|cmuf>cirrusMltUseFields</> (<tvar|true>
true
</>|<tvar|false>false
</>): use only the field data. Defaults to <tvar|false2>false
</>: the system will extract the content of the <tvar|text2>text
</> field to build the query. - <tvar|cmpttm>cirrusMltPercentTermsToMatch</>: The percentage of terms to match on. Defaults to 0.3 (30 percent).
- Example: <tvar|cmufcode>
&cirrusMtlUseFields=yes&cirrusMltFields=title&cirrusMltMinTermFreq=1&cirrusMltMinDocFreq=1&cirrusMltMinWordLength=2
</>
These settings can be made persistent by overriding <tvar|cirrusmlt>cirrussearch-morelikethis-settings
</> in [[<tvar|hlpsysmsg>Special:MyLanguage/Help:System message</>]].
</translate>
Prefer-recent
<translate>
Adding <tvar|pr>prefer-recent:</> anywhere in the query gives recently edited articles a slightly larger than normal boost in the page-ranking rules.</translate>
<translate>
Prefer-recent is only applied when using the default <tvar|1>relevance
</> [[<tvar|2>#Explicit sort orders</>|sort order]].
It defaults to boost only 60% of the score, in a large, 160 day window of time, which can be entered in the query as <tvar|pr2>prefer-recent:0.6,160.</> This plays well with other page ranking rules, and is intended for most searches.
You can manipulate the rules: <tvar|pr-boost>prefer-recent:boost,recent</></translate> <translate> Technically "boost" is the proportion of score to scale, and "recent" is the half life in days.</translate> <translate> The boost is more than the usual multiplier, it is an [[<tvar|exd>w:Exponential_decay</>|exponential]] boost.</translate> <translate> The factor used in the exponent is the time since the last edit.
For example </translate>
- prefer-recent:,7
<translate> Pages older than 7 days are boosted half as much, and pages older than 14 days are boosted half as much again, and so on. </translate> <translate>
For a simple "sort by date" in highly refined search results, where page ranking and boosting are largely meaningless, just boost the entire score. </translate>
- prefer-recent:1,7 (weeks)
- prefer-recent:1,1 (days)
- prefer-recent:1,0.0007 (minutes)
- prefer-recent:1,0.0001 (8.64 seconds)
- prefer-recent:1,0.00001 (seconds)
<translate>
Boost-templates
You can boost pages' scores based on what templates they contain. This can be done directly in the search via <tvar|bt>boost-templates:""
</> or you can set the default for all searches via the new <tvar|cbt>MediaWiki:cirrussearch-boost-templates
</> message. <tvar|btempty>boost-templates:""
</> replaces the contents of <tvar|cbtempty>cirrussearch-boost-templates
</> if the former is specified. The syntax is a bit funky but was chosen for simplicity.</translate>
<translate>
Like prefer-recent, boost-templates is only applied when using the default <tvar|1>relevance
</> [[<tvar|2>#Explicit sort orders</>|sort order]].</translate>
<translate>
Some examples:
</translate>
- File:boost-templates:"Template:Quality Image|200%" incategory:china
<translate>
- Find files in the China category sorting quality images first.
</translate>
- File:boost-templates:"Template:Quality Image|200% Template:Low Quality|50%" incategory:china
<translate>
- Find files in the China category sorting quality images first and low quality images last.</translate>
<translate>
- <tvar|tqpop>File:boost-templates:"Template:Quality Image|200% Template:Low Quality|50%" popcorn</>
- Find files about popcorn sorting quality images first and low quality images last. Remember that through the use of the <tvar|sbt1>
cirrussearch-boost-templates
</> message this can be reduced to just <tvar|popcorn>popcorn
</>.
Don't try to add decimal points to the percentages. They don't work and search scoring is such that they are unlikely to matter much.
A word of warning about <tvar|csbt>cirrussearch-boost-templates
</>: if you add really really big or small percentages they can poison the full text scoring. Think, for example, if enwiki boosted featured articles by a million percent. Then searches for terms mentioned in featured articles would find the featured articles before exact title matches of the terms. Phrase matching would be similarly blown away so a search like <tvar|bnws>brave new world
</> would find a featured article with those words scattered throughout it instead of the article for [[<tvar|bnw>w:Brave New World</>|Brave New World]].</translate>
<translate>
Regular expression searches
A basic indexed-search finds words rendered visible on a page. Hyphenation and punctuation marks and bracketing, slash and other math and computing symbols, are merely boundaries for the words. It is not possible to include them in an indexed search.
These return much much faster when you limit the regexp search-domain to the results of one or more index-based searches.
Warning: Do not run a bare <tvar|insreg>insource:/regexp/</> search. It will probably timeout after 20 seconds anyway, while blocking responsible users.
An "exact string" regexp search is a basic search; it will simply "quote" the entire regexp, or "backslash-escape" all non-alphanumeric characters in the string. All regexp searches also require that the user develop a simple filter to generate the search domain for the regex engine to search: </translate>
- insource:"debian.reproducible.net" insource:/debian\.reproducible\.net/
- insource:"c:\program files (x86)" insource:/C\:\\Program Files \(x86\)/i
- insource:"<tag>{{template}}</tag>" insource:/"<tag>{{template}}<\/tag>"/
- insource:"[[title|link label]]'s" insource:/"[[title|link label]]'s"/
- insource:/regexp/ prefix:{{FULLPAGENAME}}
<translate> The last example works from a link on a page, but <tvar|fullpagename>{{FULLPAGENAME}}</> doesn't function in the search box.
For example: <tvar|exampleofsearch>[[Special:Search/insource:/regex/ prefix:{{FULLPAGENAME}}]]</> [[<tvar|exampleofsearch2>Special:Search/insource:/regex/ prefix:Help:Search</>| finds the term regex on this page]].
A query with no namespace specified and no prefix specified searches your default search domain, (settable on any search-results page, i.e. at [[<tvar|ss>Special:Search</>]]). Some users keep their default search domain at "all namespaces", i.e. the entire wiki. On a large wiki if this user does a bare regexp search it will probably fail, incurring an HTML timeout, before completing the search.
A regex search actually scours each page in the search domain character-by character. By contrast, an indexed search actually queries a few records from a database separately maintained from the wiki database, and provides nearly instant results. So when using an <tvar|insource>insource://</> (a regexp of any kind), consider creating one the other search terms that will limit the regex search domain as much as possible. There are many search terms that use an index and so instantly provide a more refined search domain for the /regexp/. In order of general effectiveness: </translate> <translate>
- insource:"" with quotation marks, duplicating the regexp except without the slashes or escape characters, is ideal.
- intitle, incategory, and linksto are excellent filters.
- hastemplate: is a very good filter.
- "word1 word2 word3", with or without the quotation marks, are good.
- namespace: is practically useless, but may enable a slow regexp search to complete.
</translate> <translate> To test a bare regexp query you can create a page with test patterns, and then use the prefix parameter with that fullpagename.</translate> <translate> The match will be highlighted.</translate> <translate> It searches that page (in the database) and its subpages.
Search terms that do not increase the efficiency of a regexp search are the page-scoring operators: morelike, boost-template, and prefer-recent. </translate>
<translate>
Metacharacters
This section covers how to escape metacharacters used in rexexp searches</translate> <translate> For the actual meaning of the metacharacters see the [<tvar|link1>https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-regexp-query.html#regexp-syntax</> explanation of the syntax].</translate> [6]
Lua error: expandTemplate: template loop detected.
<translate> For example:
- to search a namespace, gauge the number of pages with a single term that is a namespace. This will list the number of pages in that namespace.
- starting out to find again what you may have seen, like "wiki-link" or "(trans[in]clusion)" start with namespace and insource filters.
Refining with an exact string
- refinining an ongoing search process with what you want to see, like "2 + 2 = 4", or "site.org" This is ideally the best use of regex, because it adds it as a single regexp term while refining a search, the limited number of pages the regexp must crawl is can be seen.
You can start out intending an exact string search, but keep in mind:
- regex only search the wikitext not the rendered text, so there are some differences around the markup, and even the number of space characters must match precisely.
- You are obligated to supply an accompanying filter.
- You must learn how to escape regex metacharacters.
There are two ways to escape metacharacters. They are both useful at times, and sometimes concatenated side-by-side in the escaping of a string.
- Backslash-escape one of them \char. The insource:/regexp/ uses slashes to delimit the regexp. Giving /reg/exp/ is ambiguous, so you must write /reg\/exp/.
- Put a string of them in double quotes "string". Because escaping a character can't hurt, you can escape any character along with any possible metacharacters in there. Escaping with quotes is cleaner.
- You can't mix methods, but you can concatenate them.
Double-quotes escaping using insource:/"regexp"/ is an easy way to search for many kinds of strings, but you can't backslash-escape anything inside a double-quoted escape.
- <tvar|pntemp>
/"[[page/name|{{temp-late"/
</> instead of <tvar|pntemp-late>/\[\[page\/name\|\{\{temp\-late/
</> - <tvar|literal>
/"literal back\slash"/
</> is as good as <tvar|literal2>/literal back\/slash/
</> - But <tvar|thisfails>
/"This \" fails"/
</> always. - And <tvar|thisdepends>
/"This \/ depends"/
</>. It finds the <tvar|vvv>\/
</> literally, which is not the <tvar|slash>/
</> you probably wanted.
Backslash-escape using insource:/regexp/ allows escaping the " and / delimiters, but requires taking into account metacharacters, and escaping any:
- To match a <tvar|slash2>
/
</> delimiter character use <tvar|vvv2>\/
</>. - To match a <tvar|quote>
"
</> delimiter character use <tvar|slashquote>\"
</>. - The escaped metacharacters would be <tvar|grawlix2>
\~\@\#\&\*\(\)\-\+\{\}\[\]\|\<\>\?\.\\
</>. - The equivalent expression escaped with double-quotes is <tvar|grawlix3>
"~@#&*()-+{}[]|\<>?.\"
</>.
The simplest algorithm to create the basic string-finding expression using insource:/"regexp"/, need not take metacharacters into account except for the " and / characters:
- Write <tvar|str_ing>
the/str"ing
</> out. (The /" delimiters "/ are not shown.) - Replace <tvar|doublequote>
"
</> with <tvar|slashdoublequote>"\""
</> (previous double-quote: stop, concatenate, quote restart). - Replace <tvar|slash4>
/
</> with <tvar|vvv3>"\/"
</> (stop, concatenate, start). - You get <tvar|insource>
insource:/"the"\/"str"\""ing"/
</>, showing concatenation of the two methods.
</translate>
Lua error: expandTemplate: template loop detected.
<translate>
The square-bracket notation for creating your own character-class also escapes its metacharacters. To target a literal right square bracket in your character-class pattern, it must be backslash escaped, otherwise it can be interpreted as the closing delimiter of the character-class pattern definition. The first position of a character class will also escape the right square bracket. Inside the delimiting square brackets of a character class, the dash character also has special meaning (range) but it too can be included literally in the class the same way as the right square bracket can. For example both of these patterns target a character that is either a dash or a right square bracket or a dot: <tvar|code1>[-.\]]
</> or <tvar|code2>[].\-]
</>.
For general examples using metacharacters: </translate> <translate>
- <tvar|insource0>insource:"2+2=4" insource:/"2+2=4"/</> matches "2 + 2 = 4", with zero spaces between the characters.
- <tvar|insource01>insource:"2 + 2 = 4" insource:/2 ?\+ ?2 ?= ?4\./</> match with zero or one space in between. The equals = sign is not a metacharacter, but the plus + sign is.
- <tvar|insourcetag>insource:"<tag>[[link|2\3?]]\</tag>" insource:/"<tag>[[link|2\3?]]<"\/"tag>"/</>.
</translate> <translate> There are some notable differences from standard regex metacharacters:
- The <tvar|code1>
\n
</> or <tvar|code2>\r\n
</> are not reserved for matching a newline.</translate> <translate> To search for a string that contains a newline, you can do a search like <tvar|1>insource:/[^\}]\}\}[^\} \|][^\} \|]\<noinclude/i
</> which means not a curly brace, then two curly braces, then any two characters except a curly brace, space, or pipe, then a <tvar|2><noinclude>
</> tag.</translate> <translate> The "any character except" will include a newline in the search.</translate> <translate> Note thas this search was designed only to match to the following string:</translate>
}} <noinclude>
<translate>
- The dot . metacharacter stands for any character including a newline, so .* matches across lines.
- The number # sign means something, and must be escaped.
- The ^ and $ are not needed. Like "grep" (global per line, regular expression, print each line), each insource:// is a "global per document, regular expression, search-results-list each document" per document.
- < and > support a multi-digit numeric range like [0-9] does, but without regard to the number of character positions, or the range in each position, so <9-10> works, and even <1-111> works.
Regex on titles
The <tvar|1>insource</> keyword does only search the page source content.</translate> <translate> To run regex searches on the title strings <tvar|1>intitle://</> can be used.
Advanced example
For example, using metacharacters to find the usage of a template called Val having, inside the template call, an unnamed parameter containing a possibly signed, three to four digit number, possibly surrounded by space characters, AND on the same page, inside a template Val call, a named argument<tvar|fmtcomma>fmt=commas
</> having any allowable spaces around it, (it could be the same template call, or a separate one):
</translate>
hastemplate:val insource:"fmt commas" insource:/\{\{val\|[^}]*fmt *= *commas/ insource:/\{val\| *[-+]?[0-9]{3,4} *[|}]/
<translate> Note that the = sign in "fmt commas" is not needed but that adding it would not change the search results.</translate> <translate> It is fast because it uses two filters so that every page the regexp crawls has the highest possible potential.
Geo Search
bounded
You can limit search to pages identified as being near some specified geographic coordinates.</translate> <translate> The coordinates can either be specified as a <lat>,<lon> pair, or by providing a page title from which to source the coordinates.</translate> <translate> A distance to limit the search to can be prepended if desired.</translate> <translate> Examples: </translate>
- neartitle:"San Francisco"
- neartitle:"100km,San Francisco"
- nearcoord:37.77666667,-122.39
- nearcoord:42km,37.77666667,-122.39
<translate>
boosted
You can alternatively increase the score of pages within a specified geographic area.</translate> <translate> The syntax is the same as bounded search, but with boost- prepended to the keyword.</translate> <translate> This effectively doubles the score for pages within the search range, giving a better chance for nearby search results to be near the top. </translate>
- boost-neartitle:"San Francisco"
- boost-neartitle:"100km,San Francisco"
- boost-nearcoord:37.77666667,-122.39
- boost-nearcoord:42km,37.77666667,-122.39
<translate>
File properties search
</translate> Template:MW version
<translate>
Since MediaWiki 1.28, CirrusSearch supports indexing and searching of properties of files in the <tvar|file>File:
</> namespace. This includes:
- file media type
- MIME type
- size
- width & height
- resolution
- bit depth for files that support these
</translate>
Lua error: expandTemplate: template loop detected.
<translate>
filetype
Searching for file type allows to retrieve files according to their classification, such as office documents, videos, raster images, vector images, etc. The following types currently exist: </translate>
UNKNOWN
BITMAP
DRAWING
AUDIO
VIDEO
MULTIMEDIA
OFFICE
TEXT
EXECUTABLE
ARCHIVE
<translate>
This list may be extended in the future. See also <tvar|mediatype>MEDIATYPE_*
</> constants in <tvar|defines>Defines.php
</>.
The syntax of the search is: <tvar|filetype>filetype:{type}</>. Example:
<tvar|ftvideo>filetype:video</> - looks for all videos
The filetype search is not case-sensitive.
filemime
Matches file MIME type. The syntax is:
<tvar|filemime>filemime:{MIMEtype}</> - look for files of this MIME type
The argument can be quoted to specify exact match. Without quotes, partial matches to components of MIME type will be accepted too.
Examples:
<tvar|fmimg>filemime:"image/png"</> - look for files with MIME type exactly <tvar|imgpng>image/png
</>
<tvar|fnpdf>filemime:pdf</> - look for all PDF documents
The MIME type search is not case sensitive.
filesize
Search for file of given size, in kilobytes (kilobyte means 1024 bytes). The syntax is:
<tvar|fsnum>filesize:{number}</> or <tvar|fsgreater>filesize:>{number}</> - file with size at least given number
<tvar|fsless>filesize:<{number}</> - file with size no more than given number
<tvar|fsbetween>filesize:{number},{number}</> - file with size between given numbers
Examples:
<tvar|fs20>filesize:>20</> or <tvar|fseq20>filesize:20</> - files 20KB and bigger
<tvar|fsless1024>filesize:<1024</> - files smaller than 1MB
<tvar|fs100k>filesize:100,500</> - files with sizes between 100KB and 500KB
File measures
It is possible to search for specific file measures: width, height, resolution (which is defined as square root of height × width), and bit depth. Not all files may have these properties. The syntax is:
<tvar|mn>{measure}:{number}</> - file with measure that equals to given number
<tvar|mng>{measure}:>{number}</> - file with measure that is at least given number
<tvar|mnl>{measure}:<{number}</> - file with measure that is no more than given number
<tvar|mnn>{measure}:{number},{number}</> - file with measure that is between given numbers
Where <tvar|measure>measure
</> can be:
<tvar|filew1>filew</> or <tvar|filew2>filewidth</> - file width
<tvar|fileh1>fileh</> or <tvar|fileh2>fileheight</> - file height
<tvar|fres>fileres</> - file resolution (see above)
<tvar|fbd>filebits</> - file bit depth
Examples:
<tvar|fw800>filew:>800 fileh:>600</> - files that are at least 800x600 pixels in size
<tvar|fb16>filebits:16</> - files with 16-bit color depth
<tvar|fh100k>fileheight:100,500</> - file between 100 and 500 pixels high
Wikibase search
<tvar|1>Template:Ll</> extension defines some search keywords in order to make it easier to search for certain Wikibase items. Currently this is useful only on <tvar|2>Template:Ll</> sites.</translate> <translate> See <tvar|1>Template:Ll</> for details.
Cross-wiki search results
The search on Wikimedia projects includes [[<tvar|iwsearch>Special:MyLanguage/Cross-wiki Search Result Improvements</>|improved]] cross-wiki search results (also known as interwiki search results, sister projects search results). </translate>
<translate>
Explicit sort orders
In addition to the default relevance based sort CirrusSearch can provide results a few other explicit sort orders.</translate>
<translate>
Specifying a sorting order other than <tvar|1>relevance
</> will disable all search keywords that effect scoring, such as <tvar|2>prefer-recent
</> or <tvar|3>boost-templates
</>.</translate>
<translate>
The keywords will still be parsed, but they will have no effect.</translate>
<translate>
Sorting options are currently available from the MediaWiki API by providing the <tvar|1>srsort
</> parameter.</translate>
<translate>
Sorting options can be manually added to a search URL by adding <tvar|1>&sort=order
</>, for example <tvar|2>https://www.mediawiki.org/w/index.php?search=foo&sort=last_edit_desc</>.</translate>
<translate> Valid sort orders include: </translate>
<translate> Sort order</translate> | <translate> Description</translate> |
---|---|
incoming_links_asc | <translate> Lowest to highest number of incoming links.</translate> <translate> This is approximately from least to most popular.</translate> |
incoming_links_desc | <translate> Highest to lowest number of incoming links.</translate> <translate> This is approximately from most to least popular.</translate> |
last_edit_asc | <translate> From least recently to most recently edited</translate> |
last_edit_desc | <translate> From most to least recently edited</translate> |
create_timestamp_asc | <translate> From least to most recently created</translate> |
create_timestamp_desc | <translate> From most to least recently created</translate> |
just_match | <translate> A simple relevance sort based only on text matching</translate> |
relevance | <translate> A relevance sort taking into account many features of the document</translate> |
none | <translate> Unsorted, arbitrarily ordered lists.</translate> <translate> Preferred for large result sets.</translate> |
<translate>
Interface for advanced options
[[<tvar|image-asi>File:AdvSearch Screen 20170620.png</>|thumb|Advanced Search Interface]]
The AdvancedSearch extension adds an improved interface to the search page allowing the use of several options described above in a user-friendly manner. See [[<tvar|hlpadvsearch>Special:MyLanguage/Help:AdvancedSearch</>|here for the user manual]].
See also
</translate> <translate>
- {{<tvar|excc>ll|Extension:CirrusSearch</>}}
- [[<tvar|completion>Extension:CirrusSearch/CompletionSuggester</>|Completion Suggester]] - the incremental search feature of CirrusSearch
- [[<tvar|glossary>Wikimedia Discovery/Search/Glossary</>]] - definitions, context, and links for terms related to search.
- See [[<tvar|oldsearch>Search/Old#Timeline</>]] for more on the development and debut of of CirrusSearch.
- See [[<tvar|helps>Help:Searching</>]] for MWSearch, used by the many wikis that don't have a search extension.
External links
- [<tvar|lucene>http://lucene.apache.org/core/3_5_0/queryparsersyntax.html</> From Lucene], highly relevant documentation.
</translate>
- Template:Git file
- Extension:CirrusSearch/Profiles - sets of tunable parameters that influence various aspect of the indexing
- Wikimedia blog articles related to search
<translate>
Notes and references
</translate>
- ↑ <translate>
For example, common terms on this wiki, MediaWiki.org, are, redundantly, (searched):
- udp2log OR udp2log2
- html2wt OR wt2html
- log2ip OR ip2log
- ↑ <translate> CirrusSearch regex do not address the newline character directly, but a dot <tvar|dot>.</> will match a newline.</translate>
- ↑ <translate> A wallowing regex search cannot disable Search, but can disable another's regex search.</translate>
- ↑ <translate> Prefix does not match on first-characters of fullpagenames, so you cannot search two namespaces at once just because they start with the same letters, such as both namespace and namespace talk in one query.</translate>
- ↑ <translate>
Edit your Custom JavaScript, and add
- <tvar|gadgt>mw.loader.load( "//de.wikipedia.org/wiki/MediaWiki:Gadget-DeepCat.js&action=raw&ctype=text/javascript" );</>
- <tvar|gadgt>mw.loader.load( "//de.wikipedia.org/wiki/MediaWiki:Gadget-DeepCat.js&action=raw&ctype=text/javascript" );</>
- ↑ <translate> For the formal definition see the [<tvar|link2>http://lucene.apache.org/core/4_8_1/core/org/apache/lucene/util/automaton/RegExp.html</> Lucene grammar for regular expressions]. </translate>
[[Category:Search{{#translation:}}]] [[Category:Help{{#translation:}}]]