File manager - Edit - /var/www/payraty/helpdesk/vendor/elasticsearch/elasticsearch/docs/examples/5271f4ff29bb48838396e5a674664ee0.asciidoc
Back
// mapping/params/multi-fields.asciidoc:10 [source, php] ---- $params = [ 'index' => 'my_index', 'body' => [ 'mappings' => [ 'properties' => [ 'city' => [ 'type' => 'text', 'fields' => [ 'raw' => [ 'type' => 'keyword', ], ], ], ], ], ], ]; $response = $client->indices()->create($params); $params = [ 'index' => 'my_index', 'id' => '1', 'body' => [ 'city' => 'New York', ], ]; $response = $client->index($params); $params = [ 'index' => 'my_index', 'id' => '2', 'body' => [ 'city' => 'York', ], ]; $response = $client->index($params); $params = [ 'index' => 'my_index', 'body' => [ 'query' => [ 'match' => [ 'city' => 'york', ], ], 'sort' => [ 'city.raw' => 'asc', ], 'aggs' => [ 'Cities' => [ 'terms' => [ 'field' => 'city.raw', ], ], ], ], ]; $response = $client->search($params); ----
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings