You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Nicola Ken Barozzi <ba...@nicolaken.com> on 2002/02/05 08:40:50 UTC

[HOWTO] disable caching for development (was Re: problem in updating xsl)

From: "Derek Hohls" <DH...@csir.co.za>

> Nicola
>
> Could be more specific about how to disable caching

In cocoon xconf:

  <xslt-processor
class="org.apache.cocoon.components.xslt.XSLTProcessorImpl"
                  logger="core.xslt-processor">
     <!--<parameter name="use-store" value="true"/>
     <parameter name="incremental-processing" value="true"/>-->
     <parameter name="use-store" value="false"/>
     <parameter name="incremental-processing" value="false"/>
  </xslt-processor>

  <!--<stream-pipeline
class="org.apache.cocoon.components.pipeline.CachingStreamPipeline"
                   logger="core.stream-pipeline"
                   pool-max="32" pool-min="8" pool-grow="4"/>-->
    <stream-pipeline

class="org.apache.cocoon.components.pipeline.NonCachingStreamPipeline"
      logger="core.stream-pipeline"/>

  <!--<event-pipeline
class="org.apache.cocoon.components.pipeline.CachingEventPipeline"
                  logger="core.event-pipeline"
                  pool-max="32" pool-min="8" pool-grow="4"/>-->
    <event-pipeline

class="org.apache.cocoon.components.pipeline.NonCachingEventPipeline"
          logger="core.event-pipeline"/>

  <!--<sitemap file="sitemap.xmap" reload-method="asynchron"
check-reload="yes" logger="sitemap"/>-->
  <sitemap file="sitemap.xmap" reload-method="synchron" check-reload="yes"
logger="sitemap"/>

--
Nicola Ken Barozzi                 krysalis.org@nicolaken.com
            - verba volant, scripta manent -
   (discussions get forgotten, just code remains)
---------------------------------------------------------------------



---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <co...@xml.apache.org>
For additional commands, e-mail: <co...@xml.apache.org>


Re: [HOWTO] disable caching for development (was Re: problem in updating xsl)

Posted by Mohamed Abdel Hameed <mo...@imkenberg.net>.
hello Nicola
Thanx for your reply
i make the changes u told  me to do
when i make all changes some errors occur
and without running web site there is a dir index
but i change this only and it works good now
  <xslt-processor
class="org.apache.cocoon.components.xslt.XSLTProcessorImpl"
                  logger="core.xslt-processor">
     <!--<parameter name="use-store" value="true"/>
     <parameter name="incremental-processing" value="true"/>-->
     <parameter name="use-store" value="false"/>
     <parameter name="incremental-processing" value="false"/>
  </xslt-processor>
thanx

----- Original Message -----
From: "Nicola Ken Barozzi" <ba...@nicolaken.com>
To: <co...@xml.apache.org>
Sent: Tuesday, February 05, 2002 9:40 AM
Subject: [HOWTO] disable caching for development (was Re: problem in
updating xsl)


> From: "Derek Hohls" <DH...@csir.co.za>
>
> > Nicola
> >
> > Could be more specific about how to disable caching
>
> In cocoon xconf:
>
>   <xslt-processor
> class="org.apache.cocoon.components.xslt.XSLTProcessorImpl"
>                   logger="core.xslt-processor">
>      <!--<parameter name="use-store" value="true"/>
>      <parameter name="incremental-processing" value="true"/>-->
>      <parameter name="use-store" value="false"/>
>      <parameter name="incremental-processing" value="false"/>
>   </xslt-processor>
>
>   <!--<stream-pipeline
> class="org.apache.cocoon.components.pipeline.CachingStreamPipeline"
>                    logger="core.stream-pipeline"
>                    pool-max="32" pool-min="8" pool-grow="4"/>-->
>     <stream-pipeline
>
> class="org.apache.cocoon.components.pipeline.NonCachingStreamPipeline"
>       logger="core.stream-pipeline"/>
>
>   <!--<event-pipeline
> class="org.apache.cocoon.components.pipeline.CachingEventPipeline"
>                   logger="core.event-pipeline"
>                   pool-max="32" pool-min="8" pool-grow="4"/>-->
>     <event-pipeline
>
> class="org.apache.cocoon.components.pipeline.NonCachingEventPipeline"
>           logger="core.event-pipeline"/>
>
>   <!--<sitemap file="sitemap.xmap" reload-method="asynchron"
> check-reload="yes" logger="sitemap"/>-->
>   <sitemap file="sitemap.xmap" reload-method="synchron" check-reload="yes"
> logger="sitemap"/>
>
> --
> Nicola Ken Barozzi                 krysalis.org@nicolaken.com
>             - verba volant, scripta manent -
>    (discussions get forgotten, just code remains)
> ---------------------------------------------------------------------
>
>
>
> ---------------------------------------------------------------------
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>
> To unsubscribe, e-mail: <co...@xml.apache.org>
> For additional commands, e-mail: <co...@xml.apache.org>
>


