Doubts about the use of StopWords

Hi.
I would like to ask a question about what is the best use of stop words. I have a filter (option A) with passing all stopwords and the other option is to create a filter for each language (option B). In any case would I reduce the size of the index?

Option A

      "stop_words_filter": {
          "type": "stop",
          "stopwords": [
            "_brazilian_",
            "_english_",
            "_spanish_",
            "_french_"
          ]
        }

Option B

        "brazilian_stop_filter": {
          "type": "stop",
          "stopwords": "_brazilian_"
        }

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