How to disable stopwords handling

Hi,

I would like to disable the stopwords handling to actually index all
stopwords from my documents.

Should this config work?

index :
analysis :
analyzer :
default :
type : standard
stopwords : []

It does not seems to work in my tests - keeps using the default stopwords list.

What would be the correct way configure this? Workaround is to put a
single dummy stopword in the list...

Thanks,
Colin

It should work, but currently there is a bug that if you specify empty
array, it will use the default set of stop words. For now, you can specify a
single really ridiculous stop word. I have just fixed it in master:
Analysis: When specifying empty array for stopwords, use an empty list for stopwords · Issue #230 · elastic/elasticsearch · GitHub.

-shay.banon

On Thu, Jun 17, 2010 at 11:55 PM, Colin Surprenant <
colin.surprenant@gmail.com> wrote:

Hi,

I would like to disable the stopwords handling to actually index all
stopwords from my documents.

Should this config work?

index :
analysis :
analyzer :
default :
type : standard
stopwords :

It does not seems to work in my tests - keeps using the default stopwords
list.

What would be the correct way configure this? Workaround is to put a
single dummy stopword in the list...

Thanks,
Colin