---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <co...@xml.apache.org>
For additional commands, e-mail: <co...@xml.apache.org>


Re: [HOWTO] disable caching for development (was Re: problem in updating xsl)

Posted by Mohamed Abdel Hameed <mo...@imkenberg.de>.
Thanx for your reply
i make the changes u told  me to do
when i make all changes some errors occur
and without running web site there is a dir index
but i change this only and it works good now
  <xslt-processor
class="org.apache.cocoon.components.xslt.XSLTProcessorImpl"
                  logger="core.xslt-processor">
     <!--<parameter name="use-store" value="true"/>
     <parameter name="incremental-processing" value="true"/>-->
     <parameter name="use-store" value="false"/>
     <parameter name="incremental-processing" value="false"/>
  </xslt-processor>
thanx
----- Original Message -----
From: "Nicola Ken Barozzi" <ba...@nicolaken.com>
To: <co...@xml.apache.org>
Sent: Tuesday, February 05, 2002 9:40 AM
Subject: [HOWTO] disable caching for development (was Re: problem in
updating xsl)


> From: "Derek Hohls" <DH...@csir.co.za>
>
> > Nicola
> >
> > Could be more specific about how to disable caching
>
> In cocoon xconf:
>
>   <xslt-processor
> class="org.apache.cocoon.components.xslt.XSLTProcessorImpl"
>                   logger="core.xslt-processor">
>      <!--<parameter name="use-store" value="true"/>
>      <parameter name="incremental-processing" value="true"/>-->
>      <parameter name="use-store" value="false"/>
>      <parameter name="incremental-processing" value="false"/>
>   </xslt-processor>
>
>   <!--<stream-pipeline
> class="org.apache.cocoon.components.pipeline.CachingStreamPipeline"
>                    logger="core.stream-pipeline"
>                    pool-max="32" pool-min="8" pool-grow="4"/>-->
>     <stream-pipeline
>
> class="org.apache.cocoon.components.pipeline.NonCachingStreamPipeline"
>       logger="core.stream-pipeline"/>
>
>   <!--<event-pipeline
> class="org.apache.cocoon.components.pipeline.CachingEventPipeline"
>                   logger="core.event-pipeline"
>                   pool-max="32" pool-min="8" pool-grow="4"/>-->
>     <event-pipeline
>
> class="org.apache.cocoon.components.pipeline.NonCachingEventPipeline"
>           logger="core.event-pipeline"/>
>
>   <!--<sitemap file="sitemap.xmap" reload-method="asynchron"
> check-reload="yes" logger="sitemap"/>-->
>   <sitemap file="sitemap.xmap" reload-method="synchron" check-reload="yes"
> logger="sitemap"/>
>
> --
> Nicola Ken Barozzi                 krysalis.org@nicolaken.com
>             - verba volant, scripta manent -
>    (discussions get forgotten, just code remains)
> ---------------------------------------------------------------------
>
>
>
> ---------------------------------------------------------------------
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>
> To unsubscribe, e-mail: <co...@xml.apache.org>
> For additional commands, e-mail: <co...@xml.apache.org>
>


---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <co...@xml.apache.org>
For additional commands, e-mail: <co...@xml.apache.org>