Hi!

 

I indexed my site with LuceneIndexTransformer. I got some content in the .cfs file (aprox. 45 kB).

 

When I access my search pipeline:

 

<!-- ########  SEARCHING  ######## -->

      <map:match pattern="content/*/*/*/search">

            <map:generate type="search">

                  <map:parameter name="query" value="{request-param:search-query}"/>

            </map:generate>

            <map:serialize type="xml"/>

      </map:match>

      <!-- ########  END SEARCHING  ######## -->

 

all I get is the following xml:

 

<search:results xmlns:search="http://apache.org/cocoon/search/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" date="1135263424921" start-index="0" page-length="10"/>

 

…so no results found. This is very strange since I tried to search everything possible that I indexed in the first place (words from <lucene:document> elements).

 

Does anybody know why this could happen?

 

Thanks!

 

Dan