Re: Editing solr update handler sub class

2012-06-25 Thread Shameema Umer
gt; On Thu, Jun 21, 2012 at 1:36 AM, irshad siddiqui > wrote: >>  Hi, >> >> Jar file are  located in dist folder . check ur dist folder or you can >> check your solrconfig.xml  file where you will get jar location path. >> >> >> On Thu, Jun 21, 20

Re: solr plugin

2012-06-25 Thread Shameema Umer
er checking out all of the Solr source and > doing an "ant dist" and pathing my IDE correctly. that way, the jar > I produce doesn't have anything in it except my code and relies > on Solr to resolve all the solr/lucene specific stuff... > > Best > Erick > >

Re: Editing solr update handler sub class

2012-06-20 Thread Shameema Umer
Can anybody tell me where are the lucene jar files org.apache.lucene.index and org.apache.lucene.search located? Thanks Shameema On Wed, Jun 20, 2012 at 4:44 PM, Shameema Umer wrote: > Hi, > > I decompiled DirectUpdateHandler2.class to .java file and edited it to > suit my require

Re: Dedupe and overwriteDupes setting

2012-06-15 Thread Shameema Umer
Hi, My solrconfig dedupe setting is as follows. true false dupesign title,url org.apache.solr.update.processor.Lookup3Signature Even though overwriteDupes is set to false, search qiery results show the contents are overwrtten. Is this becaus

Re: sort by publishedDate and get published Date in solr query results

2012-06-06 Thread Shameema Umer
utch is simply not sending that date field value at all. > 2. Solr is rejecting the date field value because it is not in required > -mm-ddThh:mm:ssZ format. > > If #2, you need to go the update processor route I mentioned previously. > > > -- Jack Krupansky > > -

Re: sort by publishedDate and get published Date in solr query results

2012-06-06 Thread Shameema Umer
new tools that should make that easier. > > See: > https://issues.apache.org/**jira/browse/SOLR-2802<https://issues.apache.org/jira/browse/SOLR-2802> > > -- Jack Krupansky > > -Original Message- From: Shameema Umer > Sent: Wednesday, June 06, 2012 4:12 AM > To: so

Re: Schema / Config Error?

2012-06-06 Thread Shameema Umer
Make sure your port is 8983 or 8080. On Wed, Jun 6, 2012 at 4:27 PM, Erick Erickson wrote: > That implies one of two things: > 1> you changed solr.xml. I'd go back to the original and re-edit > anything you've changed > 2> you somehow got a corrupted download. Try blowing your installation > away

Re: How to find the age of a page

2012-06-06 Thread Shameema Umer
Hi Syed Abdul, I am sorry to ask this basic question as I am new to nutch solr(even new to java application). Can you tell me how to add tstamp to published date after re-indexing. Does an update query is enough? Also, i am not able to get the field *publishedDate* in my query results to check whe

Re: How to find the age of a page

2012-06-06 Thread Shameema Umer
in.abdul > Sent: Friday, June 01, 2012 6:55 AM > To: solr-user@lucene.apache.org > Subject: Re: How to find the age of a page > > > Shameema Umer, > > you can add another one new field in schema .. while updating or indexing > add the time stamp to that current field .. &g

Re: Hightlighting and excerpt

2012-06-01 Thread Shameema Umer
Hi Togla to get excerpt you should add the fragment size parameter. hl.fragsize=300 eg: &hl=true&hl.fl=content&hl.fragsize=300 Thanks Shameema On Thu, May 31, 2012 at 7:31 PM, Ahmet Arslan wrote: > > I need something like http://cl.ly/2o2E0g0S422d2p1X203h . See how TCMB > > was stressed? > > Hi

Re: How can I remove the home page priority of site home page from search results

2012-06-01 Thread Shameema Umer
I added braces to key words and debuged: i really need to boost term frequency. Please help. 1.2125369 = (MATCH) fieldWeight(title:gold in 102), product of: 1.0 = tf(termFreq(title:gold)=1) 4.8501477 = idf(docFreq=11,maxDocs=564) 0.25 = fieldNorm(field=title, doc=102) 0.5304849 = (MATCH) field

Re: How can i search site name

2012-05-22 Thread Shameema Umer
earch solution architect > Cominvent AS - www.facebook.com/Cominvent > Solr Training - www.solrtraining.com > > On 22. mai 2012, at 12:23, Shameema Umer wrote: > > > Thanks Li Li and Jan. > > > > Yes, if url is www.company.com/foo/bar/index.html, I should be able to >

Re: How can i search site name

2012-05-21 Thread Shameema Umer
Sorry, Please let me know how can I search site name using the solr query syntax. My results should show title, url and content. Title and content are being searched even though the content. I need url or site name too. please, help. Thanks in advance. On Tue, May 22, 2012 at 11:05 AM, ketan kor

Re: Show a portion of searchable text in Solr

2012-05-15 Thread Shameema Umer
Can somebody tell me where should I place the highlighting parameters, when I did on the query, it is not working. &hl=true&hl.requireFieldMatch=true&hl.fl=* FYI: I am new to solr. My aim is to have emphasis tags on the queried words and need to display only the query relevant snippet of the Th