Re: Beyond Lucene 2.0 Index Design

2007-01-12 Thread Paul Elschot
Gentlemen, On Friday 12 January 2007 21:00, Chuck Williams wrote: > > Doug Cutting wrote on 01/12/2007 09:49 AM: > > Marvin Humphrey wrote: > >> Can you show us some code or pseudo-code for a BooleanScorer that > >> would use impact-sorted posting lists? > > > > Another way to interpret this prop

Re: Beyond Lucene 2.0 Index Design

2007-01-12 Thread Chuck Williams
Doug Cutting wrote on 01/12/2007 09:49 AM: > Marvin Humphrey wrote: >> Can you show us some code or pseudo-code for a BooleanScorer that >> would use impact-sorted posting lists? > > Another way to interpret this proposal is index-only: the low-level > indexing APIs should be general enough to per

Re: Beyond Lucene 2.0 Index Design

2007-01-12 Thread Doug Cutting
Marvin Humphrey wrote: Can you show us some code or pseudo-code for a BooleanScorer that would use impact-sorted posting lists? Another way to interpret this proposal is index-only: the low-level indexing APIs should be general enough to permit impact-sorted posting lists, and perhaps an impa

RE: Beyond Lucene 2.0 Index Design

2007-01-12 Thread Dalton, Jeffery
Thanks Grant, I will take a look at this. > -Original Message- > From: Grant Ingersoll [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 11, 2007 8:12 AM > To: java-dev@lucene.apache.org > Subject: Re: Beyond Lucene 2.0 Index Design > > Hi Jeff, > > Wond

RE: Beyond Lucene 2.0 Index Design

2007-01-12 Thread Dalton, Jeffery
y 10, 2007 5:41 PM > To: java-dev@lucene.apache.org > Subject: Re: Beyond Lucene 2.0 Index Design > > I have a couple of questions about the original post of the > new index design: > > (1) Question on the posting list > > > f. > ,],...[docN, freq > &g

RE: Beyond Lucene 2.0 Index Design

2007-01-12 Thread Dalton, Jeffery
IL PROTECTED] > Sent: Wednesday, January 10, 2007 5:12 PM > To: java-dev@lucene.apache.org > Subject: Re: Beyond Lucene 2.0 Index Design > > Hi, Jeff, > > I like the idea of impact based scoring. However, could you > elaborate more on why we only need to use single field at

Re: Beyond Lucene 2.0 Index Design

2007-01-11 Thread Marvin Humphrey
On Jan 11, 2007, at 8:37 PM, Ming Lei wrote: But practically, the approximation (as in my original post) should work well enough for large corpus and relevancy-driven retrieval. The saving on disk access for large corpus (implies very long posting list) will be huge by impact-sorted posting

Re: Beyond Lucene 2.0 Index Design

2007-01-11 Thread Ming Lei
Marvin, Several posts back on this thread, I talked about an algorithm of impact-sorted posting list for conjunctive boolean query. Your concerns on impact-sorting in boolean retrieval model is valid. But practically, the approximation (as in my original post) should work well enough for large corp

Re: Beyond Lucene 2.0 Index Design

2007-01-11 Thread Marvin Humphrey
On Jan 11, 2007, at 2:30 PM, jian chen wrote: It seems to me that the impacted-sorted list makes sense if you are trying to do pure vector space based ranking. This is from what I have read from the research papers. They all talk about how to optimize the vector space model using this imp

Re: Beyond Lucene 2.0 Index Design

2007-01-11 Thread jian chen
I also got the same question. It seems it is very hard to efficiently do phrase based query. I think most search engines do phrase based query, or at least appear to be. So, like in google, the query result must contain all the words user searched on. It seems to me that the impacted-sorted list

Re: Beyond Lucene 2.0 Index Design

2007-01-11 Thread Marvin Humphrey
On Jan 9, 2007, at 6:25 AM, Dalton, Jeffery wrote: e. f. ],...[docN, freq ,]) How do you build an efficient PhraseScorer to work with an impact- sorted posting list? The way PhraseScorer currently works is: find a doc that contains all terms, then see if the terms occur consecutively in

Re: Beyond Lucene 2.0 Index Design

2007-01-11 Thread Grant Ingersoll
Hi Jeff, Wondering if you (and/or others) would be interested in taking a look at https://issues.apache.org/jira/browse/LUCENE-662 and vetting the new interfaces, etc. to see if you could come up w/ a prototype implementation. This would help move along 662 as it would sort out some of t

