Dear Wiki user,

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

The following page has been changed by AlessandroGasparini:
http://wiki.apache.org/nutch/MultiLingualSupport

------------------------------------------------------------------------------
  {{{
  public static Query parse(String query, Analyzer analyzer);
  }}}
+ ---
+ (Note by AlessandroGasparini) In Nutch 0.8.1 this is already implemented in 
the {{{Query}}} class:
+ {{{
+ public static Query parse(String queryString, String queryLang, Configuration 
conf)
+ throws IOException {
+     return fixup(NutchAnalysis.parseQuery(
+             queryString, AnalyzerFactory.get(conf).get(queryLang), conf), 
conf);
+   }
+ }}}
+ 
+ === More Notes ===
+ The specified analizers performs language Stemming so if you would you can 
search for "retrieval"
+ and you can get all the documents in which the stem "retriev" appears.
+ On my configuration i used the LanguageIdentifier, and the 
analysis-(language) plugins
+ for both the crawler and the web application.
+ 
  
  
  == References ==

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Nutch-cvs mailing list
Nutch-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nutch-cvs

Reply via email to