Re: Master/Slave High CPU Usage

2010-11-21 Thread Lance Norskog
Yes, the Solr commit operations always reloads the index. And it always throws away the Solr caches: queryresult, document, filter query. If you do this, please post your results. On Sat, Nov 20, 2010 at 11:16 PM, Ofer Fort ofer...@gmail.com wrote: OK, so to make sure i understand, even though

Re: Master/Slave High CPU Usage

2010-11-21 Thread Ofer Fort
ok, i'll try that and update the group thanks On Sun, Nov 21, 2010 at 12:17 PM, Lance Norskog goks...@gmail.com wrote: Yes, the Solr commit operations always reloads the index. And it always throws away the Solr caches: queryresult, document, filter query. If you do this, please post your

Re: Master/Slave High CPU Usage

2010-11-21 Thread Ofer Fort
do i really need a commit? or can i use the *readercycle*http://wiki.apache.org/solr/SolrOperationsToolsscript? since i don't need to comit anything, just reopen the reader. thanks On Sun, Nov 21, 2010 at 12:17 PM, Lance Norskog goks...@gmail.com wrote: Yes, the Solr commit operations always

Re: Spell-Check Component Functionality

2010-11-21 Thread rajini maski
If any one know articles or blog on solr spell-check component configuration type..please let me know..solr-wiki not helping me solve maze.. On Fri, Nov 19, 2010 at 12:40 PM, rajini maski rajinima...@gmail.comwrote: And If I am trying to do :

Re: How to Transmit and Append Indexes

2010-11-21 Thread Renaud Delbru
Have you looked at Apache Nutch [1]. It is a distributed web crawl and search system, based on Lucene/Solr and Hadoop. [1] http://nutch.apache.org/ -- Renaud Delbru On 19/11/10 16:52, Bing Li wrote: Hi, all, I am working on a distributed searching system. Now I have one server only. It has

Amazon like search function

2010-11-21 Thread nicksnels
Hi, I'm looking for ideas on how to implement an Amazon.com like search function. If for example you do a search on - optimization algorithm java. Amazon first returns results that contain all of these keywords, then followed by a list that contains both the words optimization algorithm, then a

Re: Amazon like search function

2010-11-21 Thread Erick Erickson
Take a look at DisMax, particularly the mm parameter (minimum should match). It's kinda confusing, but I it might help... See: http://wiki.apache.org/solr/DisMaxQParserPlugin I believe 3.x as well as trunk also have Extended Dismax or eDismax that provides some additional capabilities. Best

Can a URL based datasource in DIH return non xml

2010-11-21 Thread lee carroll
Hi, Can a URL based datasource in DIH return non xml. My pages being indexed are writen by many authors and will often be invalid xhtml. Can DIH cope with htis or will i need another approach ? thanks in advance Lee C

Re: sort desc and out of memory exception

2010-11-21 Thread xu cheng
thanks for replying but when it's sort with asc, it runs pretty well only if I sort with desc , it has the out o f memory exception 2010/11/17 Peter Karich peat...@yahoo.de You are applying the sort against a (tokenized) text field? You should better sort against a number or a string.

Re: Issue with relevancy

2010-11-21 Thread sivaprasad
Thanks guys, I will try the mentioned options -- View this message in context: http://lucene.472066.n3.nabble.com/Issue-with-relevancy-tp1930292p1943645.html Sent from the Solr - User mailing list archive at Nabble.com.

Phrase Search Multiple Keywords with Double quotes

2010-11-21 Thread Pawan Darira
Hi I want to do pharse searching with single/double quotes. Also there are cases that those phrases include special characters like etc. What all i need to do while indexing such special characters while searching them. How to handle phrase search with quotes Please suggest -- Thanks, Pawan

RE: Phrase Search amp; Multiple Keywords with Double quotes

2010-11-21 Thread sivaprasad
You have to escape the special characters.Use the below method to escape public static String escapeQueryChars(String s) { StringBuilder sb = new StringBuilder(); for (int i = 0; i s.length(); i++) { char c = s.charAt(i); // These characters are part of the query syntax and

Re: Spell-Check Component Functionality

2010-11-21 Thread Shanmugavel SRD
SOLR wiki page is the best place to find that. http://stackoverflow.com/questions/3004823/solr-spellcheck-configuration http://wiki.apache.org/solr/SpellCheckerRequestHandler http://wiki.apache.org/solr/SpellCheckComponent -- View this message in context:

Re: Localsolr with Dismax

2010-11-21 Thread amvijaycse
Hi since u gave the priority to title . so it always executed -- View this message in context: http://lucene.472066.n3.nabble.com/Localsolr-with-Dismax-tp1402956p1943980.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr dynamic core creation

2010-11-21 Thread samarth s
Hi nizan, I have the same requirement of creating cores on the fly. Was looking for some API provided by http solr server. Currently working around by writing my own shell script on the server (solr server :) ). Any better leads on the same? Thanks, Samarth On Thu, Nov 11, 2010 at 9:27 PM,

Re: Problem with synonyms

2010-11-21 Thread sivaprasad
Hi, This is looks like a bug.See the below url. https://issues.apache.org/jira/browse/LUCENE-1622 -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-with-synonyms-tp1905051p1944183.html Sent from the Solr - User mailing list archive at Nabble.com.