CodeIgniter Multi-level Cache |
(06-03-2016, 10:11 PM)zenepay Wrote: Is this working with Session database type? or do we need to set session to "files" in app/config.phpOnly read-type (SELECT) queries can be cached, since these are the only type of queries that produce a result. Write-type (INSERT, UPDATE, etc.) queries, since they don’t generate a result, will not be cached by the system. https://www.codeigniter.com/userguide3/d...ching.html Check out the official document here. This script only changes the cache path. ![]()
Personal blog: https://terryl.in
My personal project is called Dictpedia is currently using Codeigniter 3, welcome. |
Messages In This Thread |
CodeIgniter Multi-level Cache - by allenlee - 06-03-2016, 06:01 PM
RE: CodeIgniter Multi-level Cache - by kilishan - 06-03-2016, 06:43 PM
RE: CodeIgniter Multi-level Cache - by zenepay - 06-03-2016, 10:11 PM
RE: CodeIgniter Multi-level Cache - by allenlee - 06-03-2016, 10:22 PM
RE: CodeIgniter Multi-level Cache - by Diederik - 06-03-2016, 10:36 PM
RE: CodeIgniter Multi-level Cache - by allenlee - 06-05-2016, 05:35 AM
RE: CodeIgniter Multi-level Cache - by iridion2015 - 06-04-2016, 09:12 PM
|