0

I want to disable cache for a specific file which I am loading with a layout file. Is this possible?

I tried it like this, because I saw it like this somewhere:

<reference name="head">
    <action method="addJs">
        <script>konfigurator/konfigurator.js</script>
        <lifetime>null</lifetime>
    </action>
</reference>

But it does not work? Is it even possible?

1 Answer 1

1
<reference name="block.name">
    <action method="unsetData"><key>cache_lifetime</key></action>
    <action method="unsetData"><key>cache_tags</key></action>
    <action method="setCacheLifetime"><s>0</s></action>
</reference>
3
  • How does this work in my case? Commented Oct 12, 2018 at 20:36
  • What do you exactly want to do , disable a js cache via layout ? if yes why ? Commented Oct 12, 2018 at 20:44
  • yes. Because I am developing a javascript file and I always have to wait 2 minutes before I can see the changes. Commented Oct 13, 2018 at 12:58

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.