Re: not updating caching

2009-03-04 Thread sandyg
to restart after that). If this is indeed about Solr, please use solr-user list instead of this one. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: sandyg gaddamsande...@gmail.com To: java-user@lucene.apache.org Sent: Tuesday, March

not updating caching

2009-03-03 Thread sandyg
Hi All, I had indexed some records and we found some searches are not found because of some reason. So again made changes and indexed it again, now we got hits for the query from cmd prompt ,but this search is not updated in caching in server. If i close and start the server it is works

Re: how to get all unique documents based on keyword feild

2008-08-05 Thread sandyg
-threads.com/lists/lucene/java-user/63141 DuplicateFilter may be what you're looking for. -- Ian. On Mon, Aug 4, 2008 at 8:48 AM, sandyg [EMAIL PROTECTED] wrote: Hi ALL, First thnx for spending time to read the message. Am using MatchAllDocsQuery to get all the documents . But i

how to get all unique documents based on keyword feild

2008-08-04 Thread sandyg
Hi ALL, First thnx for spending time to read the message. Am using MatchAllDocsQuery to get all the documents . But i need documents that are unique based on keyword . in my document keyword feild had values like 1,2,2,3,4,5,5,5,5 so on. so the result i need is only 1,2,3,4,5 so on ...

background merge hit exception

2008-07-12 Thread sandyg
Hi ALL , This is the exception raised when when am indexing the records (I have 10 million records and after indexing 4 million record i got this exception) java.io.IOException: background merge hit exception: _8n:c7759352 _8o:c57658 _8p:c55810 into _8q [optimize] please give me the

Re: Multi keyword match

2008-06-16 Thread sandyg
Erick On Fri, Jun 13, 2008 at 10:01 AM, sandyg [EMAIL PROTECTED] wrote: Hi guys , I need ur help. I am working with lucene engine its very good. but I had some problem. like my document contains feilds like id , name , desg i need to search id=1 and name=sandy and desg = manager

Re: Multi keyword match

2008-06-16 Thread sandyg
Hi, Guys please ignore this message i found the solution . Just i have to search sandy and professional sorry for misuse the mailing service . sandyg wrote: Hi, Thnx for the help.But its not fullfilled my requirement. for example my record is likeid=121 ,name=sandy and desg

Re: java.lang.OutOfMemoryError: Java heap space when sorting the fields

2008-03-19 Thread sandyg
field sorting. How much RAM are you giving your app? sandyg wrote: this is my search content QueryParser parser = new QueryParser(keyword,new StandardAnalyzer()); Query query = parser.parse(1); Sort sort = new Sort(new SortField(sortField)); Hits hits = searcher.search

Re: java.lang.OutOfMemoryError: Java heap space when sorting the fields

2008-03-19 Thread sandyg
minutes: http://wiki.dbsight.com/index.php?title=Create_Lucene_Database_Search_in_3_minutes DBSight customer, a shopping comparison site, (anonymous per request) got 2.6 Million Euro funding! On Tue, Mar 18, 2008 at 6:23 AM, sandyg [EMAIL PROTECTED] wrote: this is my search content

Re: java.lang.OutOfMemoryError: Java heap space when sorting the fields

2008-03-19 Thread sandyg
for the field cache. Thats if you only sort on one field...it can grow fast if you allow multi field sorting. How much RAM are you giving your app? sandyg wrote: this is my search content QueryParser parser = new QueryParser(keyword,new StandardAnalyzer()); Query query = parser.parse(1

java.lang.OutOfMemoryError: Java heap space when sorting the fields

2008-03-18 Thread sandyg
this is my search content QueryParser parser = new QueryParser(keyword,new StandardAnalyzer()); Query query = parser.parse(1); Sort sort = new Sort(new SortField(sortField)); Hits hits = searcher.search(query,sort); And i had huge data about 13 millions of records i am not

sorting a doc field takes more time

2008-03-13 Thread sandyg
Hi, Thnxs for spending time for the problem. When sorting the results of lucene search it takes more time and not looks not that much usefull can any one help Below is my code.. sort = new Sort(new SortField(field)); hits = searcher.search(query,sort); Once

how to all documents from

2008-02-29 Thread sandyg
How to retreive all the documents from the index directory please some one help me yar -- View this message in context: http://www.nabble.com/how-to-all-documents-from-tp15756174p15756174.html Sent from the Lucene - Java Users mailing list archive at Nabble.com.