default operator is AND now
authorChristian Weiske <cweiske@cweiske.de>
Tue, 1 May 2012 19:46:07 +0000 (21:46 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Tue, 1 May 2012 19:46:07 +0000 (21:46 +0200)
src/phorkie/Search/Elasticsearch.php

index 3c3ea8351f2397f373f6bd5951a9272b19f1b2d7..0ed766b6b68bf67cc24a9ec0a1d4ce2cde174af4 100644 (file)
@@ -34,7 +34,8 @@ class Search_Elasticsearch
                             'should' => array(
                                 (object)array(
                                     'query_string' => (object)array(
-                                        'query' => $term
+                                        'query' => $term,
+                                        'default_operator' => 'AND'
                                     ),
                                 ),
                                 (object)array(
@@ -42,7 +43,8 @@ class Search_Elasticsearch
                                         'type'         => 'file',
                                         'query' => (object)array(
                                             'query_string' => (object)array(
-                                                'query' => $term
+                                                'query' => $term,
+                                                'default_operator' => 'AND'
                                             )
                                         )
                                     )