You have the setPopularQueryFilter method in the Mage_CatalogSearch_Model_Mysql4_Query_Collection class, after which you only need to set the limit, I think :)
Without trying, it should be something like this:
$searchCollectino=Mage::getModel('catalogsearch/query')->getCollection() ->setPopularQueryFilter() ->setPageSize($limit);
source share