hit position

2010-09-06 Thread Lev Bronshtein
Now that I can index my data, I want to be able to search it and report some sort of position information with every hit, such as a line number or a byte ofset within the stream.  Any idea how I can acoomplish this? -

RE: How to use Lucene for getting tags for tagcloud?

2010-09-06 Thread Uwe Schindler
If you want the tag clound for the *whole* index (not only the results of a specific query), its easy: Iterate over Term(s)Enum for the specific field, you are interested in, and get the docFreq of each term. - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u.

Re: How to use Lucene for getting tags for tagcloud?

2010-09-06 Thread Ian Lea
Sounds like you want facets. Google "lucene facets" or browse back through the archives of this list - there was some discussion quite recently. Or use Solr which will do pretty much all of it for you. -- Ian. On Mon, Sep 6, 2010 at 5:28 PM, wrote: > Hello > > I'm a Lucene newbie and I have

How to use Lucene for getting tags for tagcloud?

2010-09-06 Thread appy74
Hello I'm a Lucene newbie and I have it working where I can create an index from a column of a database table storing tags, and search this index for a particular tag and display the results and their scores. I'm looking at this as an alternative to a MySQL fulltext index which I've heard mixed

London open-source search social - 13th Sept

2010-09-06 Thread Richard Marr
Hi all, Apologies for the short notice but we've booked a London Search Social for the 13th Sept. Come along if you fancy geeking out about search and related technology over a beer. Details on the meetup page. http://www.meetup.com/london-search-social/ Rich

Re: Too many open files

2010-09-06 Thread Grijesh.singh
Ask your sys admin to increase the os max open file limit ulimit - Grijesh -- View this message in context: http://lucene.472066.n3.nabble.com/Too-many-open-files-tp1412227p1425425.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. -

Re: Line filtering

2010-09-06 Thread Ian Lea
You'd be better off reading and selecting the syslog lines outside of lucene. Then pass the lines you are interested in to lucene using whatever analyzer you want. -- Ian. On Sun, Sep 5, 2010 at 10:09 PM, Lev Bronshtein wrote: > > Hello group, > > I am new to Lucene and ran into a bit of trou