Symfony cache redis adapter with username and password

Recently started a new project that uses Doctrine and symfony cache. For symfony cache I always strongly prefer phpredis with igbinary marshalling. One issue I ran into was that my redis server is configured to use username and password while symfony cache redis adapter docs didn’t cover this scenario at the time of writing, unless … Read more

Doctrine cli with multiple databases

When adding doctrine orm into your project – there is a cli commands present that allows you to do some operations, such as clear cache or update database schema from entities code etc. While typical instruction from doctrine docs talk about adding cli-config.php file into project root and then using vendor/bin/doctrine script – I find … Read more