Caching improvements - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=31) +--- Thread: Caching improvements (/showthread.php?tid=80727) |
Caching improvements - stevenmalin - 12-09-2021 Hello, I'm new to CodeIgniter, liking what I'm seeing so far, but some caching things are standing out to me. I'd like to create a pull request to address these things but wanted to run it by everyone else first to ensure it wouldn't be rejected in case it runs counter to what the intended approach is, or there's some other kind of consideration.
RE: Caching improvements - kenjis - 12-10-2021 All Config classes can be configurable in the .env file. See https://codeigniter4.github.io/CodeIgniter4/general/configuration.html#configuration-classes-and-environment-variables Does not work? PHP Code: REDIS_HOST = localhost RE: Caching improvements - stevenmalin - 12-10-2021 Thank you! Didn't realize that was possible but it's very helpful. I missed that in the docs. Unless there's any reason not to, I'm going to go ahead and work on cluster compatibility and using the php serializer. I think those would be helpful contributions. RE: Caching improvements - kilishan - 12-10-2021 I think cluster compatibility and the php serializer would be great additions. Thanks! We look forward to seeing the PR. RE: Caching improvements - kenjis - 12-10-2021 (12-10-2021, 08:11 AM)stevenmalin Wrote: Unless there's any reason not to, I'm going to go ahead and work on cluster compatibility and using the php serializer. I think those would be helpful contributions. Yes, those would be great contributions! RE: Caching improvements - mparker - 05-10-2023 Does anyone know if Redis cluster support was ever integrated into Codeigniter? RE: Caching improvements - kenjis - 10-05-2023 No. The PR was closed. https://github.com/codeigniter4/CodeIgniter4/pull/5519 |