Unanswered How to create query suggestion for a keyword by just keyword hits

  • Friday, August 10, 2012 8:07 AM
     
     

    Hi all,

                    I hit the keyword say “London” more than 10 times in search center site in FAST Search for SharePoint 2010 and then I ran the job using power shell commands as follows:

    $job = Get-SPTimerJob -Identity "Prepare Query Suggestions"

    $job.RunNow()

    Now if I type staring two letters “Lo”, then  the query suggestion “London” should come.

    But this is not happening in my case. Did I miss anything like some configuring etc..Please help me.


    Sharath Kumar R

All Replies

  • Friday, August 10, 2012 8:16 AM
    Moderator
     
      Has Code

    Hi,

    Try this. It may take some time to update

    $timer=Get-SPTimerJob|? {$_.Name -eq "Prepare Query Suggestions"}
    
    $timer.RunNow() 

    Check this for more information:

    http://blogs.msdn.com/b/shad_phillips/archive/2010/06/09/adding-query-suggestions-to-fast-2010-for-sharepoint-2010.aspx

    Let us know your result


    Cheers, Hemendra-MCTS "Yesterday is just a memory,Tomorrow we may never see"

  • Monday, August 13, 2012 5:18 AM
    Moderator
     
     

    Hi,

    After run your command i think you should also need to run timer job in central admin. Try it and let us know your result


    Cheers, Hemendra-MCTS "Yesterday is just a memory,Tomorrow we may never see"

  • Monday, August 13, 2012 9:40 AM
     
     

    Hi ,

         If I add the query suggestion through powershell command and later run jobs, then that query suggestion will appear. 

         But here I am just hitting the keyword for 15 times in search centre site and opening the results page also. So , that keyword which i am searching should appear in query suggestion.

         But this is not happening. After doing this, I am running the jobs both through powershell as well as from central admin. Please help me out if i am missing any other configuration etc..


    Sharath Kumar R