我有SOLR在我的网站上工作,除了更多的配置调整之外它还可以工作。
所以现在我想打算使用SOLR结果的自动完成顶级搜索。
我有
$results = Mage::getResourceModel('catalogsearch/fulltext_collection');
$results->addSearchFilter($query->getQueryText())
->setStore(Mage::app()->getStore())
->addMinimalPrice()
->addFinalPrice()
->addStoreFilter()
->addTaxPercents();
但我在搜索结果页面上得到了不同的结果。我做错了什么?