Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Cannot escape caching or figure out cache breaking

Status Resolved
Add-on / Version Speedy 1.0.1
Severity
EE Version 5.3.0

Jennifer Martin

Dec 05, 2019

Hi Brian, per our discussion on Slack, I’m pretty sure this is just setup/config related, but I’m having two major problems I can’t work out.  I’m using Redis and fragment caching, but with layouts, so using the global fragment in the layout and the fragment with key=“home” on the homepage template per the docs.  The issues are:

1) Cannot escape caching from within the homepage template.  It’ll be way easier to connect to FTP and look at site.group/.layout_master and pages.group/homepage to see the code, but the issue is the 3x beer cans on the homepage should all be randomized on every page load, pulling from one of the selected relationships within a Grid field. So I’m trying to escape the entire {home_beers} (Grid field) loop from the pages/homepage template starting on line 63, but it’s not working.

2) I can’t work out how to setup Cache Breaking Rules so that the caching clears when the entry is updated.  This one is likely just a setup thing as I don’t know what to put in the ‘Clear Items’ tab of the Homepage Channel Settings.  I’ve tried local/home (as home is my key of the fragment), I’ve tried just local/, local/homepage (which is the name of hte channel), local/{channel_name}... but nothing seems to work.  I’m using Structure though, so traditional EE template routing doesn’t apply - could that be part of it?

Any input would be appreciated.

Thanks,
Justin

#1

BoldMinded (Brian)

Comment has been marked private.

#2

BoldMinded (Brian)

1) I don’t login to sites or servers unless it is a last resort. So can you post those template examples here?

2) local/home implies there is a URL matching site.com/home. So if you want to break the cache when the home page entry is updated, tags may be better. So add tags=”home” to your fragment tags in the home page template. Then in the cache break settings for the Home channel, just add “home” as one of the Clear Tags options. There was some missing code in the original release so tag based breaking wasn’t working, but the build in the previous comment should work. I tested manually, and unit tests confirms it should work now.

#3

Jennifer Martin

Thanks for the response - I’ll test 1.0.2 first and try tags given the homepage has no segments, then supply template code if still needed.

Side-note A), both times I’ve tried ‘upgrading’ Speedy, I’ve gotten an Exception. Uninstalling and re-installing fixes it, but figured you should know - here’s the exception from going from 1.0.1 to 1.0.2:

Exception Caught SQLSTATE[42000]: Syntax error or access violation: 1091 Can’t DROP ‘refresh_time’; check that column/key exists: ALTER TABLE exp_speedy_breaking DROP refresh_time

ee/legacy/database/drivers/mysqli/mysqli_connection.php:117 Stack Trace: Please include when reporting this error

#0 ee/legacy/database/drivers/mysqli/mysqli_driver.php(112): CI_DB_mysqli_connection->query('ALTER TABLE `ex...')
#1 ee/legacy/database/DB_driver.php(270): CI_DB_mysqli_driver->_execute('ALTER TABLE `ex...')
#2 ee/legacy/database/DB_driver.php(180): CI_DB_driver->simple_query('ALTER TABLE `ex...')
#3 ee/legacy/database/DB_forge.php(293): CI_DB_driver->query('ALTER TABLE `ex...')
#4 user/addons/speedy/upd.speedy.php(131): CI_DB_forge->drop_column('speedy_breaking', 'refresh_time')
#5 ee/EllisLab/ExpressionEngine/Controller/Addons/Addons.php(533): Speedy_upd->update('1.0.1')
#6 [internal function]: EllisLab\ExpressionEngine\Controller\Addons\Addons->update(Array)
#7 ee/EllisLab/ExpressionEngine/Core/Core.php(241): call_user_func_array(Array, Array)
#8 ee/EllisLab/ExpressionEngine/Core/Core.php(110): EllisLab\ExpressionEngine\Core\Core->runController(Array)
#9 ee/EllisLab/ExpressionEngine/Boot/boot.php(151): EllisLab\ExpressionEngine\Core\Core->run(Object(EllisLab\ExpressionEngine\Core\Request))
#10 admin.php(147): require_once('...')
#10 admin.php(147): require_once('...') 

Side-note B) the ‘reply’ email address in tickets still doesn’t seem to be working for CCing notifications. We use one company account (design@) for buying licences so they’re all together, which isn’t my personal email. Again just figured you should know.

