Re: Case insensitive sortable column

2011-10-11 Thread Senthil V S
Yeah.. Thanks.. That should work.. :) Senthil V S Y!: siliconsenthil2003,GTalk:vss123 <http://pleasantrian.blogspot.com/> On Wed, Oct 12, 2011 at 12:15 AM, Sendros, Jason < jason.send...@verizonwireless.com> wrote: > If that's not an option, create another colum

Re: Getting

2010-12-23 Thread Senthil
Hi As long as your code request for 100 results, it definitely return of max of 100 documents only. See your code: TopDocs hits=searcher.search(query, null, *100*); Regards Senthil On Fri, Dec 24, 2010 at 6:10 PM, Jawahar Lal wrote: > Hi, > > I search for an query. Total

Re: Newbie Question

2010-11-07 Thread Senthil
for search result too. regards Senthil On Sun, Nov 7, 2010 at 8:18 PM, farouk alhassan wrote: > Hi All, > > I'm new to Lucene and have picked up the Lucene in Action book to get > started. Really enjoying it but I have a small nagging question. > > Is the index store

Re: Indexing is hung or doesn't complete

2010-10-13 Thread Senthil
similar issues came across and used PDF files with pdfbox lib too Regards Senthil On Wed, Oct 13, 2010 at 4:42 PM, Anshum wrote: > Hi Ching, > Does the app exit or hang and stay there? as in does the JVM stay alive and > idle? > Also, can you make sure that its not the pdfbox

How to get unique values for field1 where search is on field2?

2008-07-28 Thread senthil kumaran
Hi, I've indexed Book Title,Author Name,Contents and some other fields. Previously I gave option to search string in any of those fields and I displayed results from getting fields "Title","Author Name","Contents" from hits resulted docs. Now I want to display "Title" & "Author Name" list w

Does Lucene search over memory too?

2007-05-28 Thread senthil kumaran
Hi, Does Lucene search FSDirectory as well as buffered in-memory docs while we are calling searcher.search(query)? Why I'm asking this is, I've indexed my doc with mergeFactor & Max.Buff.Docs = 50 and I've optimized and closed it at mid-night only.Beforeoptimization, my search gives partial

Re: how to get approximate total matching

2007-03-15 Thread senthil kumaran
and Max.Memory used = 10039408. Wild card query is used for search. I need to control memory usage. Is there any possible ways to use multisearcher with less memory usage? (FYI- I don't use any sort.) Thanks & Regards Senthil On 3/14/07, Erick Erickson <[EMAIL PROTECTED]> wrote:

how to get approximate total matching

2007-03-14 Thread senthil kumaran
ry usage and to reduce search timeI don't want to search my query through all indexes if i got 200 results. MultiSearcher create OOM error, so that I'm using single IndexSearcher. Thanks in Advance Senthil

Indexing & search?

2007-03-06 Thread senthil kumaran
Hi, I've indexed 4 among 5 fields with Field.Store.YES & Field.Index.NO. And indexed the remaining one, say it's Field Name is *content*, with Field.Store.YES & Field.Index.Tokenized(It's value is collective value of other 4 fields and some more values).So my search always based on *content*fie