solr_all: Solr search.

Description Usage Arguments Value References See Also Examples

View source: R/solr_all.r

Description

Solr search.

Usage

1
2
3
4
5
6
solr_all(q = "*:*", sort = NULL, start = 0, rows = NULL,
  pageDoc = NULL, pageScore = NULL, fq = NULL, fl = NULL,
  defType = NULL, timeAllowed = NULL, qt = NULL, wt = "json",
  NOW = NULL, TZ = NULL, echoHandler = NULL, echoParams = NULL,
  key = NULL, base = NULL, callopts = list(), raw = FALSE,
  parsetype = "df", concat = ",", ..., verbose = TRUE)

Arguments

q

Query terms, defaults to '*:*', or everything.

sort

Field to sort on. You can specify ascending (e.g., score desc) or descending (e.g., score asc), sort by two fields (e.g., score desc, price asc), or sort by a function (e.g., sum(x_f, y_f) desc, which sorts by the sum of x_f and y_f in a descending order).

start

Record to start at, default to beginning.

rows

Number of records to return. Defaults to 10.

pageDoc

If you expect to be paging deeply into the results (say beyond page 10, assuming rows=10) and you are sorting by score, you may wish to add the pageDoc and pageScore parameters to your request. These two parameters tell Solr (and Lucene) what the last result (Lucene internal docid and score) of the previous page was, so that when scoring the query for the next set of pages, it can ignore any results that occur higher than that item. To get the Lucene internal doc id, you will need to add [docid] to the &fl list. e.g., q=*:*&start=10&pageDoc=5&pageScore=1.345&fl=[docid],score

pageScore

See pageDoc notes.

fq

Filter query, this does not affect the search, only what gets returned

fl

Fields to return

defType

Specify the query parser to use with this request.

timeAllowed

The time allowed for a search to finish. This value only applies to the search and not to requests in general. Time is in milliseconds. Values <= 0 mean no time restriction. Partial results may be returned (if there are any).

qt

Which query handler used.

wt

Data type returned, defaults to 'json'

NOW

Set a fixed time for evaluating Date based expresions

TZ

Time zone, you can override the default.

echoHandler

If the echoHandler parameter is true, Solr places the name of the handle used in the response to the client for debugging purposes.

echoParams

The echoParams parameter tells Solr what kinds of Request parameters should be included in the response for debugging purposes, legal values include:

  • none - don't include any request parameters for debugging

  • explicit - include the parameters explicitly specified by the client in the request

  • all - include all parameters involved in this request, either specified explicitly by the client, or implicit because of the request handler configuration.

key

API key, if needed.

base

URL endpoint.

callopts

Call options passed on to httr::GET

raw

(logical) If TRUE, returns raw data in format specified by wt param

parsetype

(character) One of 'list' or 'df'

concat

(character) Character to concatenate elements of longer than length 1. Note that this only works reliably when data format is json (wt='json'). The parsing is more complicated in XML format, but you can do that on your own.

...

Further args.

verbose

If TRUE (default) the url call used printed to console.

Value

XML, JSON, a list, or data.frame

References

See http://wiki.apache.org/solr/#Search_and_Indexing for more information.

See Also

solr_highlight, solr_facet

Examples

1
2
3
4
5
## Not run: 
url <- 'http://api.plos.org/search'
solr_all(q='*:*', rows=2, fl='id', base=url)

## End(Not run)

solr documentation built on May 29, 2017, 10:50 p.m.