Page 1 of 1
what is the difference CacheMode between Page and Session ?
Posted: Fri Apr 01, 2016 2:34 am
by tuphamdang
hi ,
what is the difference CacheMode between Page and Session ?
Re: what is the difference CacheMode between Page and Sessio
Posted: Fri Apr 01, 2016 6:11 am
by HighAley
Hello.
The report is cached on server-side. If you set the CacheMode property to Session, the report cache will be available for current Session only.
If the CacheMode property is set to Page, the report cache will be available for everyone. It could cause some issues if different users need to get reports with different data from one report template.
Thank you.
Re: what is the difference CacheMode between Page and Sessio
Posted: Fri Apr 01, 2016 6:45 am
by tuphamdang
hi HighAley
"If the CacheMode property is set to Page, the report cache will be available for everyone. It could cause some issues if different users need to get reports with different data from one report template."
How to resolve that issues ? when set CacheMode = Page
Thanks
Re: what is the difference CacheMode between Page and Sessio
Posted: Fri Apr 01, 2016 8:34 am
by HighAley
Hello.
tuphamdang wrote:How to resolve that issues ? when set CacheMode = Page
You should set the CacheMode to Session.
Thank you.