Multi-search
Performs multiple searches, defined in a file
msearch(conn, x, raw = FALSE, asdf = FALSE, ...)
conn |
an Elasticsearch connection object, see |
x |
(character) A file path |
raw |
(logical) Get raw JSON back or not. |
asdf |
(logical) If |
... |
Curl args passed on to crul::verb-POST |
This function behaves similarly to docs_bulk()
-
performs searches based on queries defined in a file.
## Not run: x <- connect() msearch1 <- system.file("examples", "msearch_eg1.json", package = "elastic") readLines(msearch1) msearch(x, msearch1) tf <- tempfile(fileext = ".json") cat('{"index" : "shakespeare"}', file = tf, sep = "\n") cat('{"query" : {"match_all" : {}}, "from" : 0, "size" : 5}', sep = "\n", file = tf, append = TRUE) readLines(tf) msearch(x, tf) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.