solr multi indexes and scoring

2010-04-29 Thread khirb7
Hello every body, In our application we are dealing with music. In our index we are storing music tracks (3 million documents). We have popularity field which inside the track document, this field contains the number of times the track have been listened. The issue is that we are forced to r

Re: Improve Solr Performance

2008-06-08 Thread khirb7
thank you for your response It's clear that fetching all documents at one time takes a lot of time so the search is too slow. I decided to fetch less than 20 documents at one time, but to optimise solr I have tried to increase the size of all the caches (the document cache, filterCache, result ca

Improve Solr Performance

2008-06-05 Thread khirb7
hello every body I want to imporve solr performance at time search, so i have read about SolrPerformanceFactor so I tried to increase the size of my caches but the QTime hasn't changed a lot. this is how I am quering I ask to solr to do a search and to return me 200 result the first time so I d

Re: Snipets Solr/nutch

2008-04-15 Thread khirb7
Mike Klaas wrote: > > On 13-Apr-08, at 3:25 AM, khirb7 wrote: >> >> it doesn't work solr still use the default value fragsize=100. also >> I am not >> able to spécifieregex fragmenter due to this probleme of >> version I >> suppose o

Re: how to apply a patch

2008-04-14 Thread khirb7
Grant Ingersoll-6 wrote: > > I generally do: > > svn up (make sure I am up to date) > patch -p 0 -i [--dry-run] > > I usually do the --dry-run first to see if it applies cleanly, then > drop it if it does. > > HTH, > Grant > > On Apr 13, 2008, at

how to apply a patch

2008-04-13 Thread khirb7
hello every body May be it's a stupid question as I am new in Solr, I want to know how to apply a patch, for example this one that I find here: https://issues.apache.org/jira/browse/SOLR-225 SOLR-225+260-HighlightPlugins.patch SOLR-225-HighlightingConfig.patch toAllow pluggable Highligh

Re: Snipets Solr/nutch

2008-04-13 Thread khirb7
hello, mike adviser me last time to use: >This is done by the fragmenting stage of highlighting. Solr (trunk) >ships with a fragmenter that looks for sentence-like snippets using >regular expressions: try hl.fragmenter=regex (see config in >solrconfig.xml). the prolem is I wasn't able eit

Re: Snipets Solr/nutch(maxFragSize?)

2008-04-10 Thread khirb7
khirb7 wrote: > > hello every body > > just one other question, to analyse and modify Solr's snippet, I want to > know if org.apache.solr.util.HighlightingUtils > is the class generating the snippet and which methode generate them, and > could you please explain me

Re: Snipets Solr/nutch

2008-04-10 Thread khirb7
hello every body just one other question, to analyse and modify Solr's snippet, I want to know if org.apache.solr.util.HighlightingUtils is the class generating the snippet and which methode generate them, and could you please explain me how are they generated in that class and where exactly to

Re: Snipets Solr/nutch

2008-04-09 Thread khirb7
thank you for your response. I have another problem with snippets.here is the problem: I transform the HTML code into text then I index all this text generated into one field called myText , many pages has common header with common information (example : web site about the president bush) and t

Re: Snipets Solr/nutch

2008-04-07 Thread khirb7
khirb7 wrote: > > hello every body > > I am using solr in my project, and I want to use solr snipets generated by > the highlighting. > The problem is that these snipets aren't really well displayed, they are > trancated and not really meanigful. > I heard that n

Snipets Solr/nutch

2008-04-07 Thread khirb7
hello every body I am using solr in my project, and I want to use solr snipets generated by the highlighting. The problem is that these snipets aren't really well displayed, they are trancated and not really meanigful. I heard that nutch provide well snipets, is it possible and how to integrate

Re: How to use Solr in java program

2008-04-02 Thread khirb7
hossman wrote: > > > : > I recommend using Solr as a webservice, even if your client is Java. > but > : > there are options for embedding Solr directly into your applications > using > > : thank you hossman for your response,I have another question : I have > writen > : a small java program

Re: How to use Solr in java program

2008-03-30 Thread khirb7
hossman wrote: > > > : I am new user of Solr and I want to know how can I use Solr in my own > java > > http://wiki.apache.org/solr/SolJava > > : program, what are the different possibilities of using solr. Is a web > : servlet container is ncessary to run and use Solr, Is servlet > Contain

How to use Solr in java program

2008-03-23 Thread khirb7
Hi every body I am new user of Solr and I want to know how can I use Solr in my own java program, what are the different possibilities of using solr. Is a web servlet container is ncessary to run and use Solr, Is servlet Container as Tomcat is enough to use all the power offered by solr. I hea