I am wondering if possible what might the most efficient way be to resolve the following cache problem:
I recently finished a private networking stream a part of my CMF that utilizes the codeigniter framework. The problem is client browser cache. When User A responds to User B's post. User B isn't able to see the response unless their browser is refreshed. I do have a reload button present but obviously this isn't a solution to this problem because you're not going expect the users constantly click the reload button to check if the other user responded to their post.
I came across the following js:
<meta http-equiv="refresh" content="5" />
The problem with this js though is it isn't really specific enough and if a user typing while the 5 sec parameter or a 30 sec parameter is met the user obviously looses what they were typing unless they get a chance to post before the forced browser refresh.
Also came across the following CI_Output extension but didn't seem to solve my problem:
class MY_Output extends CI_Output
{
function nocache()
{
$this->set_header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
$this->set_header('Cache-Control: no-cache, no-store, must-revalidate, max-age=0');
$this->set_header('Cache-Control: post-check=0, pre-check=0', FALSE);
$this->set_header('Pragma: no-cache');
}
}
I'm really at a loss and not all that great at js and I'm not sure if js is the most efficient solution or if I should pursue server side. :-)
Any help greatly appreciated :)
Thanks so much!! :)
Expiresheader my birthday (July 26th) is used? – zerkms Sep 13 '12 at 2:43