Collecting all stemming token

2017-02-03 Thread Xiaolong Zheng
Hello,

I am trying collect stemming changes in my search index during the indexing
time. So I could collect a list of stemmed word -> [variety original word]
(e.g: plot -> [plots, plotting, plotted]) for a later use.

I am using k-stem filter + KeywordRepeatFilter
+ RemoveDuplicatesTokenFilter to produce the tokens. I am wondering what's
the best way to collecting such information?

I am think by comparing the term buffer, is this the right way to do it?



import org.apache.lucene.analysis.TokenFilter;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;

import java.io.IOException;
import java.util.*;

public class FilterChangeWrapper extends TokenFilter {
private final TokenFilter fWrappedFilter;
private final CharTermAttribute termAttribute =
addAttribute(CharTermAttribute.class);
private final Map> fMappings = new HashMap<>();

public FilterChangeWrapper(TokenStream in, TokenFilter wrappedFilter) {
super(in);
fWrappedFilter = wrappedFilter;
}

@Override
public boolean incrementToken() throws IOException {
char[] startingTerm = termAttribute.buffer();
boolean result = fWrappedFilter.incrementToken();
char[] endingTerm = termAttribute.buffer();
if (!Arrays.equals(startingTerm, endingTerm)) {
addMapping(startingTerm, endingTerm);
}
return result;
}

private void addMapping(char[] startingTerm, char[] endingTerm) {
String startingString = new String(startingTerm);
String endingString = new String(endingTerm);
if (!fMappings.containsKey(startingString)) {
fMappings.put(startingString, new HashSet());
}

fMappings.get(startingString).add(endingString);
}

public Map> getMappings() {
return Collections.unmodifiableMap(fMappings);
}
}




Thanks,
Xiaolong


Re: Collecting all stemming token

2017-02-03 Thread Xiaolong Zheng
Oh sorry, please ignore my previous code snippet, my intent was:

By checking the position increment?

import org.apache.lucene.analysis.TokenFilter;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.tokenattributes.*;

import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;

public class MwKStemCollectFilter extends TokenFilter {
private final CharTermAttribute termAttribute =
addAttribute(CharTermAttribute.class);
private final PositionIncrementAttribute posAttribute =
addAttribute(PositionIncrementAttribute.class);
private static final Map> stemWordMapping =
new LinkedHashMap<>();
private static String sPreviousTermString = "";

MwKStemCollectFilter(TokenStream in) {
super(in);
}

/** Returns the next, stemmed, input Token.
 *  @return The stemmed form of a token.
 *  @throws IOException If there is a low-level I/O error.
 */
@Override
public final boolean incrementToken() throws IOException {
if (!input.incrementToken())
return false;

int positionIncrement = posAttribute.getPositionIncrement();

if (positionIncrement == 0) {
String currentStemmedString = termAttribute.toString();
if (sPreviousTermString != null && !sPreviousTermString.isEmpty()) {
Set originalStringSet =
stemWordMapping.get(currentStemmedString);
if (originalStringSet != null) {
originalStringSet.add(sPreviousTermString);
} else {
originalStringSet = new LinkedHashSet<>();
originalStringSet.add(sPreviousTermString);
}
stemWordMapping.put(currentStemmedString, originalStringSet);
}
System.out.println("stem->unstemm set: " +
stemWordMapping.toString());
}
sPreviousTermString = termAttribute.toString();

return true;
}
}


Sincerely,

--Xiaolong


On Fri, Feb 3, 2017 at 1:16 PM, Xiaolong Zheng 
wrote:

> Hello,
>
> I am trying collect stemming changes in my search index during the
> indexing time. So I could collect a list of stemmed word -> [variety
> original word] (e.g: plot -> [plots, plotting, plotted]) for a later use.
>
> I am using k-stem filter + KeywordRepeatFilter
> + RemoveDuplicatesTokenFilter to produce the tokens. I am wondering what's
> the best way to collecting such information?
>
> I am think by comparing the term buffer, is this the right way to do it?
>
>
>
> import org.apache.lucene.analysis.TokenFilter;
> import org.apache.lucene.analysis.TokenStream;
> import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
>
> import java.io.IOException;
> import java.util.*;
>
> public class FilterChangeWrapper extends TokenFilter {
> private final TokenFilter fWrappedFilter;
> private final CharTermAttribute termAttribute = 
> addAttribute(CharTermAttribute.class);
> private final Map> fMappings = new HashMap<>();
>
> public FilterChangeWrapper(TokenStream in, TokenFilter wrappedFilter) {
> super(in);
> fWrappedFilter = wrappedFilter;
> }
>
> @Override
> public boolean incrementToken() throws IOException {
> char[] startingTerm = termAttribute.buffer();
> boolean result = fWrappedFilter.incrementToken();
> char[] endingTerm = termAttribute.buffer();
> if (!Arrays.equals(startingTerm, endingTerm)) {
> addMapping(startingTerm, endingTerm);
> }
> return result;
> }
>
> private void addMapping(char[] startingTerm, char[] endingTerm) {
> String startingString = new String(startingTerm);
> String endingString = new String(endingTerm);
> if (!fMappings.containsKey(startingString)) {
> fMappings.put(startingString, new HashSet());
> }
>
> fMappings.get(startingString).add(endingString);
> }
>
> public Map> getMappings() {
> return Collections.unmodifiableMap(fMappings);
> }
> }
>
>
>
>
> Thanks,
> Xiaolong
>
>


Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Hello subscribers to dev@l.a.o and java-user@l.a.o:

