Is it necessary to check if Redis Cache Connection is available
I'm planning to deploy my app on AWS and an important part of my configuration is the Redis Cache (through AWS ElasticCache).
I'm wondering if it's necessary to check if the Redis connection is available just before I access the cache or Laravel automatically falls back to the database?
@Helmchen - I'd expect the ElasticCache server to be available 99.99% of the time; but just in case the connection is refused; I need to have a fallback.
Better - is it possible to switch over to the default file based cache if Redis is not available?