langleyfoxall / laravel-boilerplate

Boilerplate for Laravel with common tools/plugins for ease of development.
MIT License
2 stars 4 forks source link

Prefix redis database connection #26

Closed DivineOmega closed 5 years ago

DivineOmega commented 5 years ago

We should implement the same change that I have suggested to Laravel core in the following PR.

https://github.com/laravel/laravel/pull/4982

This will mitigate multiple sites on the same server potentially sharing the same queued jobs.

DivineOmega commented 5 years ago

This Laravel core PR has been merged by Taylor, so we're safe to replicate this in our boilerplate.

DivineOmega commented 5 years ago

After related changes suggested by various other Laravel devs, I submitted another PR to Laravel core which has been merged. We should update the boilerplate to also include the changes it implements.

https://github.com/laravel/laravel/pull/4986

DivineOmega commented 5 years ago

And another: https://github.com/laravel/laravel/pull/4987