Re: Solr, JNDI config, dataDir, and solr home problem

2009-09-05 Thread Noble Paul നോബിള്‍ नोब्ळ्
I have raised an issue https://issues.apache.org/jira/browse/SOLR-1414 On Sun, Sep 6, 2009 at 12:32 AM, Archon810 wrote: > > Yeah, I'm using single core (solrconfig.xml). > > > > Noble Paul നോബിള്‍  नोब्ळ्-2 wrote: >> >> ideally you should be able to us the variable >> >> ${solr.core.instanceDir}

Re: Field Collapsing (was Re: Schema for group/child entity setup)

2009-09-05 Thread R. Tan
Great. Nice site and very similar to my requirements. > There's work on the patch that is being done now which will enable you to > ask for specific field values of the collapsed documents using a dedicated > request parameter. So, right now, you get all field values by default? On Sun, Sep 6,

Scandinavia Apache Lucene/Solr September Meetup: 9 September

2009-09-05 Thread Erik Hatcher
Excuse the cross-posted announcement. Next week we'll be having a Lucene/Solr meetup around the JavaZone conference in Oslo, Norway. Before, during, AND after - now that's my kind of meetup! Erik Details here and below: http://www.meetup.com/Scandinavia-Apache-Lucene-Solr-Meetup/

Re: AW: Concept Expansion

2009-09-05 Thread Koji Sekiguchi
Villemos, Gert wrote: Well, this is very interesting. Looking at the documentation provided in the link it seems like the synonym definitions must be in a file. We would define the concept expansions in another format. My question is thus; Is it possible to perform a synonym replacement based o

AW: Concept Expansion

2009-09-05 Thread Villemos, Gert
Well, this is very interesting. Looking at the documentation provided in the link it seems like the synonym definitions must be in a file. We would define the concept expansions in another format. My question is thus; Is it possible to perform a synonym replacement based on not the file but an

Re: AW: AW: Concept Expansion

2009-09-05 Thread Paul Libbrecht
Le 05-sept.-09 à 23:26, Villemos, Gert a écrit : - The QParserPlugin is a factory for the actual QParser parser, i.e. based on the query string and other parameters a parser is instantiated and setup. right. - As part of the construction the plugin parses the q string and extracts the p

AW: AW: Concept Expansion

2009-09-05 Thread Villemos, Gert
Paul, Thanks for the answer. Documentation on QParserPlugins concepts seems to be limited (well, at least my search didnt find it and the java doc doesnt provide much of an explanation). Do I understand the concepts / your suggestion correctly; - The QParserPlugin is a factory for the actua

Re: Concept Expansion

2009-09-05 Thread Shalin Shekhar Mangar
On Sun, Sep 6, 2009 at 2:17 AM, Villemos, Gert wrote: > > We would like to support concept expansion in searches, i.e. when a user > searches for 'software' then the system should also search for keywords / > phrases such as program, computer , system, package and class. > > I imagine that the rig

Re: AW: Concept Expansion

2009-09-05 Thread Paul Libbrecht
Gert, we're doing a similar process on i2geo search, including simple language expansion (one word is queried in several fields of each language), and, though I haven't made it yet but will soon, I've been suggested to do it as qparser plugin. paul Le 05-sept.-09 à 22:47, Villemos, Gert

AW: Concept Expansion

2009-09-05 Thread Villemos, Gert
[Sorry, post submitted as HTML. Proper format below;] We would like to support concept expansion in searches, i.e. when a user searches for 'software' then the system should also search for keywords / phrases such as program, computer , system, package and class. I imagine that the right way

Concept Expansion

2009-09-05 Thread Villemos, Gert
We would like to support concept expansion in searches, i.e. when a user searches for 'software' then the system should also search for keywords / phrases such as program

Re: Field Collapsing (was Re: Schema for group/child entity setup)

2009-09-05 Thread Uri Boness
You can check out http://www.ilocal.nl. If you search for a bank in Amsterdam then you'll see that a lot of the results are collapsed. For this we used an older version of this patch (which works on 1.3) but a lot has changed since then. We're currently using this patch on another project, but

Re: Solr, JNDI config, dataDir, and solr home problem

2009-09-05 Thread Archon810
Yeah, I'm using single core (solrconfig.xml). Noble Paul നോബിള്‍ नोब्ळ्-2 wrote: > > ideally you should be able to us the variable > > ${solr.core.instanceDir} > > but as I checked the code that is not being set for a single core > deployment. are you using single core? > > On Fri, Sep 4,

Re: TermsComponent

2009-09-05 Thread Todd Benge
Thanks - I'll give it a try On 9/5/09, Yonik Seeley wrote: > On Fri, Sep 4, 2009 at 5:46 PM, Todd Benge wrote: >> I was looking at TermsComponent in Solr 1.4 as a way of building a >> autocomplete function.  I have a prototype working but noticed that terms >> that have whitespace in them when in

Re: TermsComponent

2009-09-05 Thread Yonik Seeley
On Fri, Sep 4, 2009 at 5:46 PM, Todd Benge wrote: > I was looking at TermsComponent in Solr 1.4 as a way of building a > autocomplete function.  I have a prototype working but noticed that terms > that have whitespace in them when indexed are absent the whitespace when > returned from the TermsComp

Re: Field Collapsing (was Re: Schema for group/child entity setup)

2009-09-05 Thread R. Tan
Thanks Uri. Your personal suggestion is appreciated and I think I'll follow your advice. We're still early in development and 1.4 would be a good choice. I hope I can get field collapsing to work with my requirements. Do you know any live site using field collapsing already? On Sat, Sep 5, 2009 at

Re: TermsComponent

2009-09-05 Thread Israel Ekpo
Hi Todd, I have not tried this yet. But try setting the terms.raw parameter to true. Maybe that will include the whitespace that is missing from the response. On Fri, Sep 4, 2009 at 5:46 PM, Todd Benge wrote: > Hi, > > I was looking at TermsComponent in Solr 1.4 as a way of building a > autoc

Re: Solr, JNDI config, dataDir, and solr home problem

2009-09-05 Thread Noble Paul നോബിള്‍ नोब्ळ्
ideally you should be able to us the variable ${solr.core.instanceDir} but as I checked the code that is not being set for a single core deployment. are you using single core? On Fri, Sep 4, 2009 at 9:16 PM, Archon810 wrote: > > OK, so I can't access it by ${solr.home}, but is there a way to acc

Re: Field Collapsing (was Re: Schema for group/child entity setup)

2009-09-05 Thread Uri Boness
There's work on the patch that is being done now which will enable you to ask for specific field values of the collapsed documents using a dedicated request parameter. This work is not committed yet to the latest patch, but will be very soon. There is of course a drawback to that as well, the c