You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/queries/select-query/building-a-select-query/building-a-select-query.md
+3
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,15 @@ The options below can be set as query option values, but also by using the set/g
13
13
| query | string |\*:\*| Query to execute |
14
14
| start | int | 0 | Start position (offset) in the complete Solr query resultset, to paginate big resultsets. |
15
15
| rows | integer | 10 | Number of rows to fetch, starting from the 'start' (offset) position. It's a limit, you might get less. |
16
+
| cancancel | bool | null | Is this a cancellable query? |
17
+
| queryuuid | string | null | Custom UUID to identify a cancellable query with |
16
18
| fields | string | - ,score | Comma separated list of fields to fetch from Solr. There are two special values: '\*' meaning 'all fields' and 'score' to also fetch the Solr document score value. |
17
19
| sort | array | empty array | Array with sort field as key and sort order as values. Multiple entries possible, they are used in the order of the array. Example: array('price' => 'asc') |
18
20
| querydefaultoperator | string | null | With a null value the default of your Solr config will be used. If you want to override this supply 'AND' or 'OR' as the value. |
19
21
| querydefaultfield | string | null | With a null value the default of your Solr config will be used. If you want to override this supply a field name as the value. |
20
22
| responsewriter | string | json | You can set this to 'phps' for improved response parsing performance, at the cost of a (possible) security risk. Only use 'phps' for trusted Solr instances. |
21
23
| tag | array of strings | null | You can supply one or multiple tags for the main query string, to allow for exclusion of the main query in facets |
24
+
| partialresults | bool | null | If set to false, reaching a query execution limit will generate an exception instead of returning partial results |
22
25
| cursormark | string | null | Set to '\*' and make sure sort contains a uniqueKey field to enable cursor functionality when passing the query to the PrefetchIterator plugin. Available since Solr 4.7. |
23
26
| splitonwhitespace | bool | null | Specifies whether the query parser splits the query text on whitespace before it's sent to be analyzed. Available for 'lucene' and 'edismax' query parsers since Solr 6.5. |
0 commit comments