You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/12/15 23:50:55 UTC

[Solr Wiki] Trivial Update of "AnalyzersTokenizersTokenFilters" by SteveRowe

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "AnalyzersTokenizersTokenFilters" page has been changed by SteveRowe.
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?action=diff&rev1=99&rev2=100

--------------------------------------------------

  In addition to the token types output by !StandardTokenizer from [[Solr3.1]] onward, !UAX29URLEmailTokenizer can also output `<URL>` and `<EMAIL>` token types.
  
   . Example: `"Visit http://accarol.com/contact.htm?from=external&a=10 or e-mail bob.cratchet@accarol.com"` 
-  . `==> ALPHANUM:"Visit", URL: "http://accarol.com/contact.htm?from=external&a=10", ALPHANUM:"or", ALPHANUM:"e-mail" EMAIL:"bob.cratchet@accarol.com"`
+  . `==> ALPHANUM:"Visit", URL:"http://accarol.com/contact.htm?from=external&a=10", ALPHANUM:"or", ALPHANUM:"e-mail" EMAIL:"bob.cratchet@accarol.com"`
  
  ||'''arg''' ||'''default value''' ||'''note''' ||
  ||maxTokenLength ||255 || <!> [[Solr3.1]] -- [[https://issues.apache.org/jira/browse/SOLR-2188|SOLR-2188]]<<BR>>Tokens longer than `maxTokenLength` are silently ignored. ||