object
Es
extends AnyRef
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hasSearchData
(v: View): Boolean
-
def
hashCode
(): Int
-
def
index
(rec: Record): Unit
-
def
indexAll
: Unit
-
def
isInstanceOf
[T0]
: Boolean
-
def
jsonFor
(rec: Record): String
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
search
(text: String): HttpPackage[String]
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
ES = ElasticSearch
NOTE: decide between the native Java API vs. the REST/JSON API
native: the REST/JSON API is implemented in terms of the native API internally, so the native API should be faster native: the native API allows you to join the cluster as a data-less node, this means that routing is done in 1-hop instead of 2-hops rest: less JARs to link in ( added ~10MB to WAR size ) rest: JAR is hosted at Sonatype, not at scala-tools or maven, so another repo to bring in rest: less configuration? (not sure about this)
*** going with REST/JSON for now ***