Question about Query Phrase Slop (qs) in dismax

2008-11-22 Thread anuvenk
>From the solr wiki, it sounded like if qs is set to 5 for example, & if the search term is 'child custody', only docs with 'child' & 'custody' within 5 words of one another would be returned in results. Is this correct? If so, it doesn't seem to be working for me. I see docs with 'child' & 'custo

Re: QueryElevationComponent

2008-11-22 Thread Ryan McKinley
hymm -- that *should* not be the case. The id field in QueryElevationComponent uses the globally defined field: SchemaField sf = core.getSchema().getUniqueKeyField(); ... idField = sf.getName().intern(); The only thing that may be weird is that if you id field is named "myid", y

RE: idea about faceting

2008-11-22 Thread Lance Norskog
Index two fields instead of one. One field has ISOLatin1Filter, LowerCase etc. and one does not. Search the processed, filter on the raw one. For more searching power, you can even index a third field with the Soundex/Metaphone phoneme translators. -Original Message- From: Marc Sturlese [m

RE: Newbie Question - getting search results from dataimport request handler

2008-11-22 Thread Lance Norskog
Comment added about SOLR-853, for those interested: https://issues.apache.org/jira/browse/SOLR-853 -Original Message- From: Noble Paul നോബിള്‍ नोब्ळ् [mailto:[EMAIL PROTECTED] Sent: Friday, November 21, 2008 8:12 PM To: solr-user@lucene.apache.org Subject: Re: Newbie Question - getting s

RE: Newbie Question - getting search results from dataimport request handler

2008-11-22 Thread Norskog, Lance
As part of the ETL effort, please consider how to integrate with these two open-source ETL systems. I'm not asking for an implementation, just suggesting that having a concrete context will help you in the architecture phase. http://kettle.pentaho.org/ http://www.talend.com/products-data-integr

QueryElevationComponent

2008-11-22 Thread Paolo Ruscitti
I have a question about QueryElevationComponent. I'm trying to use it but it seems it works properly if, and only if, the id field name in definition is '*id*'. so if I have *myid*, it does not work. Could you please tell me what I'm doing wrong? thaks a lot Paolo - this is my elevate.xml

Re: Build Solr to run SolrJS

2008-11-22 Thread Jon Baer
Maybe another template idea ... I just started playing around w/ this plugin: http://malsup.com/jquery/taconite/ Would be pretty neat to have that as a response (or @ least the technique), not sure how well known it is or if there is something W3C- based in the pipeline that is similar. Pr

Re: idea about faceting

2008-11-22 Thread Yonik Seeley
On Sat, Nov 22, 2008 at 12:43 PM, Marc Sturlese <[EMAIL PROTECTED]> wrote: > I am faceing a problem doing filed facets and I don't know if there exist > any solution in Solr to solve my problem. > I want to do facets with a field that is very small text. To do that I am > using the KeywordTokenizer

idea about faceting

2008-11-22 Thread Marc Sturlese
Hey there, I am faceing a problem doing filed facets and I don't know if there exist any solution in Solr to solve my problem. I want to do facets with a field that is very small text. To do that I am using the KeywordTokenizerfactory to keep all the words of the text in just one token. I use Low

Re: facet sort by ranking

2008-11-22 Thread Yonik Seeley
On Sat, Nov 22, 2008 at 12:05 PM, Amit <[EMAIL PROTECTED]> wrote: > Actually we have some ranking associated to field on which we are faceting > and we want to show only top 10 facet value now which is sort by count but > we want to sort by it ranking. I think you're going to have to give some con

RE: facet sort by ranking

2008-11-22 Thread Amit
Hi Sahlin, Thanks for reply. Actually we have some ranking associated to field on which we are faceting and we want to show only top 10 facet value now which is sort by count but we want to sort by it ranking. Regards, Amit -Original Message- From: Shalin Shekhar Mangar [mailto:[EMA

Re: Build Solr to run SolrJS

2008-11-22 Thread Matthias Epheser
Erik Hatcher schrieb: It'd be nice to have SolrJS and VrW's examples, at least the default one, work off the built-in Solr example data. It's pretty minimal, and somewhat contrived, but it'll make it lots easier to document and demonstrate this stuff if it's cohesive that way. Certainly, tho

Re: Build Solr to run SolrJS

2008-11-22 Thread Erik Hatcher
It'd be nice to have SolrJS and VrW's examples, at least the default one, work off the built-in Solr example data. It's pretty minimal, and somewhat contrived, but it'll make it lots easier to document and demonstrate this stuff if it's cohesive that way. Certainly, though, it's not possib

Re: Build Solr to run SolrJS

2008-11-22 Thread Matthias Epheser
JCodina schrieb: Yesterday I got it running, I thouhght I had post it, but I should not push the post button. The problem I had to solve to run it with the Velocity was to copy by hand the velocity jar files to /lib. There is an ant task "example-init" in contrib/javascript/build.xml that shou

Re: Build Solr to run SolrJS

2008-11-22 Thread JCodina
Yesterday I got it running, I thouhght I had post it, but I should not push the post button. The problem I had to solve to run it with the Velocity was to copy by hand the velocity jar files to /lib. Erik Hatcher wrote: > > I just got the client-side demo on trunk to work (with a few tweaks t

Re: Build Solr to run SolrJS

2008-11-22 Thread Erik Hatcher
On Nov 22, 2008, at 4:26 AM, Erik Hatcher wrote: I just got the client-side demo on trunk to work (with a few tweaks to make it work with the example core Solr data). On trunk follow these steps: * root directory: ant example One extra step needed, for the pedantic... * launch Solr: cd

Re: Build Solr to run SolrJS

2008-11-22 Thread Erik Hatcher
I just got the client-side demo on trunk to work (with a few tweaks to make it work with the example core Solr data). On trunk follow these steps: * root directory: ant example * separate console, index data: cd example/exampledocs; java -jar post.jar *.xml * open contrib/javascript/e