Skip to content

Commit

Permalink
Rename ElasticSearch to Elasticsearch
Browse files Browse the repository at this point in the history
  • Loading branch information
fehmicansaglam committed Feb 2, 2014
1 parent d7f7e0e commit 55143fa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions 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.
Expand All @@ -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)
Expand Down Expand Up @@ -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 |
|-------------------------------------------|----------------|
Expand Down Expand Up @@ -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).

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion 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.

Expand Down
2 changes: 1 addition & 1 deletion guide/search.md
Expand Up @@ -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") }
```
Expand Down

0 comments on commit 55143fa

Please sign in to comment.