Package

com.sksamuel

elastic4s

Permalink

package elastic4s

Visibility
  1. Public
  2. All

Type Members

  1. case class ArrayFieldValue(name: String, values: Seq[FieldValue]) extends FieldValue with Product with Serializable

    Permalink
  2. case class DocumentRef(index: String, type: String, id: String) extends Product with Serializable

    Permalink
  3. trait ElasticApi extends ElasticImplicits with AliasesApi with AggregationApi with AnalyzerApi with BulkApi with CatsApi with CreateIndexApi with ClusterApi with CollapseApi with DeleteApi with DeleteIndexApi with DynamicTemplateApi with ExplainApi with ForceMergeApi with GetApi with HighlightApi with IndexApi with IndexAdminApi with IndexRecoveryApi with IndexTemplateApi with LocksApi with MappingApi with NodesApi with NormalizerApi with QueryApi with PipelineAggregationApi with ReindexApi with ScriptApi with ScoreApi with ScrollApi with SearchApi with SearchTemplateApi with SortApi with SuggestionApi with TaskApi with TermVectorApi with TokenizerApi with TypesApi with UpdateApi with ValidateApi

    Permalink
  4. trait ElasticImplicits extends AnyRef

    Permalink
  5. case class ElasticsearchClientUri(uri: String, hosts: List[(String, Int)], options: Map[String, String] = Map.empty) extends Product with Serializable

    Permalink

    Uri used to connect to an Elasticsearch cluster.

    Uri used to connect to an Elasticsearch cluster. The general format is

    elasticsearch://host:port,host:port?querystring

    Multiple host:port combinations can be specified, seperated by commas. Options can be specified using standard uri query string syntax, eg cluster.name=superman

    To use HTTPS when using the HTTP client, add ssl=true to the query parameters.

  6. trait FieldValue extends AnyRef

    Permalink
  7. trait FieldValueWriter[T <: FieldValue] extends AnyRef

    Permalink
  8. trait Hit extends AnyRef

    Permalink

    A common trait for Get, MultiGet, Search and MultiSearch API results so that the HitReader typeclass can unmarshall results from any of those.

  9. trait HitReader[T] extends AnyRef

    Permalink
  10. case class IndexAndType(index: String, type: String) extends Product with Serializable

    Permalink

    Models exactly one index associated with exactly one type.

  11. case class IndexAndTypes(index: String, types: Seq[String]) extends Product with Serializable

    Permalink

    Models one index associated with one or more types.

    Models one index associated with one or more types.

    So for example, - index1/type1 - index1/type1,type2

  12. trait Indexable[T] extends AnyRef

    Permalink

    A Typeclass that is used by index requests to convert a type into a document for use by Elasticsearch

  13. case class Indexes(values: Seq[String]) extends Product with Serializable

    Permalink

    Models one or more indexes, eg - "index1" - "index1,index2" - "_all"

  14. case class IndexesAndType(indexes: Seq[String], type: String) extends Product with Serializable

    Permalink
  15. case class IndexesAndTypes(indexes: Seq[String], types: Seq[String]) extends Product with Serializable

    Permalink

    Models one or more indexes associated with zero or more types.

    Models one or more indexes associated with zero or more types.

    So for example, - index1 - index1/index2 - index1/type1 - index1/type1,type2 - index1,index2/type1 - index1,index2/type1,type2

  16. case class NestedFieldValue(name: Option[String], values: Seq[FieldValue]) extends FieldValue with Product with Serializable

    Permalink
  17. case class NullFieldValue(name: String) extends FieldValue with Product with Serializable

    Permalink
  18. abstract class Preference extends AnyRef

    Permalink
  19. case class SimpleFieldValue(name: Option[String], value: Any) extends FieldValue with Product with Serializable

    Permalink
  20. trait TypesApi extends AnyRef

    Permalink

Value Members

  1. object DefinitionAttributes

    Permalink
  2. object ElasticApi extends ElasticApi

    Permalink
  3. object ElasticImplicits extends ElasticImplicits

    Permalink
  4. object ElasticsearchClientUri extends Serializable

    Permalink
  5. object FieldsMapper

    Permalink

    Converts between scala types and types that Elasticsearch understands.

  6. object IndexAndType extends Serializable

    Permalink
  7. object IndexAndTypes extends Serializable

    Permalink
  8. object Indexes extends Serializable

    Permalink
  9. object IndexesAndType extends Serializable

    Permalink
  10. object IndexesAndTypes extends Serializable

    Permalink
  11. object NestedFieldValue extends Serializable

    Permalink
  12. object Preference

    Permalink
  13. object SimpleFieldValue extends Serializable

    Permalink
  14. object XContentFieldValueWriter

    Permalink
  15. package admin

    Permalink
  16. package alias

    Permalink
  17. package analyzers

    Permalink
  18. package bulk

    Permalink
  19. package cat

    Permalink
  20. package cluster

    Permalink
  21. package definitions

    Permalink
  22. package delete

    Permalink
  23. package explain

    Permalink
  24. package get

    Permalink
  25. package indexes

    Permalink
  26. package locks

    Permalink
  27. package mappings

    Permalink
  28. package nodes

    Permalink
  29. package reindex

    Permalink
  30. package script

    Permalink
  31. package searches

    Permalink
  32. package task

    Permalink
  33. package termvectors

    Permalink
  34. package update

    Permalink
  35. package validate

    Permalink

Ungrouped