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. sealed trait DistanceUnit extends AnyRef

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

    Permalink
  4. 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
  5. trait ElasticImplicits extends AnyRef

    Permalink
  6. 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.

  7. case class FetchSourceContext(fetchSource: Boolean, includes: Array[String] = Array.empty, excludes: Array[String] = Array.empty) extends Product with Serializable

    Permalink
  8. trait FieldValue extends AnyRef

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

    Permalink
  10. sealed trait HealthStatus extends AnyRef

    Permalink
  11. 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.

  12. trait HitReader[T] extends AnyRef

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

    Permalink

    Models exactly one index associated with exactly one type.

  14. 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

  15. 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

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

    Permalink

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

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

    Permalink
  18. 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

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

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

    Permalink
  21. sealed trait Operator extends AnyRef

    Permalink
  22. abstract class Preference extends AnyRef

    Permalink
  23. sealed trait Priority extends AnyRef

    Permalink
  24. sealed trait RefreshPolicy extends AnyRef

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

    Permalink
  26. trait TypesApi extends AnyRef

    Permalink
  27. sealed trait ValueType extends AnyRef

    Permalink
  28. sealed trait VersionType extends AnyRef

    Permalink

Value Members

  1. object DefinitionAttributes

    Permalink
  2. object DistanceUnit

    Permalink
  3. object ElasticApi extends ElasticApi

    Permalink
  4. object ElasticImplicits extends ElasticImplicits

    Permalink
  5. object ElasticsearchClientUri extends Serializable

    Permalink
  6. object FieldsMapper

    Permalink

    Converts between scala types and types that Elasticsearch understands.

  7. object HealthStatus

    Permalink
  8. object IndexAndType extends Serializable

    Permalink
  9. object IndexAndTypes extends Serializable

    Permalink
  10. object Indexes extends Serializable

    Permalink
  11. object IndexesAndType extends Serializable

    Permalink
  12. object IndexesAndTypes extends Serializable

    Permalink
  13. object NestedFieldValue extends Serializable

    Permalink
  14. object Operator

    Permalink
  15. object Preference

    Permalink
  16. object Priority

    Permalink
  17. object RefreshPolicy

    Permalink
  18. object SimpleFieldValue extends Serializable

    Permalink
  19. object ValueType

    Permalink
  20. object VersionType

    Permalink
  21. object XContentFieldValueWriter

    Permalink
  22. package admin

    Permalink
  23. package alias

    Permalink
  24. package analyzers

    Permalink
  25. package bulk

    Permalink
  26. package cat

    Permalink
  27. package cluster

    Permalink
  28. package definitions

    Permalink
  29. package delete

    Permalink
  30. package explain

    Permalink
  31. package get

    Permalink
  32. package indexes

    Permalink
  33. package json

    Permalink
  34. package locks

    Permalink
  35. package mappings

    Permalink
  36. package nodes

    Permalink
  37. package reindex

    Permalink
  38. package script

    Permalink
  39. package searches

    Permalink
  40. package task

    Permalink
  41. package termvectors

    Permalink
  42. package update

    Permalink
  43. package validate

    Permalink

Ungrouped