#4

Jennifer Martin

So even with 1.0.2, I can’t get either to work - it’s not escaping the fragments and I can’t get cache busting working with tags. I created a test ‘homepage’ that actually has a segment and even a stripped down version of the template to hopefully make it easier to review:

URL: https://dev.marblebrewery.com/test (use same UN/PW as the CP access for the .htpasswd authentication) Goal 1: Get the beer can images to stay random on each page load Goal 2: Automatically clear cached content (eg heading/subheading) on entry save

Layout Template (not stripped on the site, but stripped here for legibility):

{exp:speedy:fragment key="global-layout" global="yes"}
<!doctype html>
<html lang="en">
 <head>...</head>
 <body>
  <header>...</header>

  {exp:speedy:escape}
   {layout:contents}
  {/exp:speedy:escape}

  <footer>...</footer>
  [removed]...[removed]
</body>
</html>
{/exp:speedy:fragment}

Stripped Homepage template being used at https://dev.marblebrewery.com/test

{home_beers} is a Grid field and {image_pool} is a Relationships field, with multiple selected from which one is chosen at random on each page load.

{layout='site/.layout_master'}

{exp:speedy:fragment tags="homepage"}

 {exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data" cache="no" refresh="60"}
  {exp:speedy:escape}
   {layout:set name="entry_id" value="{entry_id}"}
  {/exp:speedy:escape}
 
  <div class="container">
   <h1>Cached: {page_heading}</h1>
   
   {exp:speedy:escape}
    {!-- NOT cached --}
    <div class="homeBeers">
     {home_beers}
      <div class="item">
       
        <a href="http://{structure:page_url_for:15}{if">
         {home_beers:image_pool limit="1" orderby="random" }
          {if home_beers:image_pool:no_results}{embed={/if}
          {home_beers:image_pool:beer_image}
         {/home_beers:image_pool}
       </a>
       
      </div>
     {/home_beers}
    </div>
   {/exp:speedy:escape}

   <h3>Cached: {page_subheading}</h3>

  </div>
 {/exp:channel:entries}

{/exp:speedy:fragment}

If I drill down into the Items, I can drill down as far as local/test/item which has the created/expires dates etc, and has output code, but the images are in there, so not being escaped. The ‘Content’ of that item is here:

{!-- ra:00000000036c3722000000003d5cf82e --}
   {layout:set name="entry_id" value="225"}
{!-- ra:00000000036c3774000000003d5cf82e --}
{!-- ra:00000000036c3772000000003d5cf82e --}<main><div
class="container"><h1>Cached: Heading 1</h1>
     <div class="homeBeers">
       <div class="item">
        
         <a href="http://{structure:page_url_for:15}">
           https://dev.marblebrewery.com/uploads/images/beer/Cholo-Can.jpg
        </a>
        
       </div>
       <div class="item">
        
         <a href="http://{structure:page_url_for:15}#seasonal">
           https://dev.marblebrewery.com/uploads/images/beer/Pilsner-Can.jpg
        </a>
        
       </div>
       <div class="item">
        
         <a href="http://{structure:page_url_for:15}#featured_draft">
           https://dev.marblebrewery.com/uploads/images/beer/Desert-Fog-Can.jpg
        </a>
        
       </div>
     </div>
    <h3>Cached: Subheading 1</h3></div></main><div
class="footerTop"></div>

Do you see anything wrong? Is there anything else you need?

Thanks, Justin

#5

BoldMinded (Brian)

The contents inside the entries tag is getting parsed before the escape can capture the content. Still investigating.

#6

BoldMinded (Brian)

Ok, so I’m not sure what you’re trying to do will work, and after looking into it I’m wondering why you want to try to cache an entries tag, but escape part of the custom fields that require the entries tag to render? I setup a test case locally with the following template (the layout is exactly the same as your example above) using the pre-escape method (just adding a unique modifier to the tag, e.g. :status, :content etc)

{layout='beer/layout'}

{exp:speedy:fragment tags="homepage"}
    {exp:channel:entries channel="pages" entry_id="1" disable="pagination|categories|category_fields|member_data"}

    {exp:speedy:escape:entry_id}
        {layout:set name="entry_id" value="{entry_id}"}
    {/exp:speedy:escape:entry_id}

    {exp:speedy:escape:status}
        {if logged_in}
            I'm logged in!!
        {if:else}
            I'm not logged in.
        {/if}
    {/exp:speedy:escape:status}

    <h1>Cached: {title}</h1>

    {exp:speedy:escape:content}
        {!-- NOT cached --}
        {bloqs}
        {tables}
        <div data-block-name="tables">
            {block_heading}
        </div>
        {/tables}

        {basic_content}
        <div data-block-name="basic_content">
            {heading}
            {content}
        </div>
        {/basic_content}

        {/bloqs}
    {/exp:speedy:escape:content}

    <h3>Cached: {heading}</h3>

    {/exp:channel:entries}
{/exp:speedy:fragment}

And the cached item for this template looks like this:

{!-- ra:0000000064bcbfc80000000038191fa3 --}

        {layout:set name="entry_id" value="{entry_id}"}
    
        {if logged_in}
            I'm logged in!!
        {if:else}
            I'm not logged in.
        {/if}
    
    <h1>Cached: Test One</h1>

        {!-- NOT cached --}
        {bloqs}
        {tables}
        <div data-block-name="tables">
            {block_heading}
        </div>
        {/tables}

        {basic_content}
        <div data-block-name="basic_content">
            {heading}
            {content}
        </div>
        {/basic_content}

        {/bloqs}
    

    <h3>Cached: one</h3>

As you can see, the non entries tag variables logged_in and the conditional are properly escaped, but the {bloqs} custom field tag pair is not parsed, so it is actually escaped, but not parsed because there is no more entries tag to parse the field. Without using the pre-escape tag, the {bloqs} field pair is parsed and cached with the proper output. So escaping fields that require the entries tag to be parsed won’t work b/c regardless of the escape type (normal or pre-escape).

Does that clear things up?

#7

Jennifer Martin

Hi Brian, Thanks for the explanation, that does help me see why it’s not parsing. So what’s the most efficient solution to overcome this? Would it be to use multiple fragments inside the exp:channel:entries loop just for the fields that can be cached? Like this?

{layout='beer/layout'}

{exp:channel:entries channel="pages" entry_id="1" disable="pagination|categories|category_fields|member_data"}
  {layout:set name="entry_id" value="{entry_id}"}

  {if logged_in}
    I'm logged in!!
  {if:else}
   I'm not logged in.
  {/if}

 {exp:speedy:fragment tags="homepage"}
    <h1>Cached: {title}</h1>
 {/exp:speedy:fragment}

  {!-- NOT cached --}
  {bloqs}
   {tables}
    <div data-block-name="tables">
       {block_heading}
    </div>
   {/tables}
  {basic_content}
    <div data-block-name="basic_content">
      {heading}
      {content}
    </div>
  {/basic_content}
  {/bloqs}

 {exp:speedy:fragment tags="homepage"}
    <h3>Cached: {heading}</h3>
 {/exp:speedy:fragment}

{/exp:channel:entries}

This does work (and makes sense why), but I just don’t know if it’s the most efficient way to achieve what I’m trying to do?

Also any thoughts on getting cache to clear on entry-save?

Thanks, Justin

#8

BoldMinded (Brian)

The cache is clearing on save. Did you switch to using tags? It definitely worked for me locally when I tried it.

It looks like you’re caching two different fragments, you should probably give them unique names using the key=”” parameter.

#9

Jennifer Martin

Is the code in comment #7 the right way to do this? Ie, setup fragments inside the exp:channel:entries loop rather than trying to cache the whole thing and set escaped sections?

Regarding clearing cache on save, it’s got to be something setup-wise I’m missing because nothing I do seems to work - I’ve tried using just tags, just keys and a combination of both and still nothing. See https://imagizer.imageshack.com/img921/8281/zVGLUX.jpg for my ‘cache breaking rules’ setup and below are the several attempts that don’t work :-

Using just tags: In this case, the cached code for the ‘heading’ is actually repeated down below, which makes sense because it’s the same tag on the same URL, but is clearly not the right setup:

{layout='site/.layout_master'}

{exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data"}

 {layout:set name="entry_id" value="{entry_id}"}

 {exp:speedy:fragment tags="homepage"}
  <main>
   <div class="container">
    <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
    
 {!-- NOT cached --}
 <div class="homeBeers">
  {home_beers}
   {home_beers:image_pool limit="1" orderby="random" }
    {home_beers:image_pool:beer_image}
   {/home_beers:image_pool}
  {/home_beers}
 </div>

 {exp:speedy:fragment tags="homepage"}
    <h3>Cached: {page_subheading}</h3>

   </div>
  </main>
  <div class="footerTop"><!-- --></div>
 {/exp:speedy:fragment}

{/exp:channel:entries}

Using just keys: The different fragments cache separately and the caching appears to work fine, but they don’t update when I edit the entry (my testing is just changing the numbers in heading/subheading back and forth between 1/2/3):

{layout='site/.layout_master'}

{exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data"}

 {layout:set name="entry_id" value="{entry_id}"}

 {exp:speedy:fragment key="homepage1"}
  <main>
   <div class="container">
    <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
    
 {!-- NOT cached --}
 <div class="homeBeers">
  {home_beers}
   {home_beers:image_pool limit="1" orderby="random" }
    {home_beers:image_pool:beer_image}
   {/home_beers:image_pool}
  {/home_beers}
 </div>

 {exp:speedy:fragment key="homepage2"}
    <h3>Cached: {page_subheading}</h3>

   </div>
  </main>
  <div class="footerTop"><!-- --></div>
 {/exp:speedy:fragment}

{/exp:channel:entries}

Using both unique keys and tags: acts the same as just with keys - renders and appears to cache correctly, but still doesn’t clear when I edit the entry:

{layout='site/.layout_master'}

{exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data"}

 {layout:set name="entry_id" value="{entry_id}"}

 {exp:speedy:fragment key="homepage1" tags="homepage"}
  <main>
   <div class="container">
    <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
    
 {!-- NOT cached --}
 <div class="homeBeers">
  {home_beers}
   {home_beers:image_pool limit="1" orderby="random" }
    {home_beers:image_pool:beer_image}
   {/home_beers:image_pool}
  {/home_beers}
 </div>

 {exp:speedy:fragment key="homepage2" tags="homepage"}
    <h3>Cached: {page_subheading}</h3>

   </div>
  </main>
  <div class="footerTop"><!-- --></div>
 {/exp:speedy:fragment}

{/exp:channel:entries}
#10

BoldMinded (Brian)

In my test, here is my item based cache breaking rule. I had to add “en” b/c I have Publisher running too. https://d.pr/i/LzDNFe

Then in my site’s default/index template, which is loaded when I go to the home page at site.com/, I have the following:

{exp:speedy:fragment key="homepage" url_prefix="{publisher:current_language_code}"}
 This is some cached content
{/exp:speedy:fragment}

When I save an entry in the Pages channel, the cached item is cleared.

#11

BoldMinded (Brian)

What exactly are you trying to do with homepage1 and homepage2 in your examples? Are you trying to pass the cached contents up to the site/.layout_master template?

#12

Jennifer Martin

I’m trying to cache the entire page contents except for the page-specific layout variables that get passed up to .layout_master and the {home_beers} Grid field because in each row, we’re wanting to load a non-cached random selection from the {image_pool} Relationship field (one of the Grid columns) on page-load. The only reason I tried splitting it into homepage1 and homepage2 was because I can’t wrap the channel entries tags with my fragment and just escape that one Grid field (you explained why in comment #6)… and I tried have one fragment that’s inside the channel entries loop but then escape the {home_beers} field, but that doesn’t work either using either the regular or pre-escape methods. But I’m still not clear if splitting the content into two fragments is the right way to do it, but that’s the only thing I can find that actually works - this is what’s working now at https://dev.marblebrewery.com/test - the heading/subheading pull from the cache and the beer images render from the Grid field each time. But is this the right/best way to do this?

Regarding clearing on save, I’ve tried so many things and nothing works. Assuming using multiple fragments instead of one fragment with an escape is the right way to do this, I’m using the same code as you just without the url_prefix… and of course I have two unique keys for my two fragments (homepage1/homepage2) and I end up with two cache items under local/test: local/test/homepage1 and local/test/homepage2 - each one showing what I’d expect in the ‘Content’ when I drill all the way down to ‘View Item’. In the Cache Breaking Rules for this channel, I’ve tried local/homepage1 & local/homepage2 and also local/test/homepage1 & local/test/homepage2 but neither set works.

I have to imagine the template group and template name come into this… in your example, you’re using the default group and the index template for the homepage (which has no segements). In my case, the template I’m using here is ‘pages.group/homepage_stripped.html’ but I’m using Structure to assign the template, so routing is not the standard EE template routing. In my head, this has to work into it somehow, but I can’t work out how. Using Structure, the same template could possibly be used with any URL. I just can’t figure out what to put in the Cache Breaking Rules for my setup to get that to work. Are we sure using Structure isn’t interfering here?

#13

BoldMinded (Brian)

I’m not sure if passing things up to the parent layout will work. There is a template parse order thing that does not allow it to work. It’s working with the {layout:contents} b/c it doesn’t use a {layout:set} tag for the contents, it just captures everything, so there are no module tag parse order issues to deal with.

have to imagine the template group and template name come into this… in your example, you’re using the default group and the index template for the homepage (which has no segements). In my case, the template I’m using here is ‘pages.group/homepage_stripped.html’ but I’m using Structure to assign the template, so routing is not the standard EE template routing

Template name shouldn’t matter. If it is creating a cache item at local/test/homepage1, and you add that as an item in your channel settings, saving just clears all items matching that pattern. Have you tried it without Structure just to be certain it isn’t a Structure issue? I don’t think it is, but if you can create another test case to take Structure out of the equation it’ll help.

#14

BoldMinded (Brian)

I think we’ve both been thinking about this the wrong way. Speedy doesn’t pass around cache items like Stash does, it needs to render cached content in the same tag it was created in. In this case, we don’t want to cache a {layout:set name=”foo”} variable where it is created… we want to cache it where the contents are output. This works for me:

{layout="layouts/main"}

{exp:channel:entries entry_id="1" dynamic="no"}
    {layout:set name="entry_title" value="{title}"} {!-- create the variable just like you normally do, no caching tags here --}
    {exp:speedy:fragment key="home" global="no" tags="pages"}
        This is home page entries content.    
    {/exp:speedy:fragment}
{/exp:channel:entries}

Then in the layout file:

{exp:speedy:fragment key="global-layout-entry-title"}
    entry_title: {layout:entry_title} {!-- This is where we want to cache it --}
{/exp:speedy:fragment}

{exp:speedy:fragment key="global-layout" global="yes"}
    ... _layouts/main file contents ...
 
    {exp:speedy:escape}{layout:contents}{/exp:speedy:escape}

    ... more _layouts/main file contents ...
{/exp:speedy:fragment}
#15

BoldMinded (Brian)

Actually, this appears to be working for me:

{layout="layouts/main"}

{exp:speedy:fragment key="home" global="no" tags="pages"}
    {exp:channel:entries entry_id="1" dynamic="no"}
        {exp:speedy:escape}
            {layout:set name="entry_title" value="{title}"}
        {/exp:speedy:escape}

        This is home page entries content.    

    {/exp:channel:entries}
{/exp:speedy:fragment}

Which results in a cache item looking like this.

{!-- ra:000000005d824946000000004828d306 --}

 {layout:set name="entry_title" value="Test One"}
    
        This is home page entries content.

Layout:

entry_title: {layout:entry_title}

{exp:speedy:fragment key="global-layout" global="yes"}
    ... _layouts/main file contents ...
 
    {exp:speedy:escape}{layout:contents}{/exp:speedy:escape}

    ... more _layouts/main file contents ...
{/exp:speedy:fragment}
#16

Jennifer Martin

Hi Brian, I agree your latest code (comment #15) works for escaping the layout variables and keeping them unique per page as they’re outside the speedy:fragment in the layout - and this does solve that part of the problem.

But regarding wanted to exclude a single EE field from being in the cache (in my example, the Grid field that pulls a random beer can image every page-load), do you agree that my method of having two separate fragments (key=”homepage1” and key=”homepage2” from the very bottom of comment #9) is the best way to do that? I thought from the docs having just one fragment (still inside the channels entry loop) with an escape around that one field would work, but it doesn’t.

Finally, regarding the cache breaking rules and clearing cache on entry-save, I’ll have to make time to test it outside of Structure and I might not get to that until the new year. But in the meantime, you implied in comment #13 that I had to add ‘local/test/homepage1’ to the Cache Breaking Rules, but in my case, ‘test’ is the name of a page that theoretically the content editors could create themselves… so needing to manually add rules for every page that gets added isn’t going to be viable anyway. Which presumably is where the reference to including {channel_name} in the instructions comes in, but with Structure, {channel_name} definitely isn’t in a segment. For example, I added another test page underneath my original, so now with my two-fragment setup I have cache items that look like:

local/test/homepage1, local/test/homepage2, local/test/level2/homepage1 & local/test/level2/homepage2

So the question is, how do I setup cache breaking rules to not be URL specific so pages the user adds themselves still get cached?

Thanks, Justin

#17

BoldMinded (Brian)

Sounds like you do need to use more than 1 fragment tag if you want to cache everything except the beer can image, but at that point I wonder if that entries tag is even really benefiting from caching, b/c the heavy lifting is done by the entries tag itself, not the custom fields.

I understand now what you’re saying about the cache breaking, and based on the nature of dynamic urls it sounds like you need to rely on tags, not paths to break the cache. In the channel’s cache breaking settings page just add a tag for “homepage”, or whatever you name it. Then when you load the page on the front-end you should see an entry in the exp_speedy_tags table with the key column being the url, and the tag column being the tag you used on the fragment template tag.

#18

Jennifer Martin

Thanks Brian, I’ll keep that in mind about using inside a channel:entries loop, but it seems like it would still reduce the number of queries so it’s worth testing. And what you said about using tags instead also makes sense, but I just still can’t get it to work.

If I only use tags on each of my two fragments, but use the same tag, then the first fragment is duplicated and rendered twice, eg:

{layout='site/.layout_master'}
{exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data"}

 {exp:speedy:fragment tags="homepage"}
  <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
    
 {exp:speedy:fragment tags="homepage"}
  <h3>Cached: {page_subheading}</h3>
 {/exp:speedy:fragment}

{/exp:channel:entries}

In the above example, the <h1> is rendered twice. Even if I update the tags to be unique (eg tags=”hoempage1” and tags=”homepage2”), I still get duplicated output and drilling down to View Items, I only get one cache item with the key “local/test/item” (which has the cached content from the first fragment). In both cases, the cache still isn’t cleared on entry-save with “homepage”, “homepage1” and “homepage2” rows setup under Clear Tags for this channel.

If I add unique keys to each fragment, then the two fragments do cache separately, we get two cache items with keys “local/test/homepage1” and “local/test/homepage2” and the <h1> and <h3> are both rendered correctly, eg:

{layout='site/.layout_master'}
{exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data"}

 {exp:speedy:fragment tags="homepage" key="homepage1"}
  <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
    
 {exp:speedy:fragment tags="homepage" key="homepage2"}
  <h3>Cached: {page_subheading}</h3>
 {/exp:speedy:fragment}

{/exp:channel:entries}

But the cache still doesn’t clear when I edit the entry. Again, I tried making the tags unique, eg:

{exp:speedy:fragment tags="homepage1" key="homepage1"}
  <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
    
 {exp:speedy:fragment tags="homepage2" key="homepage2"}
  <h3>Cached: {page_subheading}</h3>
 {/exp:speedy:fragment}

but this didn’t help to clear cache on entry-save either.

Even if I strip out the 2nd fragment altogether and just have one fragment with a single tag, that still does not refresh when the entry is edited, eg:

{layout='site/.layout_master'}
{exp:channel:entries channel="homepage" limit="1" disable="pagination|categories|category_fields|member_data"}

 {exp:speedy:fragment tags="homepage1"}
  <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}

{/exp:channel:entries}

so something is very odd here.

Finally, going back to previous discussions, I tried removing this stripped homepage template out of Strucutre and accessing it directly via traditional EE template routing and that still doesn’t work. This fragment stays cached and doesn’t clear when I update the {page_heading} field and re-save the entry:

{layout='site/.layout_master'}
{exp:channel:entries channel="homepage" limit="1" entry_id="225" disable="pagination|categories|category_fields|member_data"}
 {exp:speedy:fragment tags="homepage1"}
  <h1>Cached: {page_heading}</h1>
 {/exp:speedy:fragment}
{/exp:channel:entries}

So I’m at a total loss with clearing the cache on entry-save. Any ideas? Would it be beneficial to login to the site yourself and see it with your own eyes? The creds I added to the first ticket should still be valid.

Thanks, Justin

#19

BoldMinded (Brian)

I think you always need to add a key parameter to the fragments, otherwise it won’t cache. The htaccess login isn’t working, so I can’t login to the CP.

#20

Jennifer Martin

Ok, always adding a key is fine, so long as we can get the tag caching working. Sorry about the authentication, not sure what happened there - I’ve disabled .htpasswd authentication for now.

#21

BoldMinded (Brian)

Which template file has your fragment tag in it for the home page?

#22

BoldMinded (Brian)

Also, have you tried a similar caching scenario on a different page other than the home page to see if it works?

#23

Jennifer Martin

I’m just using the homepage channel for now, and even created a stripped down version for testing so https://dev.marblebrewery.com/test (and https://dev.marblebrewery.com/test/level2) is using the pages.group/homepage_stripped.html template

#24

BoldMinded (Brian)

It looks like it is creating keys incorrectly b/c there is no url segment. E.g. speedy/default_site/local//item and speedy/default_site/local//home - see the double slashes?

Try adding url_override=”home” to the home page fragment tags to see what happens.

#25

BoldMinded (Brian)

Also try a similar setup on a non-home page entry that has a normal url segment, but don’t add the url_override parameter to that one… only add it on the home page template.

#26

Jennifer Martin

The double-slashes appears to only be from the actual homepage (which has no URL segments), so adding a url_override there does make sense and I’ve done that now and am seeing the correct ‘speedy/default_site/local/home/item’ record in exp_speedy_tags… but the rest of the records in that table for the other pages I was focusing on testing with my homepage_stripped template (ie https://dev.marblebrewery.com/test and https://dev.marblebrewery.com/test/level2) do seem correct.

Should the contents of the exp_speedy_tags table persist forever? I tried removing all Cache Breaking Rules entries, clearing ‘All Drivers’ cache but that table remains with all records, including the erroneous ones, but I’m not sure if that’s an issue or not.

#27

Jennifer Martin

I finally got it to work! I had basically already done what you suggested with a similar non-home setup using a totally different template (pages/homepage_stripped) on pages with URLs with segments (https://dev.marblebrewery.com/test and https://dev.marblebrewery.com/test/level2).

But it looks like the errors in the exp_speedy_tags table was the problem. I went ahead and manually deleted all the old rows from exp_speedy_tags and that seemed to be the difference maker. So now with the fresh setup, it is working as expected. So here’s what I now have:

1) my actual homepage (https://dev.marblebrewery.com) using the pages/homepage template with only one fragment for now, but it has a unique key (‘home’) and the url_override setup and working

2) the two inner pages above both setup at different levels using the homepage_stripped template which has two fragments, each with a unique key (‘homepage1’ and ‘homepage2’), without url_override and relies on the URL to make up part of the key.

In the DB, the exp_speedy_tags table looks correct now:

KEY                                                 TAG
---                                                 ---
speedy/default_site/local/home/home                 homepage
speedy/default_site/local/test/homepage1            homepage
speedy/default_site/local/test/homepage2            homepage
speedy/default_site/local/test/level2/homepage1     homepage
speedy/default_site/local/test/level2/homepage2     homepage

and as I drill down under Redis to view each individual cache item, they look correct as well and editing an entry DOES now clear the cache! Huzzah!

So my question above I guess is the pertinent one now - about how those records in exp_speedy_tags persist even if Cache Breaking Rules and fragments in template are changed/removed. In my case, setting up a homepage fragment without the url_override param created a broken tag with the double-slashes and that seemed to keep all other cache-breaking rules from working.

#28

Jennifer Martin

Actually, after further playing around with this, I found that toggling on the “Refresh Items” keeps the cache from updating on entry-save. So maybe that was the problem instead of the broken tag items in exp_speedy_tags. I’ve kept the Refresh Items toggle to ‘on’ because I presumed that meant that as cache was deleted, Speedy would go re-render those pages in order to re-generate the cache (so the cache would be refreshed before the next user requested that page…), but this may well have been the issue all along.

Should the Refresh Items toggle work when utilizing dynamic URLs via tags?

#29

Jennifer Martin

PS, I did just notice that exp_speedy_tags did get wiped and regenerated, but I can’t figure out what I did to cause that. At this point, I’m thinking it’s been the Refresh Items toggle being on all this time that kept the clear-on-entry-save from working.

#30

BoldMinded (Brian)

Glad you figured it out. I’ll take another look at the refresh option. The next release will have a page to clear tags, so you don’t have to do it manually in the database.

Login to reply