Store/Index Email Address in Lucene

2008-07-03 Thread miztaken
nticipated Thank You miztaken -- View this message in context: http://www.nabble.com/Store-Index-Email-Address-in-Lucene-tp18257247p18257247.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. - To unsubscri

Re: Store/Index Email Address in Lucene

2008-07-03 Thread miztaken
Hi there, Thanks for the comment. So basically it will be lame to add new field for each email address, wont it? How about getting unique tokens from string of email addresses using EmailFilter.java class and storing it in as a single field ? Jamie-52 wrote: > > Hi miztaken > &g

Re: Store/Index Email Address in Lucene

2008-07-04 Thread miztaken
ne that holds tokenized string. What else ? Thank You miztaken -- View this message in context: http://www.nabble.com/Store-Index-Email-Address-in-Lucene-tp18257247p18288188.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. --

Re: Store/Index Email Address in Lucene

2008-07-06 Thread miztaken
tle about what it is you try >to achieve with this and nothing about your requirements. >The only general hints I can give you is to read the wiki pages >regarding performance: http://wiki.apache.org/lucene-java/BasicsOfPerformance Thanks for the link. I think you are clear now. T

How to handle frequent updates.

2008-07-08 Thread miztaken
results. Is there some work around for this type of job? Can any one suggest me any other open source API ? Thank You miztaken -- View this message in context: http://www.nabble.com/How-to-handle-frequent-updates.-tp18347238p18347238.html Sent from the Lucene - Java Users mailing list archive at

Re: How to handle frequent updates.

2008-07-13 Thread miztaken
d as sparse so i want an embedded system (DB or API) which allow me to store, update, delete and retrieve cell of matrix as fast as possilble considering disk constraints. Any suggestion? Thanks miztaken karl - T

Issues with Special Characters

2008-09-16 Thread miztaken
is producing error so i have escaped characters here. So it seems like i have two cases to deal with.. Can anyone suggest me one generic way to deal with both the cases? Basically how to index and search string with escape characters will be my generalized question? Please help me mizta

Re: Issues with Special Characters

2008-09-16 Thread miztaken
ava/docs/queryparsersyntax.html > > Best > Erick > > On Tue, Sep 16, 2008 at 9:05 AM, miztaken <[EMAIL PROTECTED]> wrote: > >> >> Hi there, >> I am using WhiteSpaceAnalyser to index documents. I have used this >> because >> i >> need to

Re: Issues with Special Characters

2008-09-16 Thread miztaken
Hi, I tested sample application with Luke as well. I am using .NEt Version of Lucene (2.0.0.4) and i think i am getting error due to that. When i tested my queries with luke then its working fine and getting me output as desired but then i used lucene API available for .NET then its producing er

Inrease the performance of Indexing in Lucene

2007-07-18 Thread miztaken
Hi, Please help me. Its been a month since i am trying lucene. My requirements are huge, i have to index and search in TB of data. I have question regarding three topics: 1. Problem in Indexing As i need to index TB of data, so by googling and visiting different forum i deployed following fash

RE: Inrease the performance of Indexing in Lucene

2007-07-19 Thread miztaken
I am using lucene in .net.. i.e. dotlucene. So i believe i have to do this all by my own. Or am i missing something.. -- View this message in context: http://www.nabble.com/Inrease-the-performance-of-Indexing-in-Lucene-tf4108165.html#a11685997 Sent from the Lucene - Java Users mailing list arch

Re: Inrease the performance of Indexing in Lucene

2007-07-19 Thread miztaken
But will it be possible to rename the Field's name inside Lucene Document. I know its not possible to change the value of the Document's Field but can we change the field's name. Any Ideas... I am totally petrified of googling. -- View this message in context: http://www.nabble.com/Inrease-the-p

Strange Error while deleting Documents from index while indexing.

2007-07-25 Thread miztaken
Hi, I am dumping the database tables into lucene documents. I am doing like this: 1. Get the rowset from database to be stored as Lucene Document. 2. Open IndexReader and check if they are already indexed. If Indexed, delete them and add the new rowset. Continue this till the end 3. Close I

Re: Strange Error while deleting Documents from index while indexing.

2007-07-26 Thread miztaken
Where shall i post this issue. I am naive to Lucene. And about IndexWriter Closing. Now i am trying like this: 1. Open New IndexReader. 2. Delete Documents. 3. Close IndexReader. 4. Open New IndexWriter. 5. Write Documents. 6. Close IndexWriter. 7. Repeat the process for n times the in nth time o

Re: Strange Error while deleting Documents from index while indexing.

2007-07-27 Thread miztaken
>Can you use IndexWriter#deleteDocument instead? No i cant use this method. I dont know docid and i dont wanna search for it. It will only add extra time. I am deleting the document on the basis of unique key field. >Can you please supply an isolated and working test case that >demonstrate yo