Determines if the Redis extension has been installed and that there is a redis-server available

Returns

boolean Returns `true` if the Redis extension is enabled, `false` otherwise.

Source

						public static function enabled() {
		return extension_loaded('redis');
	}