nutch 搜索页面摘要文字显示

   在有些文章中,调整快照页面的多少,需要针对源码进行编辑,然后进行重新编译,也可能是我理解错误,在索引长度调整后,对于摘要部分的显示多少,我个人认为是没有影响的。即便是有影响,这种调整方式也有点麻烦了,我是采取了修改nutch-site.xml的方法进行了简单的修改就实现了摘要长度的变化。

完整代码如下:修改的文件为webapps中的WEB-INF\classes\

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>
<property>
    <name>searcher.dir</name>
    <value>/home/nutch-1.1/localweb</value>
    <description></description>
</property>
<property>
  <name>searcher.summary.length</name>
  <value>120</value>
  <description>
  The total number of terms to display in a hit summary.
  </description>
</property>
</configuration>

加粗的这段代码即可以随便的调整nutch 搜索页面的摘要显示的长度。

大家可以试试。

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/xiaomage_cn/archive/2010/07/13/5731286.aspx

你可能感兴趣的:(xml,Web,.net,Blog,XSL)