Joe Calderon-2 wrote:
> 
> or you can try the commongrams filter that combines tokens next to a
> stopword
> 
> On Tue, Mar 2, 2010 at 6:56 AM, Walter Underwood <wun...@wunderwood.org>
> wrote:
>> Don't remove stopwords if you want to search on them. --wunder
>>
>> On Mar 2, 2010, at 5:43 AM, Erick Erickson wrote:
>>
>>> This is a classic problem with Stopword removal. Have you tried
>>> just removing stopwords from the indexing definition and the
>>> query definition and reindexing?
>>>
>>> You can't search on them no matter what you do if they've
>>> been removed, they just aren't there....
>>>
>>> HTH
>>> Erick
>>>
>>> On Tue, Mar 2, 2010 at 5:47 AM, Suram <reactive...@yahoo.com> wrote:
>>>
>>>>
>>>> Hi,
>>>>
>>>> How can i search using stopword my query like this
>>>>
>>>> This             - 0 results becuase it is a stopword
>>>> is                 - 0 results becuase it is a stopword
>>>> that             - 0 results becuase it is a stopword
>>>>
>>>> if i search like  "This is that" - it must give the result
>>>>
>>>> for that i need to change anything in my schema file to get result
>>>> "This is
>>>> that"
>>>> --
>>>> View this message in context:
>>>> http://old.nabble.com/Issue-on-stopword-list-tp27754434p27754434.html
>>>> Sent from the Solr - User mailing list archive at Nabble.com.
>>>>
>>>>
>>
>>
> 
> 


I tried commongrams also but won't worked . here search "this is it" .i
would like to get exact information not for this is,is or it.

my document like

<field name="id">101</field>
    <field name="name">This Is It</field>
    <field name="manu">Apache Software Foundation</field>
    <field name="cat">software</field>
    <field name="cat">search</field>

Here my schema

http://old.nabble.com/file/p27768959/schema.xml schema.xml 


and i set the specific field for searchable like Name ,manu, catwhen i index
it not found search.
-- 
View this message in context: 
http://old.nabble.com/Issue-on-stopword-list-tp27754434p27768959.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to