Eric Rohlfs
Eric Rohlfs

Reputation: 36

RavenDB Stopwords

I am looking to add a few new stopwords to the StandardAnalizer in RavenDB.

My document structure has a full name. I am using RavenDB to back an Autocomplete. When a user types in 'Mr' we don't want any results. I thought about just filtering the words in my jQuery script, but wanted to see about options in RavenDB.

{ Name: "Mr. John Smith" }

It would also be nice to have the stopwords list as a single document in RavenDB, but a config file is fine.

Upvotes: 1

Views: 286

Answers (1)

Ayende Rahien
Ayende Rahien

Reputation: 22956

You would have to define a custom analyzer for this to work.

Upvotes: 1

Related Questions