Scope-based crawling and indexing

2007-05-07 Thread Vikas
lCrpId=0 is one scope lCorpid=1 is another and for all urls with lCrpId=0 we want one index and for those with lCrpId=1 we want another Regards, Vikas Kumar -- View this message in context: http://www.nabble.com/Scope-based-crawling-and-indexing-tf3703543.html#a10356834 Sent from the Lucene - J

UnExpected result for: indexReader.termDocs()

2007-07-09 Thread Vikas
nt.KEY, value); TermDocs termDocs = indexReader.termDocs(term); while(termDocs !=null) { System.out.println("Document num:"+termDocs.doc()); termDocs.next(); } This is going in infinite loop and printing "Document num:0" always. Can some one will give me information on this? With best regards From Vikas R. Khengare

Problem with sorted results.

2008-12-25 Thread vikas bucha
Hi, Merry Christmas and a Happy New Year to you all. I have an index with few fields. Title, Description, Author etc. For a search query "business development", the equivalent lucene query I build is: *(TITLE: business^9.00 OR AUTHOR: business^3.00 OR DESCRIPTION:business^1.00) AND (TITLE: devel

How to unsubscribe from this list?

2012-06-25 Thread Deshpande, Vikas
- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org

RE: How to unsubscribe from this list?

2012-06-25 Thread Deshpande, Vikas
Thanks. I tried this but it did not work so asking :). -Vikas -Original Message- From: G.Long [mailto:jde...@gmail.com] Sent: Monday, June 25, 2012 10:15 AM To: java-user@lucene.apache.org Subject: Re: How to unsubscribe from this list? Le 25/06/2012 15:59, Deshpande, Vikas a écrit

How to track database changes at run time to update index in Lucene ?

2006-01-10 Thread Vikas Khengare
.. Some events from that I will come to know that database is changed Can I use AJAX for that ? I hope I will get solution from experts like you. Thanks. From vikas r. Khengare [ [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]> ]

How to track database changes at run time to update index in Lucene ?

2006-01-10 Thread Vikas Khengare
. Thanks. From vikas r. Khengare [ [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]> ]

Why we use Lucene for Database search like Oracle / Sybase ?

2006-01-17 Thread Vikas Khengare
Hi Friends, I have very basic question that 1] Why we use Lucene for Database search like Oracle / Sybase ? 2] For that first we have to convert all records one bye one in string then build lucene document and then index it ? Thanks From, [ [EMAIL PROTECTED] ]

Why do we use BitSet class ?

2006-01-30 Thread Vikas Khengare
Hi Friends I am very New to Lucene World !!! As this world is interesting to me So I want to go in deep level of it to realize the beauty of it. So can you help me to realize that beauty ? I have question 1] Why do use BitSet Class ? 2] Is it required in Filtering / Sorting o

Sending query to multiple servers and combine all Hits from them ?

2006-02-01 Thread Vikas Khengare
Hi Friends...       I am doing search application which has following scenario.   Architecture ==> 1] Common GUI 2] When user enter one query then It should go to 4 searcher server (All servers are on remote machines) 3] After searching all 4 server should return results i.e. Hits

How do I send search query to Multiple search Indexes ?

2006-02-02 Thread Vikas Khengare
Hi Friends How do I send one search query to multiple search Indexes which are on remote machines ? Which Technology will help me (AJAX / simple Servlet) ? Thanks... in advance I hope I will get result from experts like you Best Regards [ [EMAIL PROTECTED] ]

How do I send search query to Multiple search Indexes ?

2006-02-02 Thread Vikas Khengare
> Hi Friends > > How do I send one search query to multiple search Indexes which > are on remote machines ? > > Which Technology will help me (AJAX / simple Servlet) ? > > Thanks... in advance > > I hope I will get result from experts like you > > Best Regards >

Can I do "Google Suggest" Like Search? - - - from - - -vikas

2006-05-24 Thread Vikas Khengare
uage)?               ==   with best regards from ..... vikas r. khengare Veritas Software India Private Ltd. Symantec Corporation Pune, India     [ Enjoy your life today because yesterday had gone and tommorow may never come . ]  

RE: Can I do "Google Suggest" Like Search? - - - from - - -vikas

2006-05-24 Thread Vikas Khengare
ual I want only "America" & "Asia".   Thanks   -Original Message- From: Zhenjian YU [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 1:33 PM To: java-user@lucene.apache.org Cc: lucene-user@jakarta.apache.org; java-dev@lucene.apache.org Subject: Re: Can I

Re: Can I do "Google Suggest" Like Search? - - - from - - -vikas

2006-05-24 Thread Vikas Khengare
s in index who has “a” or “as” as prefix.   Thanks       Hi Vikas,   Seems that you can use the WildCardQuery to do this, just put "a*" as the query term. But take caution to use WildCardQuery, because it can bring the performance of your system down.   Yes, you can also

RE: Can I do "Google Suggest" Like Search? - - - from - - -vikas

2006-05-24 Thread Vikas Khengare
a*" it will return me all values which are starting from "a" So I will get results as I want.   Is this one right?   Or What is other way to do so?       -Original Message- From: mark harwood [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 3:37 PM To: j

How to give AND condition in MultiFieldSearchQueryParser?

2006-06-16 Thread Vikas Khengare
Hi I want to search in multiple fields with "AND" condition that is, If I have fields for employee Field ("empNum","EC02261"); Field ("empPurchaseDept","john"); Field ("empAccountDept","john"); Field ("age","Aegentina"); Now I want to search in "PurchaseDept" & "AccountDe

Field class in Lucene 1.4.3 & Lucene 2.0.0

2006-06-16 Thread Vikas Khengare
Hi Friends I was using Lucene 1.4.3 But Now I am using Lucene 2.0.0. The First Problem arise is that in Lucene I was using doc.add (Field.Keyword(FIELD_URL, item.uri)); doc.add (Field.Text(FIELD_OBJNAME, item.ObjName)); doc.add (Field.UnStored(FIELD_ALLDOCS, item.allConcat));

Get exact matching "Field" name from matching Documents

2006-06-20 Thread Vikas Khengare
cument? Or Should I need to handle it in Java coding only? Or Is there any Lucene way to get that field name? Thanks & best regards Vikas r. khengare