SpellCheck Help

2012-01-10 Thread Donald Organ
I am trying to get the IndexBasedSpellChecker to work. I believe I have everything setup properly and the spellcheck component seems to be running but the suggestions list is empty. I am using SOLR 3.5 with Jetty. My solrconfig.xml and schema.xml are as follows: solrconfig.xml: http://pastie.o

Re: SpellCheck Help

2012-01-10 Thread Donald Organ
llchecker won't > try to correct it. This is true even if you're omitting words from the > dictionary (for intance, by using "thresholdTokenFrequency") > > James Dyer > E-Commerce Systems > Ingram Content Group > (615) 213-4311 > > > -Original Me

Help with Synonyms

2012-03-02 Thread Donald Organ
I am trying to get synonyms working correctly, I want to map floor locker tostorage locker currently searching for storage locker produces results were as searching for floor locker does not produce any results. I have the following setup for index time synonyms:

Re: Help with Synonyms

2012-03-05 Thread Donald Organ
> > >> > Hi Donald, > > Try to remove tokenizerFactory="**KeywordTokenizerFactory" in your > synonym filter > definition because I think you would want to tokenize the synonym settings > in > synonyms.txt as "floor" / "locker" => "storage" / "locker". But if you set > it > to KeywordTokenizer, it w

Re: Help with Synonyms

2012-03-05 Thread Donald Organ
No I do synonyms at index time. On Monday, March 5, 2012, Koji Sekiguchi wrote: > (12/03/06 0:11), Donald Organ wrote: >>> >>> Try to remove tokenizerFactory="**KeywordTokenizerFactory" in your >>> synonym filter >>> definition because I thin

Re: Help with Synonyms

2012-03-05 Thread Donald Organ
Ok so do I need to use a different format in my synonyms.txt file in order to do this at index time? On Monday, March 5, 2012, Koji Sekiguchi wrote: > (12/03/06 11:07), Donald Organ wrote: >> >> No I do synonyms at index time. >> > : >>>> >>>> I

Re: Help with Synonyms

2012-03-05 Thread Donald Organ
Excellent thank you, it is now working! On Mon, Mar 5, 2012 at 9:37 PM, Koji Sekiguchi wrote: > (12/03/06 11:23), Donald Organ wrote: > >> Ok so do I need to use a different format in my synonyms.txt file in order >> to do this at index time? >> >> > Right, if y

Need some quick help diagnosing query

2012-03-07 Thread Donald Organ
Right now i am doing the following: qf=name^1.75 codeTXT^1.75 cat_search^1.5 description^0.8 brand^5.0 cat_search^0.8 fl=code,score defType=dismax q=whitney brothers carts if i change it to the following then i get results: qf=name^1.75 codeTXT^1.75 cat_search^1.5 descript

Re: Need some quick help diagnosing query

2012-03-07 Thread Donald Organ
> > Simply your collection does contain a doc having all these three terms? > Try different mm values. > > > http://wiki.apache.org/solr/DisMaxQParserPlugin#mm_.28Minimum_.27Should.27_Match.29 > Would this also be affected if one of the fields that contains that term is a defined as solr.StrField

Re: Need some quick help diagnosing query

2012-03-07 Thread Donald Organ
> > > Would this also be affected if one of the fields that > > contains that term is > > a defined as solr.StrField where as > > most of the other fields are defined > > as solr.TextField? > > It could be. string fields are not analyzed. For example, one whitespace > can prevent match. Cards a

Reporting tools

2012-03-08 Thread Donald Organ
Are there any reporting tools out there? So I can analyzer search term frequency, filter frequency, etc?

Boosting documents based on search term/phrase

2012-05-01 Thread Donald Organ
Is there a way to boost documents based on the search term/phrase?

Re: Boosting documents based on search term/phrase

2012-05-01 Thread Donald Organ
//wiki.apache.org/solr/QueryElevationComponent> > > And besides explicit boosting by the user (the "^" suffix operator after a > term/phrase)? > > -- Jack Krupansky > > -Original Message- From: Donald Organ > Sent: Tuesday, May 01, 2012 3:59 PM > To

Re: Boosting documents based on search term/phrase

2012-05-01 Thread Donald Organ
Perfect, this is working well. On Tue, May 1, 2012 at 5:33 PM, Jeevanandam wrote: > Yes, you can add in last-components section on default query handler. > > > elevator > > > - Jeevanandam > > > On 02-05-2012 3:53 am, Donald Organ wrote: > >> query e

Boosting on field empty or not

