Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Awesome Email Analzyer?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Chris Marisic  
View profile  
 More options May 4 2012, 10:35 am
From: Chris Marisic <ch...@marisic.com>
Date: Fri, 4 May 2012 07:35:03 -0700 (PDT)
Local: Fri, May 4 2012 10:35 am
Subject: Awesome Email Analzyer?

Does anyone know of an awesome Email analyzer for Lucene?

I really have to imagine someone has already created an email analyzer that
given the email "b...@mcrosoft.com" would create the following terms:
b...@microsoft.com, microsoft.com, bill, microsoft I'd hate to end up
reinvent the wheel by creating a hand rolled analyzer for this.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Oren Eini (Ayende Rahien)  
View profile  
 More options May 4 2012, 10:38 am
From: "Oren Eini (Ayende Rahien)" <aye...@ayende.com>
Date: Fri, 4 May 2012 17:38:54 +0300
Local: Fri, May 4 2012 10:38 am
Subject: Re: [RavenDB] Awesome Email Analzyer?

Email = new[] {doc.Email, doc.Email.Split('@') }


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Marisic  
View profile  
 More options May 4 2012, 11:40 am
From: Chris Marisic <ch...@marisic.com>
Date: Fri, 4 May 2012 08:40:40 -0700 (PDT)
Local: Fri, May 4 2012 11:40 am
Subject: Re: [RavenDB] Awesome Email Analzyer?

Hmm, hadn't thought about just generating the terms i want myself like that!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nick  
View profile  
 More options Sep 11 2012, 2:22 pm
From: Nick <cadil...@gmail.com>
Date: Tue, 11 Sep 2012 11:22:41 -0700 (PDT)
Local: Tues, Sep 11 2012 2:22 pm
Subject: Re: [RavenDB] Awesome Email Analzyer?

But:

1. I have to write this in my index map:
      Email = new object[] {user.Email, user.Email.Split('@') } // without
the "object[]" it does not compile
2. Email becomes an array of strings and I can't query it with Where(x =>
x.Email = "m...@domain.com")

Note: I have a Reduce part in my index.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Marisic  
View profile  
 More options Sep 11 2012, 2:34 pm
From: Chris Marisic <ch...@marisic.com>
Date: Tue, 11 Sep 2012 11:34:18 -0700 (PDT)
Local: Tues, Sep 11 2012 2:34 pm
Subject: Re: [RavenDB] Awesome Email Analzyer?

I'm pretty sure you want to do

Where(x=> x.Email.In(searchterm))


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nick  
View profile  
 More options Sep 11 2012, 2:57 pm
From: Nick <cadil...@gmail.com>
Date: Tue, 11 Sep 2012 11:57:39 -0700 (PDT)
Local: Tues, Sep 11 2012 2:57 pm
Subject: Re: [RavenDB] Awesome Email Analzyer?

ok, but when I have my query results and I want to display result.Email, I
don't get the original email since this is now an array of terms...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Marisic  
View profile  
 More options Sep 11 2012, 3:27 pm
From: Chris Marisic <ch...@marisic.com>
Date: Tue, 11 Sep 2012 12:27:16 -0700 (PDT)
Local: Tues, Sep 11 2012 3:27 pm
Subject: Re: [RavenDB] Awesome Email Analzyer?

In that case you want to have in your map more like

Email = user.Email
EmailTerms =  new object[] {user.Email, user.Email.Split('@') }


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »