Learn R Programming

elastic (version 0.7.8)

msearch: Multi-search

Description

Performs multiple searches, defined in a file

Usage

msearch(x, raw = FALSE, asdf = FALSE, ...)

Arguments

x

(character) A file path

raw

(logical) Get raw JSON back or not.

asdf

(logical) If TRUE, use fromJSON to parse JSON directly to a data.frame. If FALSE (Default), list output is given.

...

Curl args passed on to POST

Details

This function behaves similarly to docs_bulk - performs searches based on queries defined in a file.

See Also

Search_uri Search

Examples

Run this code
# NOT RUN {
connect()
msearch1 <- system.file("examples", "msearch_eg1.json", package = "elastic")
readLines(msearch1)
msearch(msearch1)

cat('{"index" : "shakespeare"}', file = "~/mysearch.json", sep = "\n")
cat('{"query" : {"match_all" : {}}, "from" : 0, "size" : 5}',  sep = "\n",
   file = "~/mysearch.json", append = TRUE)
msearch("~/mysearch.json")
# }

Run the code above in your browser using DataLab