tranlated more sessions

pull/760/head
valdemar.barros 2023-03-29 21:46:09 -03:00
parent 5f80c6e361
commit e12c7b083f
1 changed files with 56 additions and 56 deletions

View File

@ -50,73 +50,73 @@ Assuntos adicionais sobre a preparação para a entrevista:
<br/> <br/>
</p> </p>
The provided [Anki flashcard decks](https://apps.ankiweb.net/) use spaced repetition to help you retain key system design concepts. O provedor [Anki flashcard decks](https://apps.ankiweb.net/) usa repetição espaçada para você a reter os conceitos-chave de system design.
* [System design deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design.apkg) * [System design deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design.apkg)
* [System design exercises deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design%20Exercises.apkg) * [Deck de exercícios sobre System design](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design%20Exercises.apkg)
* [Object oriented design exercises deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/OO%20Design.apkg) * [Deck de exercícios de Design orientado a objeto](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/OO%20Design.apkg)
Great for use while on-the-go. Excelete para utilizar em qualquer lugar que você vá.
### Coding Resource: Interactive Coding Challenges ### Recursos de código: desafios de código interativo
Looking for resources to help you prep for the [**Coding Interview**](https://github.com/donnemartin/interactive-coding-challenges)? Procurando por recursos para ajudar você a se preparar para a [**entrevista utilizando código**](https://github.com/donnemartin/interactive-coding-challenges)?
<p align="center"> <p align="center">
<img src="images/b4YtAEN.png"> <img src="images/b4YtAEN.png">
<br/> <br/>
</p> </p>
Check out the sister repo [**Interactive Coding Challenges**](https://github.com/donnemartin/interactive-coding-challenges), which contains an additional Anki deck: Olhe também esse repositório sobre [**Desafios de Código Interativo**](https://github.com/donnemartin/interactive-coding-challenges), que contém decks Anki adicionais:
* [Coding deck](https://github.com/donnemartin/interactive-coding-challenges/tree/master/anki_cards/Coding.apkg) * [Coding deck](https://github.com/donnemartin/interactive-coding-challenges/tree/master/anki_cards/Coding.apkg)
## Contributing ## Contribuíção
> Learn from the community. > Aprenda com a comunidade.
Feel free to submit pull requests to help: Fique à vontade para submeter um pull request para ajudar:
* Fix errors * Corrigir erros
* Improve sections * Melhorar as sessções
* Add new sections * Adicionar novas sessões
* [Translate](https://github.com/donnemartin/system-design-primer/issues/28) * [Traduzir](https://github.com/donnemartin/system-design-primer/issues/28)
Content that needs some polishing is placed [under development](#under-development). Conteúdo que precise de algum polimento é colocado [em desenvolvimento](#under-development).
Review the [Contributing Guidelines](CONTRIBUTING.md). Revise as [Diretrizes de contribuição](CONTRIBUTING.md).
## Index of system design topics ## Índices dos assuntos sobre system design
> Summaries of various system design topics, including pros and cons. **Everything is a trade-off**. > Resumos de vários tópicos sobre system design, incluíndo prós e contras. **Tudo é uma troca(trade-off)**.
> >
> Each section contains links to more in-depth resources. > Cara sessão contém links para assuntos mais detalhados.
<p align="center"> <p align="center">
<img src="images/jrUBAF7.png"> <img src="images/jrUBAF7.png">
<br/> <br/>
</p> </p>
* [System design topics: start here](#system-design-topics-start-here) * [Tópicos sobre System design: Comece aqui](#system-design-topics-start-here)
* [Step 1: Review the scalability video lecture](#step-1-review-the-scalability-video-lecture) * [Passo 1: Analise a palestre sobre escalabilidade](#step-1-review-the-scalability-video-lecture)
* [Step 2: Review the scalability article](#step-2-review-the-scalability-article) * [Passo 2: Analise o artigo sobre escalabilidade](#step-2-review-the-scalability-article)
* [Next steps](#next-steps) * [Próximos passos](#next-steps)
* [Performance vs scalability](#performance-vs-scalability) * [Performance vs escalabilidade](#performance-vs-scalability)
* [Latency vs throughput](#latency-vs-throughput) * [Latência vs throughput](#latency-vs-throughput)
* [Availability vs consistency](#availability-vs-consistency) * [Disponibilidade vs consistência](#availability-vs-consistency)
* [CAP theorem](#cap-theorem) * [Teorema de CAP](#cap-theorem)
* [CP - consistency and partition tolerance](#cp---consistency-and-partition-tolerance) * [CP - Consistência e tolerância particionada](#cp---consistency-and-partition-tolerance)
* [AP - availability and partition tolerance](#ap---availability-and-partition-tolerance) * [AP - Disponibilidade e tolerância particionada](#ap---availability-and-partition-tolerance)
* [Consistency patterns](#consistency-patterns) * [Padrões de consistência](#consistency-patterns)
* [Weak consistency](#weak-consistency) * [Consistência fraca](#weak-consistency)
* [Eventual consistency](#eventual-consistency) * [Consistência eventual](#eventual-consistency)
* [Strong consistency](#strong-consistency) * [Consistência forte](#strong-consistency)
* [Availability patterns](#availability-patterns) * [Padrões de Disponibilidade](#availability-patterns)
* [Fail-over](#fail-over) * [Fail-over](#fail-over)
* [Replication](#replication) * [Replicas](#replication)
* [Availability in numbers](#availability-in-numbers) * [Disponibilidade em números](#availability-in-numbers)
* [Domain name system](#domain-name-system) * [Ssitema de nome de Domínio](#domain-name-system)
* [Content delivery network](#content-delivery-network) * [Rede de entrega de conteúdo](#content-delivery-network)
* [Push CDNs](#push-cdns) * [Push CDNs](#push-cdns)
* [Pull CDNs](#pull-cdns) * [Pull CDNs](#pull-cdns)
* [Load balancer](#load-balancer) * [Load balancer](#load-balancer)
@ -124,32 +124,32 @@ Review the [Contributing Guidelines](CONTRIBUTING.md).
* [Active-active](#active-active) * [Active-active](#active-active)
* [Layer 4 load balancing](#layer-4-load-balancing) * [Layer 4 load balancing](#layer-4-load-balancing)
* [Layer 7 load balancing](#layer-7-load-balancing) * [Layer 7 load balancing](#layer-7-load-balancing)
* [Horizontal scaling](#horizontal-scaling) * [Escalabilidade Horizontal](#horizontal-scaling)
* [Reverse proxy (web server)](#reverse-proxy-web-server) * [Proxy reverso(web server)](#reverse-proxy-web-server)
* [Load balancer vs reverse proxy](#load-balancer-vs-reverse-proxy) * [Load balancer vs proxy reverso](#load-balancer-vs-reverse-proxy)
* [Application layer](#application-layer) * [Camada da Aplicação](#application-layer)
* [Microservices](#microservices) * [Microservices](#microservices)
* [Service discovery](#service-discovery) * [Service discovery](#service-discovery)
* [Database](#database) * [Banco de Dados](#database)
* [Relational database management system (RDBMS)](#relational-database-management-system-rdbms) * [Sistema de gerenciamento de Banco de dados relacional(RDBMS)](#relational-database-management-system-rdbms)
* [Master-slave replication](#master-slave-replication) * [Replicas Master-slave](#master-slave-replication)
* [Master-master replication](#master-master-replication) * [Replicas Master-master](#master-master-replication)
* [Federation](#federation) * [Federation](#federation)
* [Sharding](#sharding) * [Sharding](#sharding)
* [Denormalization](#denormalization) * [Desnormalização](#denormalization)
* [SQL tuning](#sql-tuning) * [SQL tuning](#sql-tuning)
* [NoSQL](#nosql) * [NoSQL](#nosql)
* [Key-value store](#key-value-store) * [Armazenamento chave-valor](#key-value-store)
* [Document store](#document-store) * [Armazenamento de Documento](#document-store)
* [Wide column store](#wide-column-store) * [Wide column store](#wide-column-store)
* [Graph Database](#graph-database) * [Banco de dados em Graph](#graph-database)
* [SQL or NoSQL](#sql-or-nosql) * [SQL ou NoSQL](#sql-or-nosql)
* [Cache](#cache) * [Cache](#cache)
* [Client caching](#client-caching) * [Cliente de caching](#client-caching)
* [CDN caching](#cdn-caching) * [Cache CDN](#cdn-caching)
* [Web server caching](#web-server-caching) * [Cache Web server](#web-server-caching)
* [Database caching](#database-caching) * [Cache de banco de dados](#database-caching)
* [Application caching](#application-caching) * [Cache de Aplicação](#application-caching)
* [Caching at the database query level](#caching-at-the-database-query-level) * [Caching at the database query level](#caching-at-the-database-query-level)
* [Caching at the object level](#caching-at-the-object-level) * [Caching at the object level](#caching-at-the-object-level)
* [When to update the cache](#when-to-update-the-cache) * [When to update the cache](#when-to-update-the-cache)