Re: not updating caching

2009-03-04 Thread sandyg
gt; you'll need 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 >

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 finely.I

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

2008-08-05 Thread sandyg
.gossamer-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 s

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 ... uniq

BooleanQuery$TooManyClauses: maxClauseCount is set to 1024

2008-07-23 Thread sandyg
Hi ALL, Please can u help how to overcome the exception org.apache.lucene.search.BooleanQuery$TooManyClauses: maxClauseCount is set to 1024 i got this when am using prefix query like 123* -- View this message in context: http://www.nabble.com/BooleanQuery%24TooManyClauses%3A-maxClauseCount-

Re: background merge hit exception

2008-07-21 Thread sandyg
0 GB of free disk space > before attempting optimize. > > Finally, you can switch temporarily to SerialMergeScheduler and then > run your optimize, eg: > >writer.setMergeScheduler(new SerialMergeScheduler()); >writer.optimize(); > > Mike > > sandy

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 solutio

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 like

Re: Multi keyword match

2008-06-16 Thread sandyg
//lucene.apache.org/java/docs/queryparsersyntax.html > > ?? > > Best > 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. >> b

Multi keyword match

2008-06-13 Thread sandyg
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 " where i need documents which satisfies three conditions please help me if you h

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

2008-03-19 Thread sandyg
400 mb 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("k

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

2008-03-18 Thread sandyg
demo: http://search.dbsight.com > Lucene Database Search in 3 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, Ma

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

2008-03-18 Thread sandyg
> 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

Re: sorting a doc field takes more time

2008-03-14 Thread sandyg
sort = new Sort(new SortField(field)); Hits hits = searcher.search(query,sort); Grant Ingersoll-6 wrote: > > What's in "field"? What are your docs? More info is needed to help... > > -Grant > On Mar 13, 2008, at 6:50 AM, sandyg wrote: > &

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

RE: how to all documents from

2008-02-29 Thread sandyg
s you search for any other query - > searcher.search(matchAllDocsQuery) - it returns hit > > Thanks, > Shailendra > > -Original Message- > From: sandyg [mailto:[EMAIL PROTECTED] > Sent: Friday, February 29, 2008 4:24 PM > To: java-user@lucene.apache.o

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. --