Lucene Eclipse Integration

2006-04-25 Thread Aodh
Hi, I want to create a back-of-book type index for Eclipse help (not available by default). This index will list all indexed terms such that the indexed term may be clicked and the original document displayed (as in MS style help systems). Where should I begin? The first thing I suppose would

svn.apache.org (80) is down!

2006-04-25 Thread Lukas Vlcek
Hi, I noticed that svn.apache.org went down. Lukas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: svn.apache.org (80) is down!

2006-04-25 Thread Dennis Kubes
Same here. Lukas Vlcek wrote: Hi, I noticed that svn.apache.org went down. Lukas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: svn.apache.org (80) is down!

2006-04-25 Thread Doug Cutting
You can check the status of Apache servers here: http://monitoring.apache.org/status/ If errors are shown there, then Apache's infrastructure folks already know about the problem. So please only report problems if they don't show on that page. It looks like minotaur is back up now. Doug

Re: svn.apache.org (80) is down!

2006-04-25 Thread Lukas Vlcek
Thanks Doug, I didn't know about monitoring server. Lukas On 4/25/06, Doug Cutting [EMAIL PROTECTED] wrote: You can check the status of Apache servers here: http://monitoring.apache.org/status/ If errors are shown there, then Apache's infrastructure folks already know about the problem. So

boosting fields

2006-04-25 Thread karl wettin
I don't like how fields are configured. Document doc = new Document(); Field f; f = new Field(foo, bar tzar, Field.Store.NO, Field.Index.TOKENIZED, Field.TermVector.YES); f.setBoost(1.5f); doc.add(f); f = new Field(foo, blah yada, Field.Store.NO,

Re: boosting fields

2006-04-25 Thread karl wettin
25 apr 2006 kl. 18.56 skrev karl wettin: How about refactoring fields to something like: [Document](fieldName)# {0..1} -[Field +boost]# {0..*} - [FieldValue +store +index +termVector] instead of as now: [Document](fieldName)# {0..1} -[Field +boost +store +index +termVector]

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread dan (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376306 ] dan commented on LUCENE-555: How about some engineering satire to spell it out for you nerds? [Doesn't apply to you Chuck] public void businessRealityCheck() { boolean

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread robert engels (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376308 ] robert engels commented on LUCENE-555: -- Dan, please let us know what company you work for so we can avoid that place like the plague. You are obviously having a bad

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376309 ] Doug Cutting commented on LUCENE-555: - Calling folks names probably won't help your agenda. Running away probably won't help your agenda either. What might help it it

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread Otis Gospodnetic (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376310 ] Otis Gospodnetic commented on LUCENE-555: - Hillarious. Very constructive, Dan. Hint: somebody already implemented transaction support for Lucene a while back.

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376313 ] Yonik Seeley commented on LUCENE-555: - Dan, I am interested in the source if index corruption. If you can share a test that reproduces this, it would be helpful. Index

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread Andi Vajda (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376319 ] Andi Vajda commented on LUCENE-555: --- There is an implementation of the Lucene index store that is backed up by Berkeley DB. Take a look at the 'db' contrib area:

Driver about ACID requirements for Lucene (Re: [jira] Commented: (LUCENE-555))

2006-04-25 Thread Tatu Saloranta
--- dan (JIRA) [EMAIL PROTECTED] wrote: while ( myopicEngineerStillDoesntGetIt) { case(1) { A small business running MySQL has a travelling case(2) { Same scenario. How does team Lucene respond? If you Dan, do us all a favor and please figure out the difference between a

[jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread Chuck Williams (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-555?page=comments#action_12376331 ] Chuck Williams commented on LUCENE-555: --- Dan, I don't know if you are still watching this, but in addition to Doug's point about how Lucene changes, there is a second

Re: [jira] Commented: (LUCENE-555) Index Corruption

2006-04-25 Thread Karel Tejnora
Ok than indexer indexes to separate directory (sequence of dir, e.g. 1/ 2/ 3/ 4/) with create=true. [transaction log] than merges newly created index to 'for-search' index. backup is copy of 'for-search' index than rollforward is IndexWriter addIndexes(...) newer than backup image. rollbackward

SRND query

2006-04-25 Thread Boris Galitsky
Hello We need to construct nested span queries, and it seems like SrndQuery is a good way to do it. Are there examples available for SrndQueries? How to construct them (is it using QueryParser?). Where to get Surround Parser? How to run them? Best regards Boris

Re: boosting fields

2006-04-25 Thread Doug Cutting
karl wettin wrote: This could lead me to believe I can use different boost for fields with the same name within one document. You can. The values are multiplied to produce the final boost value for the field. This is described in:

Re: boosting fields

2006-04-25 Thread karl wettin
25 apr 2006 kl. 19.34 skrev Doug Cutting: karl wettin wrote: This could lead me to believe I can use different boost for fields with the same name within one document. You can. The values are multiplied to produce the final boost value for the field. This is described in: