<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Author page cached in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1164261#M43273</link>
    <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/7380"&gt;@kenny&lt;/a&gt;&amp;nbsp;I found the Solution myself but forgot to post it here.&lt;BR /&gt;&lt;BR /&gt;So I am really not sure why this was happening.&lt;BR /&gt;&lt;BR /&gt;What I did to fix is is add a new module and add the&amp;nbsp;&lt;SPAN&gt;local_dt in the name of de module so the module can't be cached and makes the call everytime to the hubdb. Its not a importand page as it is the Author page but it seems to do the trick.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jun 2025 07:32:09 GMT</pubDate>
    <dc:creator>BBecker1</dc:creator>
    <dc:date>2025-06-13T07:32:09Z</dc:date>
    <item>
      <title>Author page cached</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1156949#M43120</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;A few weeks ago, I created a module that integrates with HubDB and the author pages. It checks whether the author's email matches a row in the HubDB table and then populates the page with data from that row. This setup makes it easy for the team to update author pages through HubDB.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;However, when they make changes, the updates don’t appear immediately—only when using hsCacheBuster. This means we have to manually update the page to see the new data, which defeats the purpose of having easy, dynamic updates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can we solve this issue?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% set rows = hubdb_table_rows(105970502) %}

&amp;lt;style&amp;gt;
{% for row in rows %}
  {% if row.email == blog_author.email %}
    :root{
      --author_color: #{{row.color}}; 
      
    }
  {% endif %}
  {% endfor %}
&amp;lt;/style&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 26 May 2025 08:14:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1156949#M43120</guid>
      <dc:creator>BBecker1</dc:creator>
      <dc:date>2025-05-26T08:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Author page cached</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1156974#M43121</link>
      <description>&lt;P&gt;I already tried request.cookies and putting local_dt in the content. the local_dt changes but the hubdb content stays the same.&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2025 08:50:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1156974#M43121</guid>
      <dc:creator>BBecker1</dc:creator>
      <dc:date>2025-05-26T08:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Author page cached</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1162070#M43217</link>
      <description>&lt;P&gt;I want to invite some subject matter experts to see if they have any suggestions.&lt;/P&gt;
&lt;P&gt;Hey &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/92197"&gt;@albertsg&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/884054"&gt;@AddaxLab1&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/935114"&gt;@kosalaindrasiri&lt;/a&gt;&lt;/SPAN&gt; do you have any thoughts on this?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 22:38:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1162070#M43217</guid>
      <dc:creator>kennedyp</dc:creator>
      <dc:date>2025-06-06T22:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Author page cached</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1162108#M43219</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/169781"&gt;@kennedyp&lt;/a&gt;&amp;nbsp;thanks for the mention!&lt;BR /&gt;&lt;BR /&gt;Hey &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/558010"&gt;@BBecker1&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I totally get the frustration &lt;span class="lia-unicode-emoji" title=":sad_but_relieved_face:"&gt;😥&lt;/span&gt;; this is one of those sneaky HubSpot quirks that catches a lot of us.&lt;/P&gt;&lt;P&gt;So even though you're pulling from HubDB, the author page itself is heavily cached, especially with blog content.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That means your &lt;EM&gt;{% set rows = hubdb_table_rows(...) %}&lt;/EM&gt; line isn’t re-run every time someone visits the page.&lt;/P&gt;&lt;P&gt;That’s why changes in HubDB don’t show up unless you manually add &lt;EM&gt;?hsCacheBuster=&lt;/EM&gt; to the URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If possible, consider turning the author pages into &lt;STRONG&gt;proper HubDB dynamic pages&lt;/STRONG&gt; (using hs_path). These have way lighter caching and pull fresh HubDB data without needing a cache buster.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kosala&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jun 2025 05:42:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1162108#M43219</guid>
      <dc:creator>kosalaindrasiri</dc:creator>
      <dc:date>2025-06-07T05:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Author page cached</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1164261#M43273</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/7380"&gt;@kenny&lt;/a&gt;&amp;nbsp;I found the Solution myself but forgot to post it here.&lt;BR /&gt;&lt;BR /&gt;So I am really not sure why this was happening.&lt;BR /&gt;&lt;BR /&gt;What I did to fix is is add a new module and add the&amp;nbsp;&lt;SPAN&gt;local_dt in the name of de module so the module can't be cached and makes the call everytime to the hubdb. Its not a importand page as it is the Author page but it seems to do the trick.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 07:32:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Author-page-cached/m-p/1164261#M43273</guid>
      <dc:creator>BBecker1</dc:creator>
      <dc:date>2025-06-13T07:32:09Z</dc:date>
    </item>
  </channel>
</rss>

