Browse Source

fixed typo in README

tags/2.0.0-beta
Carsten Brandt 11 years ago
parent
commit
91998d03a7
  1. 4
      extensions/elasticsearch/README.md

4
extensions/elasticsearch/README.md

@ -13,7 +13,7 @@ return [
'components' => [ 'components' => [
'elasticsearch' => [ 'elasticsearch' => [
'class' => 'yii\elasticsearch\Connection', 'class' => 'yii\elasticsearch\Connection',
'hosts' => [ 'nodes' => [
['http_address' => '127.0.0.1:9200'], ['http_address' => '127.0.0.1:9200'],
// configure more hosts if you have a cluster // configure more hosts if you have a cluster
], ],
@ -145,4 +145,4 @@ $query->addStatisticalFacet('click_stats', ['field' => 'visit_count']);
$query->search(); // gives you all the records + stats about the visit_count field. e.g. mean, sum, min, max etc... $query->search(); // gives you all the records + stats about the visit_count field. e.g. mean, sum, min, max etc...
``` ```
And there is so much more in it. "it’s endless what you can build"[¹](http://www.elasticsearch.org/) And there is so much more in it. "it’s endless what you can build"[¹](http://www.elasticsearch.org/)

Loading…
Cancel
Save