2012-05-14 Thread Donald Organ
Is there a way to boost a document based on whether the field is empty or not. I am looking to boost documents that have a specific field populated.

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
score... Is there a way to do this? On Mon, May 14, 2012 at 2:22 PM, Jack Krupansky wrote: > In a query or filter query you can write +field:* to require that a field > be populated or +(-field:*) to require that it not be populated > > -- Jack Krupansky > > -Original Message

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
t; does not have anything in the field, de-boost it. Choose the boost factors > to suit your desired boosting effect. > > -- Jack Krupansky > > -----Original Message- From: Donald Organ > Sent: Monday, May 14, 2012 2:38 PM > To: solr-user@lucene.apache.org > Subject: Re: Boo

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
ain, so you need the *:* > in there. > > I noticed that you second boost operator was missing as well. > > -- Jack Krupansky > > -Original Message- From: Donald Organ > Sent: Monday, May 14, 2012 3:24 PM > To: solr-user@lucene.apache.org > Subject: Re: B

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
re&q=chairs AND (regularprice:*^5 OR (*:* -regularprice:*)^5)&sort=score desc On Mon, May 14, 2012 at 3:36 PM, Jack Krupansky wrote: > "(*:* -regularprice:*)5" should be "(*:* -regularprice:*)^0.5" - the > missing boost operator. > > -- Jack Krupansky > > -Origin

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
OK it looks like the query change is working but it looks like it boosting everything even documents that have that field empty On Mon, May 14, 2012 at 3:41 PM, Donald Organ wrote: > OK i must be missing something: > > > defType=edismax&start=0&rows=24&facet=true&a

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
ky > > -Original Message- From: Donald Organ > Sent: Monday, May 14, 2012 4:01 PM > To: solr-user@lucene.apache.org > Subject: Re: Boosting on field empty or not > > OK it looks like the query change is working but it looks like it boosting > everything even documen

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
I've even tried upping the boost to 10 and the de-boost to 1but yet its still applying the boost to all the documents returned. So it matter if this is a money field? On Mon, May 14, 2012 at 4:19 PM, Donald Organ wrote: > &q=chairs AND (regularprice:*^5 OR (*:* -regularprice:

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
OK i think i found the proper way to do what i was trying to do: &q=chairs AND (regularprice:[0 TO *]^5) On Mon, May 14, 2012 at 4:25 PM, Donald Organ wrote: > I've even tried upping the boost to 10 and the de-boost to 1but yet > its still applying the boost to all the doc

Re: Boosting on field empty or not

2012-05-14 Thread Donald Organ
OK thats giving me only documents that have the field populated On Mon, May 14, 2012 at 4:28 PM, Donald Organ wrote: > OK i think i found the proper way to do what i was trying to do: > > &q=chairs AND (regularprice:[0 TO *]^5) > > > On Mon, May 14, 2012 at 4:25

Re: Boosting on field empty or not

2012-05-15 Thread Donald Organ
The problem with what you provided is it is boosting ALL documents whether the field is empty or not On Tue, May 15, 2012 at 3:52 AM, Ahmet Arslan wrote: > > Basically I want documents that have a given field populated > > to have a > > higher score than the documents that dont. So if you >

Re: Boosting on field empty or not

2012-05-15 Thread Donald Organ
I have figured it out using your recommendation...I just had to give it a high enough boost. BTW its a float field On Tue, May 15, 2012 at 9:21 AM, Ahmet Arslan wrote: > > The problem with what you provided is > > it is boosting ALL documents whether > > the field is empty or not > > Then a

Re: Boosting on field empty or not

2012-05-15 Thread Donald Organ
Scratch that...it still seems to be boosting documents where the value of the field is empty. bq=regularprice:[0.01 TO *]^50 Results with bq set: 2.2172112 bhl-ltab-30 Results without bq set: 2.4847748 bhl-ltab-30 On Tue, May 15, 2012 at 12:40 PM, Donald Organ

Re: Boosting on field empty or not

2012-05-15 Thread Donald Organ
If the bq is only supposed apply the boost when the field value is greater than 0.01 why would trying another query make sure this is working. Its applying the boost to all the fields, yes when the boost is high enough most of documents with a value GT 0.01 show up first however since it is applyi

Re: Unable to get multicore working

2011-08-16 Thread Donald Organ
When you go to /solr what do you see? On Tue, Aug 16, 2011 at 5:23 PM, David Sauve wrote: > I updated my `solr.xml` as follow: > > > > > dataDir="/home/webteam/preview/data" /> > dataDir="/home/webteam/staging/data" /> > dataDir="/home/webteam/live/data" /> > > > > > and I'm still seein