This is just a quick placeholder that I will embellish more when I get my FAST development environment running….
When getting search results, I found that the default relevancy for FAST for SharePoint had equal weighting for words found in the body as well as the title. This seems a little strange, because in the past (need to confirm this) SharePoint always weighted words found in titles as MORE important.
The way to fix this is to tweak the relevancy rankings
$RankProfile = Get-FASTSearchMetadataRankProfile -Name "Default"
$content= $RankProfile.GetFullTextIndexRanks()|where-Object -filterscript {$_.FullTextIndexReference.Name -eq "content"}
$mpTitle = Get-FASTSearchMetadataManagedProperty -Name "Title"
$content.SetImportanceLevelWeight(7, 200)
$content.ContextWeight = 200
$content.Update()
Once again…examples and screen shots coming.