New-FASTSearchMetadataFullTextIndex
Creates a new full text index.
Syntax
New-FASTSearchMetadataFullTextIndex
-Description <String>
-Name <String>
[<CommonParameters>]
Description
This cmdlet creates a new full text index in Microsoft FAST Search Server 2010 for SharePoint. A full text index can be searched by specifying the full text index name in a query. For example: "extracontent:car" searches for the term "car" in the full text index named "extracontent". If no full text index is specified, the default full text index is used. A relevancy score is calculated when searching the full text index, according to the rank profile specified in the query (or the default rank profile, if no rank profile is specified).
See Set-FASTSearchMetadataFullTextIndex for details about changing the default full text index for searching.
See Set-FASTSearchMetadataRankProfile for more details about rank profiles.
Use New-FASTSearchMetadataFullTextIndexMapping to create mappings from managed properties to a new full text index.
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (https://go.microsoft.com/fwlink/?LinkId=163227).
Examples
---------------EXAMPLE 1----------------- (FAST Server for SharePoint 2010)
New-FASTSearchMetadataFullTextIndex -Name CommonSharePoint -Description "Content from the common SharePoint site."
This example creates a new full text index named "CommonSharePoint". After it has been created, you can map managed properties into the full text index. See New-FASTSearchMetadataFullTextIndexMapping for details about mapping properties into a full text index.
Parameters
-Description
Description of the full text index, including the type of content or which connector feeds the data.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-Name
Name of the new full text index.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |