Is there a way to enable data caching so pages load quicker, but the data is reloaded whenever a new record is added?
It's my understanding that that is exactly what sockets (node.js) do. Not 100% sure about the caching as I have only tried it on small amounts of data.
1 Like
Actually, after enabling data reload. It seems to work nicely. The cache data loads initially, then my server connect refreshes it shortly afterwards. So essentially, the page paints all the sections faster and then grabs new data.
Yes, you can certainly reload data on SC form success. That won't reload the data for any other users that happen to be on that page though. It will only refresh the data for the current browser window.
Yeah, that's all I need for now. Sockets would be great, but that'll have to wait.
1 Like