Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

how to uncache fields within condition structures ?


Go to End


5 Posts   2140 Views

Avatar
taicait

Community Member, 5 Posts

4 May 2011 at 5:40pm

example:

<% cached 'getAllNews', Aggregate(News).Max(LastEdited) %>
<% if getAllNews %>
<ul>
<% control getAllNews %>
<li><a href="$Link" title="$Title">$Title</a></li>
// I wanna uncache TotalLike field like this
<% uncached %><li><a href="javascript:like(this)" title="Like">$TotalLike</a></li><% end_uncached %>
<% end_control %>
</ul>
<% end_if %>
<% end_cached %>

Avatar
taicait

Community Member, 5 Posts

7 May 2011 at 7:13pm

nobody help me ..

Avatar
martimiz

Forum Moderator, 1391 Posts

8 May 2011 at 12:56am

In http://doc.silverstripe.org/sapphire/en/reference/partial-caching somewhere it states:

Currently cached blocks can not be contained within if or control blocks. The template engine will throw an error letting you know if you've done this. You can often get around this using aggregates.

I guess the same goes for uncached blocks, so I don't think it can be done this way. :-(

Avatar
taicait

Community Member, 5 Posts

8 May 2011 at 3:06am

I understand this, but as you see, in my project, used partial-caching and I set cache life time is 300s = 5 minutes, some fields cant not be cached such as Like, when logged user click on Like button, this number will increase 1 by javascript, Like button will become unclickable, then send a request to update database, but with in ***5 minutes***, if user refesh page (F5), the number of Like will go back beacause it was cached before, and Like button still clickable.
I hope this feature will be implement into SS in the future

Avatar
Willr

Forum Moderator, 5523 Posts

8 May 2011 at 1:40pm

You could use the # of likes as part of the cache key. So rather than using LastEdited define your own key (http://doc.silverstripe.org/sapphire/en/reference/partial-caching#cache-key-calculated-in-controller) which uses page id + likes + last edited to generate a unique key.

Or you could load the like values using ajax which is fired off when the page loads. That request would return something like whether the user has liked it and the count of likes. Though looking at your example I can't see how you're passing back whether the user has voted or note.