We need to replace a moderator who no longer wishes to do the job on these two 
mailing lists.

If anyone is interested in being a MODERATOR, please reply back to this thread. 
 Being a moderator is really easy, the main chunk of the responsibility is just 
hitting "reply-to all" if you get a message with the subject MODERATE and the 
body of the message isn't spam.

More details can be found on the wiki: 
https://wiki.apache.org/solr/MailingListModeratorInfo

--
Steve
www.lucidworks.com


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread aurelian rosca
Seems to be an easy job. I am in.

On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:

> Hello subscribers to dev@l.a.o and java-user@l.a.o:
>
> We need to replace a moderator who no longer wishes to do the job on these
> two mailing lists.
>
> If anyone is interested in being a MODERATOR, please reply back to this
> thread.  Being a moderator is really easy, the main chunk of the
> responsibility is just hitting "reply-to all" if you get a message with the
> subject MODERATE and the body of the message isn't spam.
>
> More details can be found on the wiki: https://wiki.apache.org/solr/
> MailingListModeratorInfo
>
> --
> Steve
> www.lucidworks.com
>
>
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
>
>


Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Thanks Aurelian!

To be clear: are you volunteering to moderate both the dev@ and java-user@ 
mailing lists? Or only the java-user@ mailing list?

The only requirement is that you are a subscriber to each list you volunteer to 
moderate.

--
Steve
www.lucidworks.com

> On Feb 3, 2017, at 2:17 PM, aurelian rosca  wrote:
> 
> Seems to be an easy job. I am in.
> 
> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
> 
>> Hello subscribers to dev@l.a.o and java-user@l.a.o:
>> 
>> We need to replace a moderator who no longer wishes to do the job on these
>> two mailing lists.
>> 
>> If anyone is interested in being a MODERATOR, please reply back to this
>> thread.  Being a moderator is really easy, the main chunk of the
>> responsibility is just hitting "reply-to all" if you get a message with the
>> subject MODERATE and the body of the message isn't spam.
>> 
>> More details can be found on the wiki: https://wiki.apache.org/solr/
>> MailingListModeratorInfo
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread aurelian rosca
Both.
Pe 03.02.2017 21:59, "Steve Rowe"  a scris:

> Thanks Aurelian!
>
> To be clear: are you volunteering to moderate both the dev@ and java-user@
> mailing lists? Or only the java-user@ mailing list?
>
> The only requirement is that you are a subscriber to each list you
> volunteer to moderate.
>
> --
> Steve
> www.lucidworks.com
>
> > On Feb 3, 2017, at 2:17 PM, aurelian rosca 
> wrote:
> >
> > Seems to be an easy job. I am in.
> >
> > On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
> >
> >> Hello subscribers to dev@l.a.o and java-user@l.a.o:
> >>
> >> We need to replace a moderator who no longer wishes to do the job on
> these
> >> two mailing lists.
> >>
> >> If anyone is interested in being a MODERATOR, please reply back to this
> >> thread.  Being a moderator is really easy, the main chunk of the
> >> responsibility is just hitting "reply-to all" if you get a message with
> the
> >> subject MODERATE and the body of the message isn't spam.
> >>
> >> More details can be found on the wiki: https://wiki.apache.org/solr/
> >> MailingListModeratorInfo
> >>
> >> --
> >> Steve
> >> www.lucidworks.com
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> >> For additional commands, e-mail: java-user-h...@lucene.apache.org
> >>
> >>
>
>
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
>
>


Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Great!  We only needed one new volunteer on each of the two lists, so we should 
be all set now.

I’ll go make an INFRA JIRA requesting the moderator changes.

--
Steve
www.lucidworks.com

