Re: Reg : lucene RemoteSearchable Object

2008-07-07 Thread saikrishna venkata pendyala
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 successfully. Each machine using MultiSearcher to search the local indexes and I am creating

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 indexed

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: 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 21

Re: problem with Whitespace analyzer

2008-02-10 Thread saikrishna venkata pendyala
, which can get in the way, for operators and grouping, etc. Parenthesis are part of that special syntax, and need to be backslash escaped for QueryParser to skip treating them as grouping operators, for example: Ajit_\(Agarkar\) Erik On Feb 10, 2008, at 2:03 AM, saikrishna venkata

problem with Whitespace analyzer

2008-02-09 Thread saikrishna venkata pendyala
Hi, I am facing a small problem, some one please help me, I am using Whitespace analyzer, while both indexing and searching the files. While indexing the analyzer is recognizing tokenAjit_(Agarkar)/token(I found it using LUKE) as a single token. But while searching{QueryParser parser = new

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: 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. 15.36 skrev saikrishna venkata pendyala: 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. There was some discussion about this here

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
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 storing the file name. Not sure I understand what you

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 how you would decide what the best matched document is without scoring

Re: Re : porting lucene on to mobile phone

2007-10-08 Thread saikrishna venkata pendyala
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 SCORING the query given. Sorry, but I don't understand your question? In order

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

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 document

Re: Big size xml file indexing

2007-01-21 Thread saikrishna venkata pendyala
: saikrishna venkata pendyala [EMAIL PROTECTED] To: java-user@lucene.apache.org Sent: Monday, 22 January, 2007 10:07:27 AM Subject: Re: Big size xml file indexing 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

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 index

Re: Help on Fields

2006-08-22 Thread saikrishna venkata pendyala
Hai, Can I store multiple values for same Field, with same field name for a given document. I mean is this operation permitted doc.add(Field.text(title,T1)) doc.add(Field.text(title,T2)) doc.add(Field.text(title,T3)) So when I ask for title it should return all the