Re: solr score

2008-09-24 Thread Neeti Raj
Hi Santhanaraj

Just search for boost on Solr wiki and see if boost feature suffices your
requirement.

As for highlighting, this explains how to implement solr highlighting
http://wiki.apache.org/solr/HighlightingParameters
- neeti

On Wed, Sep 24, 2008 at 10:31 AM, sanraj25 <[EMAIL PROTECTED]> wrote:

>
> hi,
>  How to weightage more frequently searched word in solr?
>
> what is the functionality in Apache solr module?
> I have a list of more frequently searched word in my site , i need to
> highlight those words.From the net i found out that 'score' is used for
> this
> purpose. Isn't it true?
> Anybody knows about it?
> Please help me.
>
> with Regards,
> Santhanaraj R
>
> --
> View this message in context:
> http://www.nabble.com/solr-score-tp19642046p19642046.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>
>


Re: what is the purpose of multiple solr weapps

2008-09-02 Thread Neeti Raj
Hi Santhanaraj

I have used multiple solr webapps with Tomcat container for my projects.
My idea was to have a single Solr server catering to multiple projects with
completely different databases/indexes.
So as far as Solr goes, only the Solr directory (containing bin, conf and
data) needs to be separated out for each project

   - Single point of maintenance
   - But that would also mean server start/stop will impact all the
   affiliated projects.

Read more about this on -
http://wiki.apache.org/solr/MultipleIndexes

- Neeti
On Tue, Sep 2, 2008 at 1:06 PM, sanraj25 <[EMAIL PROTECTED]> wrote:

>
> Hi
>
>i want to know  what is the purpose of multiple solr weapps? If we
> create like that,can we load large
> amount of data? please help me .In what situation we should go for multiple
> solr webapps
> Thanks in advance
>
> -Santhanaraj R
> --
> View this message in context:
> http://www.nabble.com/what-is-the-purpose-of-multiple-solr-weapps-tp19265499p19265499.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>
>


Re: Regarding Indexing

2008-08-29 Thread Neeti Raj
Hi

You can read here and decide which strategy to adopt for maintaining
multiple indexes -
http://wiki.apache.org/solr/MultipleIndexes

I used the 1st option of 'Multiple Solr webapps' as I used single Solr
instance for indexing my 2 different modules.

- Neeti


On Fri, Aug 29, 2008 at 3:07 PM, sanraj25 <[EMAIL PROTECTED]> wrote:

>
>
> I want to store two independent datas in solr index. so I decided to create
> two index.But that's not possible.so  i go for multicore concept in solr
> .can u give me step by step procedure to create multicore in solr
>
> regards,
> Santhanaraj R
>
>
>
> Norberto Meijome-2 wrote:
> >
> > On Fri, 29 Aug 2008 00:31:13 -0700 (PDT)
> > sanraj25 <[EMAIL PROTECTED]> wrote:
> >
> >> But still i cant maintain two index.
> >> please help me how to create two cores in solr
> >
> > What specific problem do you have ?
> > B
> >
> > _
> > {Beto|Norberto|Numard} Meijome
> >
> > "Always listen to experts.  They'll tell you what can't be done, and why.
> > Then do it."
> >   Robert A. Heinlein
> >
> > I speak for myself, not my employer. Contents may be hot. Slippery when
> > wet.
> > Reading disclaimers makes you go blind. Writing them is worse. You have
> > been
> > Warned.
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Regarding-Indexing-tp19215093p19216746.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>
>


Re: Implementing MoreLikeThis in Ruby

2008-07-09 Thread Neeti Raj
Hi Koji

Thanks for clarifying my understanding about MoreLikeThis.

After your response and reading from Solr Wiki,  I am now successfully using
MoreLikeThis as follows -

   - Using StandardRequestHandler. Removed MoreLikeThisHandler in
   solrconfig.xml.


   -  Modified the query to be -
   http://localhost:8983/solr/select?q=BBT&mlt=true&mlt.fl=*channel_name_t*
   
&mlt.mindf=1&mlt.mintf=1


   - as I am using Acts_as_solr for talking to Solr which generates dynamic
  fields and hence mlt.fl=channel_name_t


Thanks again for guiding
Neeti

On Mon, Jul 7, 2008 at 8:40 PM, Koji Sekiguchi <[EMAIL PROTECTED]> wrote:

> Neeti,
>
> Do you know:
>
> There are two ways to access MoreLikeThis from solr: from the
> MoreLikeThisHandler
> or with the StandardRequestHandler.
> http://wiki.apache.org/solr/MoreLikeThis
>
> You set MoreLikeThisHandler in your solrconfig.xml:
>
> > 
> > 
> > channel_name
> > 1
> > 
> > 
>
> but you were using StandardRequestHandler in your request:
>
> >
> http://localhost:8983/solr/select?q=BBT&mlt=true&mlt.fl=channel_name&mlt.mindf=1&mlt.mintf=1
>
> If you want to use MoreLikeThisHandler you set in your solrconfig.xml,
> specify /mlt
> instead of /select in your request url.
>
> Koji
>
>
>


Implementing MoreLikeThis in Ruby

2008-07-04 Thread Neeti Raj
Hi All

Being new to Solr, I am having difficulty trying to figure out how to
use *MoreLikeThis
*feature from my* ruby project*.

I have made the following changes to enable mlt but have been unsuccessful
so far-

 >*Using Solr nightly build dated 1 July 2008*

*SolrConfig.xml*

   
 
   channel_name
   1
 
   

*schema.xml*
   
   

*Here is my query for mlt -

*
http://localhost:8983/solr/select?q=BBT&mlt=true&mlt.fl=channel_name&mlt.mindf=1&mlt.mintf=1

*- Response xml has no records in moreLikeThis section and 2 records in
results.

Any help on implementing MLT in ruby would be highly appreciated...

Thanks
Neeti
*