I have to create an exam app that has to load questions that will never change.
According to Documentation
This will cache the query
this->db->cache_on();
$query = $this->db->query("SELECT * FROM mytable");
1.But this is file driver by default right? but how do I make it use APCu by default?
- What would be a good mix: Codeigniter - Opcache/file or Opcache/APC
Thanks I hope you can point me in the right direction.