-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge t pushbranch 'master' of https://github.com/gabrielanhaia/larav…
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
[![Build Status](https://travis-ci.com/gabrielanhaia/laravel-circuit-breaker.svg?branch=master)](https://travis-ci.com/gabrielanhaia/laravel-circuit-breaker) | ||
![Licence](https://img.shields.io/badge/licence-MIT-green) | ||
![Code Coverage](https://img.shields.io/badge/coverage-100%25-green) | ||
![Licence](https://img.shields.io/badge/licence-MIT-blue) | ||
![Package Stars](https://img.shields.io/badge/stars-%E2%98%85%E2%98%85%E2%98%85%E2%98%85%E2%98%85-yellow) | ||
![Packagist Downloads](https://img.shields.io/github/downloads/gabrielanhaia/php-circuit-breaker/total) | ||
![Packagist Downloads](https://img.shields.io/packagist/dt/gabrielanhaia/php-circuit-breaker) | ||
|
||
## Under development | ||
# PHP Circuit Breaker | ||
|
||
PHP Circuit Breaker was developed based on the book "Release It!: Design and Deploy Production-Ready Software (Pragmatic Programmers)", written by Michael T. Nygard. | ||
In this book, Michael popularized the Circuit Breaker. | ||
|
||
When we work with microservices, it is sometimes common to call these systems, and they are not available, which ends up causing problems in our application. To prevent any problem on our side, and guarantee that a service will not be called loads of times, we should use a Circuit Breaker. | ||
|
||
You can find more information about Circuit Breakers [here](https://martinfowler.com/bliki/CircuitBreaker.html). | ||
|
||
|