/elastic

A thin veneer over HTTPotion that talks to Elastic Search

Primary LanguageElixirMIT LicenseMIT

Elastic

Version Travis Build

You Know, for (Elastic) Search.

Want to talk to Elastic Search in Elixir, but don't want to use raw HTTP calls? This package is for you.

Installation

  1. Add it as a dependency in mix.exs:
defp deps do
  [
    {:elastic, "~> 1.0"}
  ]
  1. Run mix deps.get

  2. Add it to the applications list in mix.exs:

def application do
  [applications: [:elastic]]
end

Docs

Documentation can be found on hexdocs.pm

There's a bug / pull request

Create a new issue or submit a pull request and follow the instructions.

ElasticSearch version

This package is designed to work with ElasticSearch 2.4.x, since that's the version I am personally using.

I think if there are API compatibility issues with ElasticSearch 5.x then we should look at creating a branch for 5.x compatibility. Please submit a pull request to kick off this process.