Re: Beyond Lucene 2.0 Index Design

2007-01-10 Thread Ming Lei
The idea of "impact" and "impact-sorted posting list" should practically work with boolean model by approximation in the following way: (1) Index Structure Inverted-Index : * posting-list: + (sorted by impact) occurrence: position (2) Retrieval Algorithm for boolean query "a AND b" set an impa

Re: Beyond Lucene 2.0 Index Design

2007-01-10 Thread Ming Lei
ses). In > > > addition to having fewer posting lists to > examine, > > you often don't need > > > to read to the end of long posting lists when > > processing with a > > > score-at-a-time approach (see Anh/Moffat's > Pruned > > Query Eva

Re: Beyond Lucene 2.0 Index Design

2007-01-10 Thread Ming Lei
gt; > score-at-a-time approach (see Anh/Moffat's Pruned > Query Evaluation Using > > Pre-Computed Impacts, SIGIR 2006) for details on > one potential > > algorithm. > > > > I'm not quite sure what you mean when mention > leaving them out and >

Re: Beyond Lucene 2.0 Index Design

2007-01-10 Thread Ming Lei
offat's Pruned > Query Evaluation Using > > Pre-Computed Impacts, SIGIR 2006) for details on > one potential > > algorithm. > > > > I'm not quite sure what you mean when mention > leaving them out and > > re-calculating them at merge time. > > >

Re: Beyond Lucene 2.0 Index Design

2007-01-10 Thread jian chen
. - Jeff > -Original Message- > From: Marvin Humphrey [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 2:58 PM > To: java-dev@lucene.apache.org > Subject: Re: Beyond Lucene 2.0 Index Design > > > On Jan 9, 2007, at 6:25 AM, Dalton, Jeffery wrote: >

Re: Beyond Lucene 2.0 Index Design

2007-01-10 Thread jian chen
when mention leaving them out and re-calculating them at merge time. - Jeff > -Original Message- > From: Marvin Humphrey [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 2:58 PM > To: java-dev@lucene.apache.org > Subject: Re: Beyond Lucene 2.0 Index Design > > >

RE: Beyond Lucene 2.0 Index Design

2007-01-09 Thread Dalton, Jeffery
ginal Message- > From: Marvin Humphrey [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 2:58 PM > To: java-dev@lucene.apache.org > Subject: Re: Beyond Lucene 2.0 Index Design > > > On Jan 9, 2007, at 6:25 AM, Dalton, Jeffery wrote: > > > e. > >

RE: Beyond Lucene 2.0 Index Design

2007-01-09 Thread Dalton, Jeffery
rers to perform scoring and intersection. The end product would be a very scalable and flexible solution. - Jeff > -Original Message- > From: Doron Cohen [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 5:27 PM > To: java-dev@lucene.apache.org > Subject: Re:

Re: Beyond Lucene 2.0 Index Design

2007-01-09 Thread Doron Cohen
Scoring today goes doc-at-a-time - all scorers and term-posting-readers advance together; once a new doc is processed, scoring of previous docs is known and final. This allows maintaining a finite size queue for collecting best hits. Then, for huge collections, having to exhaustively scan all posti

Re: Beyond Lucene 2.0 Index Design

2007-01-09 Thread Marvin Humphrey
On Jan 9, 2007, at 6:25 AM, Dalton, Jeffery wrote: e. f. ],...[docN, freq ,]) Does the impact have any use after it's used to sort the postings? Can we leave it out of the index format and recalculate at merge-time? Marvin Humphrey Rectangular Research http://www.rectangular.com/ ---

Beyond Lucene 2.0 Index Design

2007-01-09 Thread Dalton, Jeffery
Hi, I wanted to start some discussion about possible future Lucene file / index formats. This is an extension to the discussion on Flexible Lucene Indexing discussed on the wiki: http://wiki.apache.org/jakarta-lucene/FlexibleIndexing Note: Related sources are listed at the end. I would like

[jira] Resolved: (LUCENE-734) Upload Lucene 2.0 artifacts in the Maven 1 repository

2006-12-18 Thread Michael McCandless (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-734?page=all ] Michael McCandless resolved LUCENE-734. --- Resolution: Fixed >From the last comment, it looks like the 2.0 Lucene core JAR is in maven 1. > Upload Lucene 2.0 artifacts in the M

[jira] Commented: (LUCENE-734) Upload Lucene 2.0 artifacts in the Maven 1 repository

2006-12-17 Thread Jukka Zitting (JIRA)
reate an account and login. Yes, thanks. I probably had the page locally cached since I still got the "immutable" message on the page after creating an account and logging in. Now it shows up as editable, I'll update the instructions. > Upload Lucene 2.0 artifacts

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread Doug Cutting
negrinv wrote: there is a third way Doug, and it's for me to stop trying to be polite by answering all the questions that I am being asked, then nobody will get upset by my replies. If the decision is for no encryption at field level, I accept it, but I don't believe it should be externalised. P

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread Michael Busch
negrinv wrote: there is a third way Doug, and it's for me to stop trying to be polite by answering all the questions that I am being asked, then nobody will get upset by my replies. If the decision is for no encryption at field level, I accept it, but I don't believe it should be externalised. P

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread negrinv
> To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Attached-proposed-modifications-to-Lucene-2.0-to-support-Field.Store.Encrypted-tf2727614.html#a7710442 Sent from the

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread negrinv
; > Chuck > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Attached-proposed-mo

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread Chuck Williams
Mike Klaas wrote on 12/05/2006 11:38 AM: > On 12/5/06, negrinv <[EMAIL PROTECTED]> wrote: > >> Chris Hostetter wrote: > >> > If the code was not already in the core, and someone asked about >> adding it >> > I would argue against doing so on the grounds that some helpfull >> utility >> > methods

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread Doug Cutting
Doug Cutting wrote: So, Victor, do you think this functionality could be reasonably packaged as an add-on package to Lucene? Doug, for an answer to most of your questions could you please refer to my answer to Chris Hostetter [ ... ] Let me be more direct. Encryption of Lucene fields may be

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread negrinv
module. > > Doug > Doug, for an answer to most of your questions could you please refer to my answer to Chris Hostetter, Chris makes some valid points: http://www.nabble.com/Re%3A-Attached-proposed-modifications-to-Lucene-2.0-to-support-F

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread robert engels
--- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Attached- proposed-modifi

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread Mike Klaas
On 12/5/06, negrinv <[EMAIL PROTECTED]> wrote: Chris Hostetter wrote: > If the code was not already in the core, and someone asked about adding it > I would argue against doing so on the grounds that some helpfull utility > methods (possibly in a contrib) would be just as usefull, and would h

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread negrinv
as unsuccessful in creating a diff file because I was picking up all kind of formatting differences as well. If you scan it quickly you will find that is really very simple and, at least in its current limited implementation, hardly invasive of Lucene's core. All the encryption routines are in

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-05 Thread Doug Cutting
robert engels wrote: I would counter that it is not a compelling feature for MOST users of Lucene, but it can still be implemented externally using binary fields for those that require it, and or even easier (and maybe even faster) using a encrypted filesystem with proper security. +1 Some u

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-04 Thread Chris Hostetter
(For the record: I have delibierately avoided looking at your patch so far, because i didn't want my opinion on the question of "should Lucene offer encryption services" to be clouded by any specifics of your implimentation. That said...) As it's already been pointed out, an apples to apples com

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-02 Thread robert engels
-- From: Nicolas Lalev�e <[EMAIL PROTECTED]> Sent: Dec 1, 2006 4:49 AM To: java-dev@lucene.apache.org Subject: Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted Le Vendredi 1 D�cembre 2006 11:10, negrinv a �crit�: Nicolas Lalev�e-2 wrote: Le Vendredi 1 D�cem

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-02 Thread negrinv
gt; Victor >> >> >> Robert Engels wrote: >>> >>> Not if running under OSX with encrypted swap turned on ! :) >>> >>> -Original Message- >>>> From: Nicolas Lalev�e <[EMAIL PROTECTED]> >>>> Sent: Dec 1, 2006 4:49 AM

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread robert engels
ct: Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted Le Vendredi 1 D�cembre 2006 11:10, negrinv a �crit�: Nicolas Lalev�e-2 wrote: Le Vendredi 1 D�cembre 2006 01:33, negrinv a �crit : Thank you Robert for your commnets. I am inclined to agree with you, but I

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Chris Hostetter
: dismay I noticed that JIRA assigned licence to the ASF for the provider : software. something which I did not intend and which cannot be valid. Can it : be reversed please?) the flag can't be modified, but attachments can be deleted, which i have done for the jar in question. feel free to rea

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Chris Hostetter
: That is a valid consideration Doron, which brings the discussion back to the : difference between encrypton and security. I believe that security is an end : application responsability, not Lucene's. For instance, is it possible to : write the end application so that those stats are hidden from

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread negrinv
> From negrinv <[EMAIL PROTECTED]> > Sent Fri 12/1/2006 1:22 PM > To java-dev@lucene.apache.org > Subject Re: Attached proposed modifications to Lucene 2.0 to support > Field.Store.Encrypted > > > That is a valid consideration Doron, which brings the discuss

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread negrinv
n't do it > from Eclipse, do it from the command-line: svn diff src, or some such. > > Otis > > - Original Message > From: negrinv <[EMAIL PROTECTED]> > To: java-dev@lucene.apache.org > Sent: Friday, December 1, 2006 5:10:47 AM > Subject: Re: Attach

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread JOAQUIN DELGADO
ple ;-) That's my two cents. -- Joaquin -Original Message- >From negrinv <[EMAIL PROTECTED]> Sent Fri 12/1/2006 1:22 PM To java-dev@lucene.apache.org Subject Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted That is a valid consider

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread negrinv
--- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Attached-proposed-modifications-to-Lucene-2.0-to-support-Field.Store.Encrypted-tf2727614.html#a7646459 Sent fr

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Erik Hatcher
Cryptonomicon, anyone?! On Dec 1, 2006, at 1:02 PM, Doron Cohen wrote: Robert Engels <[EMAIL PROTECTED]> wrote on 01/12/2006 09:34:12: ... decrypting such small payloads .. I think it is also subject to an easy attack, In addition, index statistics are still available, right? So one can

Re: Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Mike Klaas
On 12/1/06, negrinv <[EMAIL PROTECTED]> wrote: I think we should not make too many assumptions about performance until we can test alternative solutions. <> The small payload overhead will be amply offset in my opinion by the ability to be very selective about what is being encrypted, as opp

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Otis Gospodnetic
If you can't do it from Eclipse, do it from the command-line: svn diff src, or some such. Otis - Original Message From: negrinv <[EMAIL PROTECTED]> To: java-dev@lucene.apache.org Sent: Friday, December 1, 2006 5:10:47 AM Subject: Re: Attached proposed modification

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread negrinv
as Lalev�e <[EMAIL PROTECTED]> >>Sent: Dec 1, 2006 4:49 AM >>To: java-dev@lucene.apache.org >>Subject: Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted >> >>Le Vendredi 1 D�cembre 2006 11:10, negrinv a �crit�: >>> Nicolas Lale

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread negrinv
-Original Message- >>From: Nicolas Lalev�e <[EMAIL PROTECTED]> >>Sent: Dec 1, 2006 2:20 AM >>To: java-dev@lucene.apache.org >>Subject: Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted >> >>Le Vendredi 1 D�cembre 2006 01:33,

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Doron Cohen
Robert Engels <[EMAIL PROTECTED]> wrote on 01/12/2006 09:34:12: > ... decrypting such small payloads .. I think it is also subject to an easy attack, In addition, index statistics are still available, right? So one can know how many docs, which (encrypted) words appear in which docs and exactly w

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Robert Engels
Not if running under OSX with encrypted swap turned on ! :) -Original Message- >From: Nicolas Lalev�e <[EMAIL PROTECTED]> >Sent: Dec 1, 2006 4:49 AM >To: java-dev@lucene.apache.org >Subject: Re: Attached proposed modifications to Lucene 2.0 to support >Field.

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Robert Engels
and store the actual payloads elsewhere, so in our case your solution is not optimal for us. -Original Message- >From: Nicolas Lalev�e <[EMAIL PROTECTED]> >Sent: Dec 1, 2006 2:20 AM >To: java-dev@lucene.apache.org >Subject: Re: Attached proposed modifications to Luc

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Nicolas Lalevée
Le Vendredi 1 Décembre 2006 11:10, negrinv a écrit : > Nicolas Lalevée-2 wrote: > > Le Vendredi 1 Décembre 2006 01:33, negrinv a écrit : > >> Thank you Robert for your commnets. I am inclined to agree with you, but > >> I > >> would like to establish first of all if simplicity of implementation is

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread negrinv
ne code or user code. I cannot test the performance issues until there is an alternative solution in place. If you have one and you can make it available I will be happy to give it an impartial test. Victor -- View this message in context: http://www.nabble.com/Attached-proposed-modification

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-12-01 Thread Nicolas Lalevée
rectory. > > > > Far simpler, and if yuou are using encryption to begin with, you are > > probably encrypting most of the data anyway. > > > > -Original Message- > > > >>From: negrinv <[EMAIL PROTECTED]> > >>Sent: Nov 29, 2006 9:4

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-30 Thread negrinv
; > the same reasons adding compression was a bad idea (conclusive comments >> on >> > the tail of this issue >> > http://issues.apache.org/jira/browse/LUCENE-648?page=all). Binary >> fields >> > can be used by users to achieve this end. Maybe a contrib with u

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-30 Thread negrinv
egrinv <[EMAIL PROTECTED]> >>Sent: Nov 29, 2006 9:45 PM >>To: java-dev@lucene.apache.org >>Subject: Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted >> >> >>Thank you Luke for your comments and the references you supplied.

[jira] Commented: (LUCENE-734) Upload Lucene 2.0 artifacts in the Maven 1 repository

2006-11-30 Thread Hoss Man (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-734?page=comments#action_12454777 ] Hoss Man commented on LUCENE-734: - FYI: anyone can edit the wiki if you create an account and login. > Upload Lucene 2.0 artifacts in the Maven 1 reposit

[jira] Commented: (LUCENE-734) Upload Lucene 2.0 artifacts in the Maven 1 repository

2006-11-30 Thread Jukka Zitting (JIRA)
st it works the other way. I'll check that and report back. > Upload Lucene 2.0 artifacts in the Maven 1 repository > - > > Key: LUCENE-734 > URL: http://issues.apache.org/jira/browse/LUCENE-

[jira] Commented: (LUCENE-734) Upload Lucene 2.0 artifacts in the Maven 1 repository

2006-11-30 Thread Hoss Man (JIRA)
re saying that things put i nthe maven2 repos were automagically copied to maven1 ... i guess that's not true afterall. > Upload Lucene 2.0 artifacts in the Maven 1 repository > - > > Key: LUCENE-734 >

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-30 Thread Robert Engels
- >From: negrinv <[EMAIL PROTECTED]> >Sent: Nov 29, 2006 9:45 PM >To: java-dev@lucene.apache.org >Subject: Re: Attached proposed modifications to Lucene 2.0 to support >Field.Store.Encrypted > > >Thank you Luke for your comments and the references you supplied. I read

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-30 Thread Robert Engels
Agreed. -Original Message- >From: Luke Nezda <[EMAIL PROTECTED]> >Sent: Nov 29, 2006 8:30 PM >To: java-dev@lucene.apache.org >Subject: Re: Attached proposed modifications to Lucene 2.0 to support >Field.Store.Encrypted > >I think that adding encryption suppor

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-30 Thread Luke Nezda
9/06, negrinv <[EMAIL PROTECTED] > wrote: >> >> >> Attached are proposed modifications to Lucene 2.0 to support >> Field.Store.Encrypted. >> The rational behind this proposal is simple. Since Lucene can store data >> in >> the index, it effectively makes the

[jira] Created: (LUCENE-734) Upload Lucene 2.0 artifacts in the Maven 1 repository

2006-11-30 Thread Jukka Zitting (JIRA)
Upload Lucene 2.0 artifacts in the Maven 1 repository - Key: LUCENE-734 URL: http://issues.apache.org/jira/browse/LUCENE-734 Project: Lucene - Java Issue Type: Task Components

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-29 Thread negrinv
with utility > methods would be a compromise to preserve this work and make it accessible > to others, or alternatively just a faq entry with the sample code or > references to it. > Luke > > On 11/29/06, negrinv <[EMAIL PROTECTED]> wrote: >> >>

Re: Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-29 Thread Luke Nezda
contrib with utility methods would be a compromise to preserve this work and make it accessible to others, or alternatively just a faq entry with the sample code or references to it. Luke On 11/29/06, negrinv <[EMAIL PROTECTED]> wrote: Attached are proposed modifications to Lucene

Attached proposed modifications to Lucene 2.0 to support Field.Store.Encrypted

2006-11-29 Thread negrinv
Attached are proposed modifications to Lucene 2.0 to support Field.Store.Encrypted. The rational behind this proposal is simple. Since Lucene can store data in the index, it effectively makes the data portable. It is conceivable that some of the data may be sensitive in nature, hence the option

[jira] Commented: (LUCENE-634) QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-11-06 Thread [EMAIL PROTECTED] (JIRA)
not applicable for the arguments (String, String, Analyzer) > error in results.jsp when executing search in the browser (demo from Lucene

[jira] Resolved: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-19 Thread Otis Gospodnetic (JIRA)
that gets released. > CLONE -QueryParser is not applicable for the arguments (String, String, > Analyzer) error in results.jsp when executing search in the browser (demo &

RE: [jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-18 Thread Steven Parkes
I need to reread the FAQ a few times to remember what's in it. But I'll do some light rewording to make it less 1.4/1.5 specific. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-18 Thread Chris Hostetter
: That's the convention we've used in Lucene projects. The idea is that : users should have to go out of their way to build something named : lucene-2.0.0.jar, since they're likely to patch things. Only the : official builds should look like official builds, everything else should : look like a

Re: [jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-18 Thread Doron Cohen
Doug Cutting <[EMAIL PROTECTED]> wrote on 18/10/2006 13:03:28: > Yes, this confuses a lot of folks and probably deserves an FAQ. To some extent, it is already in the FAQ - http://wiki.apache.org/jakarta-lucene/LuceneFAQ#head-42361d89c6ea75536ba2780543c60e1fd9c9b682 -

Re: [jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-18 Thread Doug Cutting
Steven Parkes (JIRA) wrote: Hmmm ... I've been wondering about this. Turns out that both the svn tag lucene_2_0_0 and the 2.0.0 src tar ball have "2.0.1-dev" in common-build.xml. I don't know if this was intentional, so that the someone using the signed binary tar ball would be clearly disting

[jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-18 Thread Steven Parkes (JIRA)
if they find it critical? > CLONE -QueryParser is not applicable for the arguments (String, String, > Analyzer) error in results.jsp when executing searc

[jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-09 Thread Hoss Man (JIRA)
prior to cluttering up Jira with a lot of back and forth discussion) FYI: The subversion trunk has fixes for both of the problems you noted. > CLONE -QueryParser is not applicable for the arguments (String, String, > Analyzer) error in results.jsp when executing search in the browse

[jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-08 Thread Ted Cahall (JIRA)
the arguments (String, String, > Analyzer) error in results.jsp when executing search in the browser (demo > from L

[jira] Commented: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-08 Thread Ted Cahall (JIRA)
in results.jsp when executing search in the browser (demo > from Lucene 2.0) > -- > > Key: LUC

[jira] Created: (LUCENE-679) CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-10-08 Thread Ted Cahall (JIRA)
CLONE -QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0

[jira] Closed: (LUCENE-634) QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-07-25 Thread Daniel Naber (JIRA)
zer) > error in results.jsp when executing search in the browser (demo from Lucene > 2.0) > --- > > Key: LUCENE-634 >

[jira] Created: (LUCENE-634) QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0)

2006-07-25 Thread Aliaksandr Birukou (JIRA)
QueryParser is not applicable for the arguments (String, String, Analyzer) error in results.jsp when executing search in the browser (demo from Lucene 2.0

Re: Lucene 2.0

2006-05-22 Thread Doug Cutting
Chris Hostetter wrote: I believe Doug's suggestion was to hold off just long enough to fix any egregious bugs, or apply any "safe" patches for bugs that have allready been fixed but not yet applied. Yes, that's my intent. I've been hoping that a consensus about which bugs are urgent will appe

RE: Lucene 2.0

2006-05-22 Thread Vanlerberghe, Luc
ing, but is not necessary during cleanup. Thanks, Luc -Original Message- From: Chuck Williams [mailto:[EMAIL PROTECTED] Sent: vrijdag 19 mei 2006 1:23 To: java-dev@lucene.apache.org Subject: Re: Lucene 2.0 I think Lucene-561 is in the "egregious" category and it has a patch to f

Re: Lucene 2.0

2006-05-18 Thread Chuck Williams
I think Lucene-561 is in the "egregious" category and it has a patch to fix it (be sure to get the most recent of the two). Can this be included? Chuck Yonik Seeley wrote on 05/18/2006 10:50 AM: > On 5/18/06, DM Smith <[EMAIL PROTECTED]> wrote: >> > at the monent, there are two Jira issues with

Re: Lucene 2.0

2006-05-18 Thread Chris Hostetter
: I wouldn't seeing 415 being fixed, but I seem to be missing a way one : changes "Fix Version". it's a property that can be changed from the edit screen .. but 415 is weird, there is no "Edit" link in the Operations nav (as opposed to every other LUCENE issue i've ever looked at ) -Hoss

Re: Lucene 2.0

2006-05-18 Thread Yonik Seeley
On 5/18/06, DM Smith <[EMAIL PROTECTED]> wrote: > at the monent, there are two Jira issues with a "Fix" version of 2.0 still > unresolved: LUCENE-556 and LUCENE-546 I wouldn't seeing 415 being fixed, but I seem to be missing a way one changes "Fix Version". -Yonik http://incubator.apache.org/s

Re: Lucene 2.0

2006-05-18 Thread DM Smith
Chris Hostetter wrote: : Could someone enumerate what needs to be done before 2.0 is released. : From following this thread, it was stated that 2.0 was 1.9 with : deprecations removed. : Recently it appears to be becoming much more than that. I believe Doug's suggestion was to hold off just l

Re: Lucene 2.0

2006-05-18 Thread Chris Hostetter
: Could someone enumerate what needs to be done before 2.0 is released. : From following this thread, it was stated that 2.0 was 1.9 with : deprecations removed. : Recently it appears to be becoming much more than that. I believe Doug's suggestion was to hold off just long enough to fix any egre

Re: Lucene 2.0

2006-05-18 Thread karl wettin
On Thu, 2006-05-18 at 09:41 -0400, Erik Hatcher wrote: > On May 18, 2006, at 9:19 AM, DM Smith wrote: > > I'd like to see a 2.0 now and if there are changes then > > subsequent releases, say 2.0.1 for bugs and 2.1 for changes > to API > or file structure (e.g. byte count vs char count) > > +1 fr

Re: Lucene 2.0

2006-05-18 Thread Erik Hatcher
On May 18, 2006, at 9:19 AM, DM Smith wrote: Could someone enumerate what needs to be done before 2.0 is released. From following this thread, it was stated that 2.0 was 1.9 with deprecations removed. Recently it appears to be becoming much more than that. Personally, I'd like to see a 2.0 n

Lucene 2.0

2006-05-18 Thread DM Smith
Could someone enumerate what needs to be done before 2.0 is released. From following this thread, it was stated that 2.0 was 1.9 with deprecations removed. Recently it appears to be becoming much more than that. Personally, I'd like to see a 2.0 now and if there are changes then subsequent rel

Lucene 2.0 similarity scoring formula

2006-05-01 Thread Charlie
Hello, Will 2.0's similarity scoring formula remain the same as the following? \sum_{t in q} tf(t in d) * idf(t) * boost(t.field in d) * lengthNorm(t.field in d) or what exactly it will be? -- Best regards, Charlie - To un

[jira] Closed: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-04-06 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-500?page=all ] Yonik Seeley closed LUCENE-500: --- Fix Version: 2.0 Resolution: Fixed Assign To: Yonik Seeley Closing... I think we pretty much covered this. > Lucene 2.0 requirements - Rem

[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-22 Thread paul.elschot (JIRA)
please ignore this. > Lucene 2.0 requirements - Remove all deprecated code > > > Key: LUCENE-500 > URL: http://issues.apache.org/jira/browse/LUCENE-500 > Project: Lucene - Java > Type: Tas

[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-22 Thread paul.elschot (JIRA)
test code (Field creation and BooleanQuery.add() in TestKipping* and TestRewriting). Is there someone looking into this, or shall I provide a patch? > Lucene 2.0 requirements - Remove all deprecated code > > > Key

[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-21 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-500?page=comments#action_12371340 ] Yonik Seeley commented on LUCENE-500: - Good catch Daniel... I'll try and get to it later tonight. > Lucene 2.0 requirements - Remove all depreca

[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-21 Thread Daniel Naber (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-500?page=comments#action_12371327 ] Daniel Naber commented on LUCENE-500: - It seems QueryParser.java has been patched, but not QueryParser.jj. > Lucene 2.0 requirements - Remove all deprecated c

[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-21 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-500?page=comments#action_12371309 ] Doug Cutting commented on LUCENE-500: - +1 for removing the empty directory. It can always be recreated if it is needed again. > Lucene 2.0 requirements - Remove

[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-21 Thread Yonik Seeley (JIRA)
be left in place when other tests become deprecated? > Lucene 2.0 requirements - Remove all deprecated code > > > Key: LUCENE-500 > URL: http://issues.apache.org/jira/browse/LUCENE-500 > Proj

  1   2   >