Analyze multiple fields with a single request

Is it possible to analyze multiple fields with a single GET request?

For example:

GET nedis_toxicsites/_analyze
{
  [
    {"field": "City", "text": "Town of Trumbull"},
    {"field": "State", "text":  "CT"}
  ]
}

Would return the tokens based on the City analyzer as well as the tokens based on the State analyzer. Right now, I have to send multiple round trips for each field and merge the results.

Thanks, Richard

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.