function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ehsan DevEhsan Dev 

Forcing record page refresh in lightening when redirecting back from a Visualforce page

I have a VF page and trying to make it work in lightening. This VF page fires from a custom object record page button, creates or edits some child records and returns back to the record page by this code:
 
<apex:outputLink value="{! URLFOR($Action.Section__c.view, sectionAttendanceInfo.thisSection.id)} " > back to Instance </apex:outputLink>
The issue is when going back to the main record page in lightening, the page does not refresh (because it's cached in lightening) so it does not reflects the chil record changes unless I manually refresh the page.
What is the easiest way to make the record page refresh when coming back from the VF page?