> On Feb 3, 2017, at 3:02 PM, aurelian rosca  wrote:
> 
> Both.
> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
> 
>> Thanks Aurelian!
>> 
>> To be clear: are you volunteering to moderate both the dev@ and java-user@
>> mailing lists? Or only the java-user@ mailing list?
>> 
>> The only requirement is that you are a subscriber to each list you
>> volunteer to moderate.
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
>> wrote:
>>> 
>>> Seems to be an easy job. I am in.
>>> 
>>> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
>>> 
 Hello subscribers to dev@l.a.o and java-user@l.a.o:
 
 We need to replace a moderator who no longer wishes to do the job on
>> these
 two mailing lists.
 
 If anyone is interested in being a MODERATOR, please reply back to this
 thread.  Being a moderator is really easy, the main chunk of the
 responsibility is just hitting "reply-to all" if you get a message with
>> the
 subject MODERATE and the body of the message isn't spam.
 
 More details can be found on the wiki: https://wiki.apache.org/solr/
 MailingListModeratorInfo
 
 --
 Steve
 www.lucidworks.com
 
 
 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread aurelian rosca
I think i can handle both. I will take a look again next morning about
requirements and i will let you know if I will have questions. Should i be
online each day or just 5days/week.
Pe 03.02.2017 22:07, "Steve Rowe"  a scris:

> Great!  We only needed one new volunteer on each of the two lists, so we
> should be all set now.
>
> I’ll go make an INFRA JIRA requesting the moderator changes.
>
> --
> Steve
> www.lucidworks.com
>
> > On Feb 3, 2017, at 3:02 PM, aurelian rosca 
> wrote:
> >
> > Both.
> > Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
> >
> >> Thanks Aurelian!
> >>
> >> To be clear: are you volunteering to moderate both the dev@ and
> java-user@
> >> mailing lists? Or only the java-user@ mailing list?
> >>
> >> The only requirement is that you are a subscriber to each list you
> >> volunteer to moderate.
> >>
> >> --
> >> Steve
> >> www.lucidworks.com
> >>
> >>> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
> >> wrote:
> >>>
> >>> Seems to be an easy job. I am in.
> >>>
> >>> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
> >>>
>  Hello subscribers to dev@l.a.o and java-user@l.a.o:
> 
>  We need to replace a moderator who no longer wishes to do the job on
> >> these
>  two mailing lists.
> 
>  If anyone is interested in being a MODERATOR, please reply back to
> this
>  thread.  Being a moderator is really easy, the main chunk of the
>  responsibility is just hitting "reply-to all" if you get a message
> with
> >> the
>  subject MODERATE and the body of the message isn't spam.
> 
>  More details can be found on the wiki: https://wiki.apache.org/solr/
>  MailingListModeratorInfo
> 
>  --
>  Steve
>  www.lucidworks.com
> 
> 
>  -
>  To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>  For additional commands, e-mail: java-user-h...@lucene.apache.org
> 
> 
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> >> For additional commands, e-mail: java-user-h...@lucene.apache.org
> >>
> >>
>
>
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
>
>


Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Hi Aurelian, 

Your response to the dev@ list required moderation, likely because you’re not 
subscribed to the dev@ list with the email address you used to respond.  Please 
first go subscribe to the dev@ list with the email you used to send the message 
below - see  - 
then let me know when you’ve done that.

You don’t need to be online every day - just make a habit of dealing with the 
MODERATE emails you get on a regular basis.  The system is set up so that 
multiple people have the same responsibility, the idea being that one of us 
will deal with the non-spam in a timely fashion, even though none of us is 
online all the time.

Thanks!

--
Steve
www.lucidworks.com

> On Feb 3, 2017, at 3:17 PM, aurelian rosca  wrote:
> 
> I think i can handle both. I will take a look again next morning about
> requirements and i will let you know if I will have questions. Should i be
> online each day or just 5days/week.
> Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
> 
>> Great!  We only needed one new volunteer on each of the two lists, so we
>> should be all set now.
>> 
>> I’ll go make an INFRA JIRA requesting the moderator changes.
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 3:02 PM, aurelian rosca 
>> wrote:
>>> 
>>> Both.
>>> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
>>> 
 Thanks Aurelian!
 
 To be clear: are you volunteering to moderate both the dev@ and
>> java-user@
 mailing lists? Or only the java-user@ mailing list?
 
 The only requirement is that you are a subscriber to each list you
 volunteer to moderate.
 
 --
 Steve
 www.lucidworks.com
 
> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
 wrote:
> 
> Seems to be an easy job. I am in.
> 
> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
> 
>> Hello subscribers to dev@l.a.o and java-user@l.a.o:
>> 
>> We need to replace a moderator who no longer wishes to do the job on
 these
