Re: Reg : lucene RemoteSearchable Object

2008-07-07 Thread saikrishna venkata pendyala
t; -Yonik > > On Sun, Jul 6, 2008 at 9:59 AM, saikrishna venkata pendyala > <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > I am currently developing a distributed search engine using Lucene. > > > > I am able to search the multiple machines quite succes

Reg : lucene RemoteSearchable Object

2008-07-06 Thread saikrishna venkata pendyala
Hi all, I am currently developing a distributed search engine using Lucene. I am able to search the multiple machines quite successfully. Each machine using MultiSearcher to search the local indexes and I am creating RemoteSearchable object with it. The master machines searches these RemoteSea

Re: Lucene Error : java.io.FileNotFoundException

2008-07-02 Thread saikrishna venkata pendyala
Please check the path set for lucene-index in configuration file. On Thu, Jul 3, 2008 at 10:11 AM, yugana <[EMAIL PROTECTED]> wrote: > > Hi, > > I am indexing content and searching using lucene. It is working fine when I > use the simple servlet and jsp mechanism. I am able to search on the > ind

Re: creating Array of IndexReaders

2008-06-23 Thread saikrishna venkata pendyala
Hi Sebastin , Why dont you index all data into single or some fixed number of indexes and search over them. You can always restrict your search using the range query based on user given inputs. --Sai Krishna. On Mon, Jun 23, 2008 at 7:27 AM, Daniel Noll <[EMAIL PROTECTED]> wrote: > On Saturday

Re: lucene search options

2008-06-23 Thread saikrishna venkata pendyala
Hi Aditi, As Rohit said, the best way to solve this problem is to have two fields for indexing an email-id, one for the username and another for domain name. Having two fields and using a Boolean Query with MUST condition should solve your problem. You can also perform restricted search with the

Re: problem with Whitespace analyzer

2008-02-10 Thread saikrishna venkata pendyala
Hi, Thanks a lot Cohen and Erik. Yes "\)" works, I tried it even before. But I was wondering why the Whitespace analyzer is breaking the string at "(". Now it's clear, thnks once again. --Saikrishna. On Feb 10, 2008 9:17 PM, Erik Hatcher <[EMAIL PROTECTED]> wro

problem with Whitespace analyzer

2008-02-09 Thread saikrishna venkata pendyala
(field, analyzer);}, it is divided into two tokens Ajit_,Agarkar. """ Enter query: Ajit_(Agarkar) Searching for: Ajit_ Agarkar 0 total matching documents """ --Saikrishna.

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
Can I rewrite lucene to match the given query with some title ? On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote: > > > 8 okt 2007 kl. 18.52 skrev saikrishna venkata pendyala: > > > Can I use ucene with some changs, for the purpose of matching and > > with OUT &g

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote: > > > 8 okt 2007 kl. 18.13 skrev saikrishna venkata pendyala: > > > I need the name of the file in which the best matched title exists. > > Don't I > > need scoring here. > > I don't know ho

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
On 10/8/07, Karl Wettin <[EMAIL PROTECTED]> wrote: > > > 8 okt 2007 kl. 17.40 skrev saikrishna venkata pendyala: > > > I have abt 17,00,000 documents in 1000 files. I need to index the > > titles of > > those documents with out storing the titles and s

Re: Lucene indexing error

2007-10-08 Thread saikrishna venkata pendyala
Lucene creates an lock on the index before using it and then unlock the index, after using it. If the lucene is interuptted and is closed by force the, index remains in locked state and it cannot be used. Generally in linux lucene lock information file is create in /tmp directory. Delete the lock

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
Hai, Thank you for responding. I have abt 17,00,000 documents in 1000 files. I need to index the titles of those documents with out storing the titles and storing the file name. When ever I issue a query I need to get the name of the file in which that document exists. thanks, Saikrishna

Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
Hai, Has any one tried to port lucene on to a mobile phone. I need a text-based search engine for mobile phone as part of my project. Or is there any other J2ME based API which can be used to search the text in mobile phones. thanks, Saikrishna.

Re : term frequency calculation in Lucene

2007-04-29 Thread saikrishna venkata pendyala
Hai , Where does the lucene compute term frequency vector ? {filename,function name} Actually the task is to replace the all term frequencies with some constant number(integer), how to do this ? Any kind of help is appreciated . Thanks in advance.

Re : lucene doc id's

2007-01-27 Thread saikrishna venkata pendyala
Hai , I was trying to store to document id's external. I have found that lucene generates document id's linearly starting from 0 and are not changed until any document is deleted. but it did work for me. How could I store document id's externally.

Re : lucene document id's

2007-01-26 Thread saikrishna venkata pendyala
Hai , I was trying to store to document id's external. I have found that lucene generates document id's linearly starting from 0 and are not changed until any document is deleted. but it did work for me. Was the above one correct ? if not who could I store document id's exte

Re: Big size xml file indexing

2007-01-21 Thread saikrishna venkata pendyala
files{more than one} generated instead of one large file. Could you say the sturcture of ur xml file and what ur trying to index. On 1/22/07, aslam bari <[EMAIL PROTECTED]> wrote: Hi Saikrishna, Thanks for reply, But i don't know how i can go with this. Here is my code sample,

Re: Big size xml file indexing

2007-01-21 Thread saikrishna venkata pendyala
Hai , I have indexed 6.2 gb xml file using lucene. What I did was 1 . I have splitted the 6.2gb file into small files each of size 10mb. 2 . And then I worte a python script to quantize number no.ofdocuments in each file. Structure of my xml file is """

Re : Spell Checker Index

2007-01-20 Thread saikrishna venkata pendyala
Hai all, This is what I did. """ IndexReader reader = IndexReader.open("index"); //static final File INDEX_DIR = new File("index"); Directory directory = new RAMDirectory(index); SpellChecker spellchecker = new SpellChecker(directory); // To

Re: Help on Fields

2006-08-22 Thread saikrishna venkata pendyala
uot;T3")) So when I ask for title it should return all the titles. regards, Saikrishna

Re : good link to start working on Lucene

2006-05-31 Thread saikrishna
Hai , I am completly new to lucene.And unfortunatly I couldn't find good site to start working with Lucene. Can some suggest me good link to work on Lucene ( relevent to Indexing and searching ) regards, Saikr