Sitecore Standard Analyzer : Turn off the stop words filter

In a previous blog post, my colleague and friend, Sheetal Jain wrote this blog post: Sitecore Standard Analyzer : Managing your own stop words filter. If you only want to turn stop words off, you can use the following patch.config file without dropping an empty stopwords.txt file on the server:

[code language=”xml”]
<configuration xmlns:x="<a href="http://www.sitecore.net/xmlconfig/">http://www.sitecore.net/xmlconfig/</a>">

<sitecore>

<contentSearch>

<indexConfigurations>

<defaultLuceneIndexConfiguration type="Sitecore.ContentSearch.LuceneProvider.LuceneIndexConfiguration, Sitecore.ContentSearch.LuceneProvider">

<analyzer type="Sitecore.ContentSearch.LuceneProvider.Analyzers.PerExecutionContextAnalyzer, Sitecore.ContentSearch.LuceneProvider">

<param desc="defaultAnalyzer" type="Sitecore.ContentSearch.LuceneProvider.Analyzers.DefaultPerFieldAnalyzer, Sitecore.ContentSearch.LuceneProvider">

<param desc="defaultAnalyzer" type="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net">

<param desc="stopWords" type="System.IO.StringReader, mscorlib">

<param hint="s"></param>

</param>

</param>

</param>

</analyzer>

</defaultLuceneIndexConfiguration>

</indexConfigurations>

</contentSearch>

</sitecore>

</configuration>
[/code]

For the Lucene.Net.Analysis.Standard.StandardAnalyzer, the following constructor was used Sheetal’s previous post:
[code language=”csharp”]
public StandardAnalyzer(Version matchVersion, FileInfo stopwords)
[/code]
Instead of using the constructor mentioned above for the Lucene.Net.Analysis.Standard.StandardAnalyzer, this patch.config will now call the following constructor:
[code language=”csharp”]
public StandardAnalyzer(Version matchVersion, TextReader stopwords)
[/code]
It will automatically convert the System.IO.StringReader to a System.IO.TextReader since StringReader inherits from TextReader. Line 19 of the patch.config code file passes an empty string to the System.IO.StreamReader constructor, so there will be no stop words in passed to the StandardAnalyzer.

Note: check your /sitecore/admin/showconfig.aspx and make sure that:
[code language=”xml”]
<param hint="version">Lucene_30</param>
[/code]
comes before:
[code language=”xml”]
<param desc="stopWords" type="System.IO.StringReader, mscorlib" patch:source="LuceneComputedFields.config">
<param hint="s"/>
</param>
[/code]