Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Can I cache only certain parts of a page?

Answer Posted / Mitesh Shandilaya

Yes, you can cache specific parts of a page in CodeIgniter using caching filters. You would define the filter in your controller and apply it to a method that generates the content to be cached.nn```phpn$this->output->set_header('Cache-Control: max-age=3600'); // Cache for 1 hourn$data = $this->my_method(); // Generate contentn$this->load->view('my_view', $data); // Render the view with the generated contentn```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to add / link an images/css/javascript from a view in ci?

689