From 55143fa50878427e145232fd0d3ee3be84b6147c Mon Sep 17 00:00:00 2001 From: Fehmi Can Saglam Date: Sun, 2 Feb 2014 22:11:27 +0200 Subject: [PATCH] Rename `ElasticSearch` to `Elasticsearch` https://github.com/elasticsearch/elasticsearch/issues/4634 --- README.md | 10 +++++----- guide/index.md | 2 +- guide/search.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 69d205bb9..632d66b49 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ elastic4s - Elasticsearch Scala Client ========= -Elastic4s is a concise, idiomatic, asynchronous, type safe Scala Client for ElasticSearch. +Elastic4s is a concise, idiomatic, asynchronous, type safe Scala Client for Elasticsearch. It provides a Scala DSL to construct your queries and (hopefully!) reducing errors and uses standard Scala futures to enable you to easily integrate into your existing asynchronous workflows. Due to its typesafe nature elastic4s is also a good way to learn the options available for any operation, as your IDE can use the type information to show you what methods are available. @@ -19,7 +19,7 @@ JSON libraries such as Jackson without having to unmarshall. The latest release is 0.90.10.0 which is compatible with elasticsearch 0.90.10. For releases that are compatible with earlier versions of elasticsearch, [search maven central](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.sksamuel.elastic4s%22%20AND%20a%3A%22elastic4s_2.10%22). The general format is that release 0.90.x.y is compatible with elasticsearch 0.90.x. -Version 1.0.0-SNAPSHOT is currently in progress and will be released once elasticsearch 1.0 is released. If you wish to use elastic4s with a 1.0.0 release candidate then you will need to build from source for the time being. +Version 1.0.0-SNAPSHOT is currently in progress and will be released once Elasticsearch 1.0 is released. If you wish to use elastic4s with a 1.0.0 release candidate then you will need to build from source for the time being. [![Build Status](https://travis-ci.org/sksamuel/elastic4s.png)](https://travis-ci.org/sksamuel/elastic4s) [![Coverage Status](https://coveralls.io/repos/sksamuel/elastic4s/badge.png?branch=master)](https://coveralls.io/r/sksamuel/elastic4s?branch=master) @@ -61,7 +61,7 @@ For more in depth examples keep reading. Here is a list of the common operations and the syntax used to create requests. For more details on each operation click through to the readme page. For options that are not yet documented, refer -to the elasticsearch documentation as the DSL closely mirrors the standard Java API. +to the Elasticsearch documentation as the DSL closely mirrors the standard Java API. | Operation | Samuel Normal Form Syntax | |-------------------------------------------|----------------| @@ -159,7 +159,7 @@ client.execute { } ``` -Then ElasticSearch is configured with those mappings for those fields only. It is still fully dynamic and other fields will be created as needed with default options. +Then Elasticsearch is configured with those mappings for those fields only. It is still fully dynamic and other fields will be created as needed with default options. More examples on the create index syntax can be [found here](guide/createindex.md). @@ -299,7 +299,7 @@ For all the options see [here](http://www.elasticsearch.org/guide/reference/quer ## Bulk Operations -ElasticSearch is fast. Roundtrips are not. +Elasticsearch is fast. Roundtrips are not. Sometimes we want to wrestle every last inch of performance and a useful way to do this is to batch up operations. Elastic has predicted our wishes and created the bulk API. To do this we simply combine index, delete and update operations into a sequence and execute using the bulk method in the client. diff --git a/guide/index.md b/guide/index.md index 813317068..e571530c2 100644 --- a/guide/index.md +++ b/guide/index.md @@ -1,7 +1,7 @@ ## Indexing Indexing means adding a document to the search engine making it available for searching. All documents have an id -and that can be specified by you or generated by elasticsearch. +and that can be specified by you or generated by Elasticsearch. Lets index a very simple document that has a single field, a name. diff --git a/guide/search.md b/guide/search.md index ab3f17364..36ca065a1 100644 --- a/guide/search.md +++ b/guide/search.md @@ -18,7 +18,7 @@ We might want to limit the number of results and / or set the offset. search in "places"->"cities" query "paris" start 5 limit 10 ``` -One of the great features of ElasticSearch is the number of queries it provides. Here we can use the term query to limit the search to just the state of Georgia rather than the country of Georgia. +One of the great features of Elasticsearch is the number of queries it provides. Here we can use the term query to limit the search to just the state of Georgia rather than the country of Georgia. ```scala search in "places"->"cities" { term("state", "georgia") } ```