如何在solr中根据条件获得应用boost



我是solr的新手,我在solr中有2个字段说displayName和foodType,目前我正在使用以下代码从angular查询

angular.element.ajax({
                url: "http://dev2.slim.in:8983/solr/food/select",
                data: {
                    "q": "displayName",
                    "wt": "json",
                    "start":0,
                    "rows":200
                },
                traditional: true,
                cache: true,
                async: true,
                dataType: 'jsonp',
                success: function (data) {
                    //and when we get the query back we
                    //stick the results in the scope
                    $scope.$apply(function () {
                        $scope.foodResults = data.response.docs;
                        console.log("result from solr is  ",$scope.foodResults)
                    });
                },
                jsonp: 'json.wrf'
            });

如果displayName匹配的查询有字段foodType作为印度那么我想提高它高于其他文档如何做到这一点??

使用bqboost与(e)dismax查询解析器。

bq=foodType:indian^3

相关内容

  • 没有找到相关文章

最新更新