File tree Expand file tree Collapse file tree
user_guide_src/source/installation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Documentations
1414What has been changed
1515=====================
1616- The functionality in CI3 is basically the same as in CI4.
17+ - `Database Caching <https://www.codeigniter.com/userguide3/database/caching.html >`_ functionality known from CI3 was removed.
1718- The method names have changed to camelCase and the :doc: `Query Builder <../database/query_builder >`
1819 now needs to be initialized before you can run queries on it.
1920
@@ -40,6 +41,8 @@ Upgrade Guide
4041 - ``$this->db->select_max('age'); `` to ``$builder->selectMax('age'); ``
4142 - ``$this->db->join('comments', 'comments.id = blogs.id'); `` to ``$builder->join('comments', 'comments.id = blogs.id'); ``
4243 - ``$this->db->having('user_id', 45); `` to ``$builder->having('user_id', 45); ``
44+ 6. CI4 does not provide `Database Caching <https://www.codeigniter.com/userguide3/database/caching.html >`_
45+ layer known from CI3, so if you need to cache the result, use :doc: `../libraries/caching ` instead.
4346
4447Code Example
4548============
You can’t perform that action at this time.
0 commit comments