diff --git a/src/Sherlock/components/queries/QueryStringMultiField.php b/src/Sherlock/components/queries/QueryStringMultiField.php index 70a5537..2f52366 100644 --- a/src/Sherlock/components/queries/QueryStringMultiField.php +++ b/src/Sherlock/components/queries/QueryStringMultiField.php @@ -48,7 +48,7 @@ public function __construct($hashMap = null) $this->params['phrase_slop'] = 10; $this->params['analyze_wildcard'] = true; $this->params['auto_generate_phrase_queries'] = false; - $this->params['rewrite'] = "constant_score_default"; + $this->params['rewrite'] = "constant_score_auto"; $this->params['quote_analyzer'] = "standard"; $this->params['quote_field_suffix'] = ".unstemmed"; $this->params['use_dis_max'] = true; @@ -81,8 +81,8 @@ public function toArray() 'quote_field_suffix' => $this->params["quote_field_suffix"], 'use_dis_max' => $this->params["use_dis_max"], 'tie_breaker' => $this->params["tie_breaker"], + 'rewrite' => $this->params["rewrite"], ), - 'rewrite' => $this->params["rewrite"], ); return $ret; diff --git a/src/Sherlock/components/sorts/Script.php b/src/Sherlock/components/sorts/Script.php new file mode 100644 index 0000000..4bd8964 --- /dev/null +++ b/src/Sherlock/components/sorts/Script.php @@ -0,0 +1,51 @@ +params['script'] = null; + $this->params['type'] = null; + $this->params['params'] = array(); + $this->params['order'] = 'asc'; + $this->params['lang'] = 'mvel'; + + parent::__construct($hashMap); + } + + public function toArray() + { + $ret = array( + '_script' => + array( + 'script' => $this->params["script"], + 'type' => $this->params["type"], + 'params' => $this->params["params"], + 'order' => $this->params["order"], + 'lang' => $this->params["lang"], + ), + ); + + return $ret; + } + +} diff --git a/src/Sherlock/wrappers/SortWrapper.php b/src/Sherlock/wrappers/SortWrapper.php index cc6a8cd..e3a1820 100644 --- a/src/Sherlock/wrappers/SortWrapper.php +++ b/src/Sherlock/wrappers/SortWrapper.php @@ -11,6 +11,8 @@ /** * @method \Sherlock\components\sorts\Field Field() Field() + * @method \Sherlock\components\sorts\GeoDistance GeoDistance() GeoDistance() + * @method \Sherlock\components\sorts\Script Script() Script() */ class SortWrapper {