>> two mailing lists.
>> 
>> If anyone is interested in being a MODERATOR, please reply back to
>> this
>> thread.  Being a moderator is really easy, the main chunk of the
>> responsibility is just hitting "reply-to all" if you get a message
>> with
 the
>> subject MODERATE and the body of the message isn't spam.
>> 
>> More details can be found on the wiki: https://wiki.apache.org/solr/
>> MailingListModeratorInfo
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 
 
 
 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
FYI I’m holding off on creating the INFRA JIRA until Aurelian has acknowledged 
subscribing to dev@lucene.

In the meantime, if anybody else is interested in moderating either the 
java-user@lucene or dev@lucene mailing list, please raise your hand.  Thanks!

--
Steve
www.lucidworks.com

> On Feb 3, 2017, at 3:26 PM, Steve Rowe  wrote:
> 
> Hi Aurelian, 
> 
> Your response to the dev@ list required moderation, likely because you’re not 
> subscribed to the dev@ list with the email address you used to respond.  
> Please first go subscribe to the dev@ list with the email you used to send 
> the message below - see 
>  - then let me 
> know when you’ve done that.
> 
> You don’t need to be online every day - just make a habit of dealing with the 
> MODERATE emails you get on a regular basis.  The system is set up so that 
> multiple people have the same responsibility, the idea being that one of us 
> will deal with the non-spam in a timely fashion, even though none of us is 
> online all the time.
> 
> Thanks!
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 3:17 PM, aurelian rosca  wrote:
>> 
>> I think i can handle both. I will take a look again next morning about
>> requirements and i will let you know if I will have questions. Should i be
>> online each day or just 5days/week.
>> Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
>> 
>>> Great!  We only needed one new volunteer on each of the two lists, so we
>>> should be all set now.
>>> 
>>> I’ll go make an INFRA JIRA requesting the moderator changes.
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
 On Feb 3, 2017, at 3:02 PM, aurelian rosca 
>>> wrote:
 
 Both.
 Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
 
> Thanks Aurelian!
> 
> To be clear: are you volunteering to moderate both the dev@ and
>>> java-user@
> mailing lists? Or only the java-user@ mailing list?
> 
> The only requirement is that you are a subscriber to each list you
> volunteer to moderate.
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
> wrote:
>> 
>> Seems to be an easy job. I am in.
>> 
>> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
>> 
>>> Hello subscribers to dev@l.a.o and java-user@l.a.o:
>>> 
>>> We need to replace a moderator who no longer wishes to do the job on
> these
>>> two mailing lists.
>>> 
>>> If anyone is interested in being a MODERATOR, please reply back to
>>> this
>>> thread.  Being a moderator is really easy, the main chunk of the
>>> responsibility is just hitting "reply-to all" if you get a message
>>> with
> the
>>> subject MODERATE and the body of the message isn't spam.
>>> 
>>> More details can be found on the wiki: https://wiki.apache.org/solr/
>>> MailingListModeratorInfo
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>>> 
>>> 
> 
> 
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
> 
> 
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>>> 
>>> 
> 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread scott cote
Let me ask if I can get some cycles to do this.

I’m interested but I have to check first.

SCott

scott.c...@lucidworks.com


> On Feb 3, 2017, at 3:14 PM, Steve Rowe  wrote:
> 
> FYI I’m holding off on creating the INFRA JIRA until Aurelian has 
> acknowledged subscribing to dev@lucene.
> 
> In the meantime, if anybody else is interested in moderating either the 
> java-user@lucene or dev@lucene mailing list, please raise your hand.  Thanks!
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 3:26 PM, Steve Rowe  wrote:
>> 
>> Hi Aurelian, 
>> 
>> Your response to the dev@ list required moderation, likely because you’re 
>> not subscribed to the dev@ list with the email address you used to respond.  
>> Please first go subscribe to the dev@ list with the email you used to send 
>> the message below - see 
>>  - then let 
>> me know when you’ve done that.
>> 
>> You don’t need to be online every day - just make a habit of dealing with 
>> the MODERATE emails you get on a regular basis.  The system is set up so 
>> that multiple people have the same responsibility, the idea being that one 
>> of us will deal with the non-spam in a timely fashion, even though none of 
>> us is online all the time.
>> 
>> Thanks!
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 3:17 PM, aurelian rosca  wrote:
>>> 
>>> I think i can handle both. I will take a look again next morning about
>>> requirements and i will let you know if I will have questions. Should i be
>>> online each day or just 5days/week.
>>> Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
>>> 
 Great!  We only needed one new volunteer on each of the two lists, so we
 should be all set now.
 
 I’ll go make an INFRA JIRA requesting the moderator changes.
 
 --
 Steve
 www.lucidworks.com
 
