Re: Using Solr without using a web-app

2007-05-16 Thread J.J. Larrea
At 4:29 PM -0400 5/15/07, Yonik Seeley wrote: >On 5/15/07, bhecht <[EMAIL PROTECTED]> wrote: >>[...] the function parseRules in SynonymFilterFactory is private > >If you start using Solr's configuration, you drag more of Solr in. > >You can add the synonyms to the SynonymMap yourself, or if you wan

Re: Using Solr without using a web-app

2007-05-15 Thread bhecht
Great, thanks for the patience and help. Good day. Yonik Seeley wrote: > > On 5/15/07, bhecht <[EMAIL PROTECTED]> wrote: >> OK, that was what I was trying to avoid, but for this cool functionality >> I >> will do so. >> Just cut and paste the factory classes and change the init functions, not

Re: Using Solr without using a web-app

2007-05-15 Thread Yonik Seeley
On 5/15/07, bhecht <[EMAIL PROTECTED]> wrote: OK, that was what I was trying to avoid, but for this cool functionality I will do so. Just cut and paste the factory classes and change the init functions, not to use the args[] parameter. What kind of copyright (if any) do I need to include in thes

Re: Using Solr without using a web-app

2007-05-15 Thread bhecht
OK, that was what I was trying to avoid, but for this cool functionality I will do so. Just cut and paste the factory classes and change the init functions, not to use the args[] parameter. What kind of copyright (if any) do I need to include in these 2 classes which I will cut and paste ? I just

Re: Using Solr without using a web-app

2007-05-15 Thread Yonik Seeley
On 5/15/07, bhecht <[EMAIL PROTECTED]> wrote: When trying to do so, i discover that the function parseRules in SynonymFilterFactory is private, and I need to call this function when I want to populate the SynonymMap like here: parseRules(wlist, synMap, "=>", ",", ignoreCase,expand); any suggest

Re: Using Solr without using a web-app

2007-05-15 Thread bhecht
Hi yonik again, When trying to do so, i discover that the function parseRules in SynonymFilterFactory is private, and I need to call this function when I want to populate the SynonymMap like here: parseRules(wlist, synMap, "=>", ",", ignoreCase,expand); any suggestions? bhecht wrote: > > Tha

Re: Using Solr without using a web-app

2007-05-15 Thread bhecht
Thanks yonik. For some reason I thought it was much more complicated, but looking at the sources again I see its going to be an easy task. Thanks for the help. -- View this message in context: http://www.nabble.com/Using-Solr-without-using-a-web-app-tf3760714.html#a10630065 Sent from the Solr

Re: Using Solr without using a web-app

2007-05-15 Thread Yonik Seeley
On 5/15/07, bhecht <[EMAIL PROTECTED]> wrote: I am using Lucene and hibernate search. I downloaded the Solr sources and found there some classes I want to use: 1) SynonymFilter 2) WordDelimiterFilter I have no use in Solr except for this at the moment. How can I use these classes without the ne