We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a705f9f commit 1737584Copy full SHA for 1737584
public/index.php
@@ -48,6 +48,11 @@
48
define('ENVIRONMENT', env('CI_ENVIRONMENT', 'production'));
49
}
50
51
+// Load Config Cache
52
+// $factoriesCache = new \CodeIgniter\Cache\FactoriesCache();
53
+// $factoriesCache->load('config');
54
+// ^^^ Uncomment these lines if you want to use Config Caching.
55
+
56
/*
57
* ---------------------------------------------------------------
58
* GRAB OUR CODEIGNITER INSTANCE
@@ -73,6 +78,10 @@
73
78
74
79
$app->run();
75
80
81
+// Save Config Cache
82
+// $factoriesCache->save('config');
83
+// ^^^ Uncomment this line if you want to use Config Caching.
84
76
85
// Exits the application, setting the exit code for CLI-based applications
77
86
// that might be watching.
87
exit(EXIT_SUCCESS);
0 commit comments