> On Feb 3, 2017, at 3:02 PM, aurelian rosca 
 wrote:
> 
> Both.
> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
> 
>> Thanks Aurelian!
>> 
>> To be clear: are you volunteering to moderate both the dev@ and
 java-user@
>> mailing lists? Or only the java-user@ mailing list?
>> 
>> The only requirement is that you are a subscriber to each list you
>> volunteer to moderate.
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
>> wrote:
>>> 
>>> Seems to be an easy job. I am in.
>>> 
>>> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
>>> 
 Hello subscribers to dev@l.a.o and java-user@l.a.o:
 
 We need to replace a moderator who no longer wishes to do the job on
>> these
 two mailing lists.
 
 If anyone is interested in being a MODERATOR, please reply back to
 this
 thread.  Being a moderator is really easy, the main chunk of the
 responsibility is just hitting "reply-to all" if you get a message
 with
>> the
 subject MODERATE and the body of the message isn't spam.
 
 More details can be found on the wiki: https://wiki.apache.org/solr/
 MailingListModeratorInfo
 
 --
 Steve
 www.lucidworks.com
 
 
 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 
 
 
 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
> 
> 
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
> 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Hi Scott,

FYI the average number of MODERATE emails per day per mailing list is roughly 
*1* (I’ve received about 50 in the last 2 months over the 3 mailing lists I've 
been moderating up to this point), so the effort involved is fairly small.

--
Steve
www.lucidworks.com

> On Feb 3, 2017, at 4:34 PM, scott cote  wrote:
> 
> Let me ask if I can get some cycles to do this.
> 
> I’m interested but I have to check first.
> 
> SCott
> 
> scott.c...@lucidworks.com
> 
> 
>> On Feb 3, 2017, at 3:14 PM, Steve Rowe  wrote:
>> 
>> FYI I’m holding off on creating the INFRA JIRA until Aurelian has 
>> acknowledged subscribing to dev@lucene.
>> 
>> In the meantime, if anybody else is interested in moderating either the 
>> java-user@lucene or dev@lucene mailing list, please raise your hand.  Thanks!
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 3:26 PM, Steve Rowe  wrote:
>>> 
>>> Hi Aurelian, 
>>> 
>>> Your response to the dev@ list required moderation, likely because you’re 
>>> not subscribed to the dev@ list with the email address you used to respond. 
>>>  Please first go subscribe to the dev@ list with the email you used to send 
>>> the message below - see 
>>>  - then let 
>>> me know when you’ve done that.
>>> 
>>> You don’t need to be online every day - just make a habit of dealing with 
>>> the MODERATE emails you get on a regular basis.  The system is set up so 
>>> that multiple people have the same responsibility, the idea being that one 
>>> of us will deal with the non-spam in a timely fashion, even though none of 
>>> us is online all the time.
>>> 
>>> Thanks!
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
 On Feb 3, 2017, at 3:17 PM, aurelian rosca  wrote:
 
 I think i can handle both. I will take a look again next morning about
 requirements and i will let you know if I will have questions. Should i be
 online each day or just 5days/week.
 Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
 
> Great!  We only needed one new volunteer on each of the two lists, so we
> should be all set now.
> 
> I’ll go make an INFRA JIRA requesting the moderator changes.
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 3:02 PM, aurelian rosca 
> wrote:
>> 
>> Both.
>> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
>> 
>>> Thanks Aurelian!
>>> 
>>> To be clear: are you volunteering to moderate both the dev@ and
> java-user@
>>> mailing lists? Or only the java-user@ mailing list?
>>> 
>>> The only requirement is that you are a subscriber to each list you
>>> volunteer to moderate.
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
 On Feb 3, 2017, at 2:17 PM, aurelian rosca 
>>> wrote:
 
 Seems to be an easy job. I am in.
 
 On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
 
> Hello subscribers to dev@l.a.o and java-user@l.a.o:
> 
> We need to replace a moderator who no longer wishes to do the job on
>>> these
> two mailing lists.
> 
> If anyone is interested in being a MODERATOR, please reply back to
> this
> thread.  Being a moderator is really easy, the main chunk of the
> responsibility is just hitting "reply-to all" if you get a message
> with
>>> the
> subject MODERATE and the body of the message isn't spam.
> 
> More details can be found on the wiki: https://wiki.apache.org/solr/
> MailingListModeratorInfo
> 
> --
> Steve
> www.lucidworks.com
> 
> 
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
> 
> 
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>>> 
>>> 
> 
> 
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
> 
> 
>>> 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
> 
> 
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
> 


--

Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Hmm, can’t do math today: the average per list is more like 1 message every 3 
days on a per list basis, assuming matches for subject:MODERATE on the 
gmail.com web UI is accurate.  It's bursty though: some days several come 
through, other days none.  Mostly (90% ?) it’s spam.

--
Steve
www.lucidworks.com

> On Feb 3, 2017, at 4:52 PM, Steve Rowe  wrote:
> 
> Hi Scott,
> 
> FYI the average number of MODERATE emails per day per mailing list is roughly 
> *1* (I’ve received about 50 in the last 2 months over the 3 mailing lists 
> I've been moderating up to this point), so the effort involved is fairly 
> small.
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 4:34 PM, scott cote  wrote:
>> 
>> Let me ask if I can get some cycles to do this.
>> 
>> I’m interested but I have to check first.
>> 
>> SCott
>> 
>> scott.c...@lucidworks.com
>> 
>> 
>>> On Feb 3, 2017, at 3:14 PM, Steve Rowe  wrote:
>>> 
>>> FYI I’m holding off on creating the INFRA JIRA until Aurelian has 
>>> acknowledged subscribing to dev@lucene.
>>> 
>>> In the meantime, if anybody else is interested in moderating either the 
>>> java-user@lucene or dev@lucene mailing list, please raise your hand.  
>>> Thanks!
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
 On Feb 3, 2017, at 3:26 PM, Steve Rowe  wrote:
 
 Hi Aurelian, 
 
 Your response to the dev@ list required moderation, likely because you’re 
 not subscribed to the dev@ list with the email address you used to 
 respond.  Please first go subscribe to the dev@ list with the email you 
 used to send the message below - see 
  - then let 
 me know when you’ve done that.
 
 You don’t need to be online every day - just make a habit of dealing with 
 the MODERATE emails you get on a regular basis.  The system is set up so 
 that multiple people have the same responsibility, the idea being that one 
 of us will deal with the non-spam in a timely fashion, even though none of 
 us is online all the time.
 
 Thanks!
 
 --
 Steve
 www.lucidworks.com
 
> On Feb 3, 2017, at 3:17 PM, aurelian rosca  wrote:
> 
> I think i can handle both. I will take a look again next morning about
> requirements and i will let you know if I will have questions. Should i be
> online each day or just 5days/week.
> Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
> 
>> Great!  We only needed one new volunteer on each of the two lists, so we
>> should be all set now.
>> 
>> I’ll go make an INFRA JIRA requesting the moderator changes.
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 3:02 PM, aurelian rosca 
>> wrote:
>>> 
>>> Both.
>>> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
>>> 
 Thanks Aurelian!
 
 To be clear: are you volunteering to moderate both the dev@ and
>> java-user@
 mailing lists? Or only the java-user@ mailing list?
 
 The only requirement is that you are a subscriber to each list you
 volunteer to moderate.
 
 --
 Steve
 www.lucidworks.com
 
> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
 wrote:
> 
> Seems to be an easy job. I am in.
> 
> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
> 
>> Hello subscribers to dev@l.a.o and java-user@l.a.o:
>> 
>> We need to replace a moderator who no longer wishes to do the job on
 these
>> two mailing lists.
>> 
>> If anyone is interested in being a MODERATOR, please reply back to
>> this
>> thread.  Being a moderator is really easy, the main chunk of the
>> responsibility is just hitting "reply-to all" if you get a message
>> with
 the
>> subject MODERATE and the body of the message isn't spam.
>> 
>> More details can be found on the wiki: https://wiki.apache.org/solr/
>> MailingListModeratorInfo
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 
 
 
 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache

Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread scott cote
Thanks Steve.

SCott

> On Feb 3, 2017, at 3:57 PM, Steve Rowe  wrote:
> 
> Hmm, can’t do math today: the average per list is more like 1 message every 3 
> days on a per list basis, assuming matches for subject:MODERATE on the 
> gmail.com web UI is accurate.  It's bursty though: some days several come 
> through, other days none.  Mostly (90% ?) it’s spam.
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 4:52 PM, Steve Rowe  wrote:
>> 
>> Hi Scott,
>> 
>> FYI the average number of MODERATE emails per day per mailing list is 
>> roughly *1* (I’ve received about 50 in the last 2 months over the 3 mailing 
>> lists I've been moderating up to this point), so the effort involved is 
>> fairly small.
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 4:34 PM, scott cote  wrote:
>>> 
>>> Let me ask if I can get some cycles to do this.
>>> 
>>> I’m interested but I have to check first.
>>> 
>>> SCott
>>> 
>>> scott.c...@lucidworks.com
>>> 
>>> 
 On Feb 3, 2017, at 3:14 PM, Steve Rowe  wrote:
 
 FYI I’m holding off on creating the INFRA JIRA until Aurelian has 
 acknowledged subscribing to dev@lucene.
 
 In the meantime, if anybody else is interested in moderating either the 
 java-user@lucene or dev@lucene mailing list, please raise your hand.  
 Thanks!
 
 --
 Steve
 www.lucidworks.com
 
> On Feb 3, 2017, at 3:26 PM, Steve Rowe  wrote:
> 
> Hi Aurelian, 
> 
> Your response to the dev@ list required moderation, likely because you’re 
> not subscribed to the dev@ list with the email address you used to 
> respond.  Please first go subscribe to the dev@ list with the email you 
> used to send the message below - see 
>  - then 
> let me know when you’ve done that.
> 
> You don’t need to be online every day - just make a habit of dealing with 
> the MODERATE emails you get on a regular basis.  The system is set up so 
> that multiple people have the same responsibility, the idea being that 
> one of us will deal with the non-spam in a timely fashion, even though 
> none of us is online all the time.
> 
> Thanks!
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 3:17 PM, aurelian rosca  
>> wrote:
>> 
>> I think i can handle both. I will take a look again next morning about
>> requirements and i will let you know if I will have questions. Should i 
>> be
>> online each day or just 5days/week.
>> Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
>> 
>>> Great!  We only needed one new volunteer on each of the two lists, so we
>>> should be all set now.
>>> 
>>> I’ll go make an INFRA JIRA requesting the moderator changes.
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
 On Feb 3, 2017, at 3:02 PM, aurelian rosca 
>>> wrote:
 
 Both.
 Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
 
> Thanks Aurelian!
> 
> To be clear: are you volunteering to moderate both the dev@ and
>>> java-user@
> mailing lists? Or only the java-user@ mailing list?
> 
> The only requirement is that you are a subscriber to each list you
> volunteer to moderate.
> 
> --
> Steve
> www.lucidworks.com
> 
>> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
> wrote:
>> 
>> Seems to be an easy job. I am in.
>> 
>> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
>> 
>>> Hello subscribers to dev@l.a.o and java-user@l.a.o:
>>> 
>>> We need to replace a moderator who no longer wishes to do the job on
> these
>>> two mailing lists.
>>> 
>>> If anyone is interested in being a MODERATOR, please reply back to
>>> this
>>> thread.  Being a moderator is really easy, the main chunk of the
>>> responsibility is just hitting "reply-to all" if you get a message
>>> with
> the
>>> subject MODERATE and the body of the message isn't spam.
>>> 
>>> More details can be found on the wiki: https://wiki.apache.org/solr/
>>> MailingListModeratorInfo
>>> 
>>> --
>>> Steve
>>> www.lucidworks.com
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>>> 
>>> 
> 
> 
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
> 

Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread aurelian rosca
i am subscribed to the @dev list now.

On Fri, Feb 3, 2017 at 10:26 PM, Steve Rowe  wrote:

> Hi Aurelian,
>
> Your response to the dev@ list required moderation, likely because you’re
> not subscribed to the dev@ list with the email address you used to
> respond.  Please first go subscribe to the dev@ list with the email you
> used to send the message below - see  core/discussion.html#developer-lists> - then let me know when you’ve done
> that.
>
> You don’t need to be online every day - just make a habit of dealing with
> the MODERATE emails you get on a regular basis.  The system is set up so
> that multiple people have the same responsibility, the idea being that one
> of us will deal with the non-spam in a timely fashion, even though none of
> us is online all the time.
>
> Thanks!
>
> --
> Steve
> www.lucidworks.com
>
> > On Feb 3, 2017, at 3:17 PM, aurelian rosca 
> wrote:
> >
> > I think i can handle both. I will take a look again next morning about
> > requirements and i will let you know if I will have questions. Should i
> be
> > online each day or just 5days/week.
> > Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
> >
> >> Great!  We only needed one new volunteer on each of the two lists, so we
> >> should be all set now.
> >>
> >> I’ll go make an INFRA JIRA requesting the moderator changes.
> >>
> >> --
> >> Steve
> >> www.lucidworks.com
> >>
> >>> On Feb 3, 2017, at 3:02 PM, aurelian rosca 
> >> wrote:
> >>>
> >>> Both.
> >>> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
> >>>
>  Thanks Aurelian!
> 
>  To be clear: are you volunteering to moderate both the dev@ and
> >> java-user@
>  mailing lists? Or only the java-user@ mailing list?
> 
>  The only requirement is that you are a subscriber to each list you
>  volunteer to moderate.
> 
>  --
>  Steve
>  www.lucidworks.com
> 
> > On Feb 3, 2017, at 2:17 PM, aurelian rosca 
>  wrote:
> >
> > Seems to be an easy job. I am in.
> >
> > On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
> >
> >> Hello subscribers to dev@l.a.o and java-user@l.a.o:
> >>
> >> We need to replace a moderator who no longer wishes to do the job on
>  these
> >> two mailing lists.
> >>
> >> If anyone is interested in being a MODERATOR, please reply back to
> >> this
> >> thread.  Being a moderator is really easy, the main chunk of the
> >> responsibility is just hitting "reply-to all" if you get a message
> >> with
>  the
> >> subject MODERATE and the body of the message isn't spam.
> >>
> >> More details can be found on the wiki:
> https://wiki.apache.org/solr/
> >> MailingListModeratorInfo
> >>
> >> --
> >> Steve
> >> www.lucidworks.com
> >>
> >>
> >> 
> -
> >> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> >> For additional commands, e-mail: java-user-h...@lucene.apache.org
> >>
> >>
> 
> 
>  -
>  To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>  For additional commands, e-mail: java-user-h...@lucene.apache.org
> 
> 
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> >> For additional commands, e-mail: java-user-h...@lucene.apache.org
> >>
> >>
>
>
> -
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
>
>


Re: Call for MODERATORs on the dev and java-user mailing lists

2017-02-03 Thread Steve Rowe
Thanks Aurelian.

I’ve created a JIRA to request the moderator changes: 


Scott (or anybody else interested): if/when you’d like to volunteer to moderate 
one of these mailing lists, please post to that effect on the above JIRA.

--
Steve
www.lucidworks.com

> On Feb 4, 2017, at 12:46 AM, aurelian rosca  wrote:
> 
> i am subscribed to the @dev list now.
> 
> On Fri, Feb 3, 2017 at 10:26 PM, Steve Rowe  wrote:
> 
>> Hi Aurelian,
>> 
>> Your response to the dev@ list required moderation, likely because you’re
>> not subscribed to the dev@ list with the email address you used to
>> respond.  Please first go subscribe to the dev@ list with the email you
>> used to send the message below - see > core/discussion.html#developer-lists> - then let me know when you’ve done
>> that.
>> 
>> You don’t need to be online every day - just make a habit of dealing with
>> the MODERATE emails you get on a regular basis.  The system is set up so
>> that multiple people have the same responsibility, the idea being that one
>> of us will deal with the non-spam in a timely fashion, even though none of
>> us is online all the time.
>> 
>> Thanks!
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 3:17 PM, aurelian rosca 
>> wrote:
>>> 
>>> I think i can handle both. I will take a look again next morning about
>>> requirements and i will let you know if I will have questions. Should i
>> be
>>> online each day or just 5days/week.
>>> Pe 03.02.2017 22:07, "Steve Rowe"  a scris:
>>> 
 Great!  We only needed one new volunteer on each of the two lists, so we
 should be all set now.
 
 I’ll go make an INFRA JIRA requesting the moderator changes.
 
 --
 Steve
 www.lucidworks.com
 
> On Feb 3, 2017, at 3:02 PM, aurelian rosca 
 wrote:
> 
> Both.
> Pe 03.02.2017 21:59, "Steve Rowe"  a scris:
> 
>> Thanks Aurelian!
>> 
>> To be clear: are you volunteering to moderate both the dev@ and
 java-user@
>> mailing lists? Or only the java-user@ mailing list?
>> 
>> The only requirement is that you are a subscriber to each list you
>> volunteer to moderate.
>> 
>> --
>> Steve
>> www.lucidworks.com
>> 
>>> On Feb 3, 2017, at 2:17 PM, aurelian rosca 
>> wrote:
>>> 
>>> Seems to be an easy job. I am in.
>>> 
>>> On Feb 3, 2017 9:13 PM, "Steve Rowe"  wrote:
>>> 
 Hello subscribers to dev@l.a.o and java-user@l.a.o:
 
 We need to replace a moderator who no longer wishes to do the job on
>> these
 two mailing lists.
 
 If anyone is interested in being a MODERATOR, please reply back to
 this
 thread.  Being a moderator is really easy, the main chunk of the
 responsibility is just hitting "reply-to all" if you get a message
 with
>> the
 subject MODERATE and the body of the message isn't spam.
 
 More details can be found on the wiki:
>> https://wiki.apache.org/solr/
 MailingListModeratorInfo
 
 --
 Steve
 www.lucidworks.com
 
 
 
>> -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 
 
 
 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org
 
 
>> 
>> 
>> -
>> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: java-user-h...@lucene.apache.org
>> 
>> 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org