Skip to content

Instantly share code, notes, and snippets.

@EliFuzz
EliFuzz / Common Problems and Solutions: Monolithic deployment.md
Created July 19, 2023 05:18
Common Problems and Solutions: Monolithic deployment
Problem Explanation Solution
Hard to manage Monolithic deployments can become too large and complex to manage over time refactor your application into smaller modules or components that can be deployed independently
Performance Monolithic deployments can suffer from poor performance or availability issues due to high load or failure of a singl
@EliFuzz
EliFuzz / Pros & Cons: Monolithic deployment.md
Created July 19, 2023 05:24
Pros & Cons: Monolithic deployment
Pros Cons
Easy to develop, test and deploy: only needs to deal with one codebase, one build process and one deployment process Lack of modularity and flexibility: You cannot easily change or update a part of the application without a
@EliFuzz
EliFuzz / Pros & Cons: Microservices deployment.md
Created July 19, 2023 05:27
Pros & Cons: Microservices deployment
Pros Cons
High modularity and flexibility: can easily change or update a service without affecting other servi
@EliFuzz
EliFuzz / Pros & Cons: Serverless deployment.md
Created July 19, 2023 05:31
Pros & Cons: Serverless deployment
Pros Cons
@EliFuzz
EliFuzz / Common Problems and Solutions: Microservices deployment.md
Created July 19, 2023 05:39
Common Problems and Solutions: Microservices deployment

| Problem | Explanation | Solution | | ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

@EliFuzz
EliFuzz / Best Practicies: Monolithic deployment.md
Created July 19, 2023 05:51
Best Practicies: Monolithic deployment
Best Practice Description
Modular archit
@EliFuzz
EliFuzz / Common deployment patterns for microservices.md
Created July 19, 2023 05:56
Common deployment patterns for microservices
Deployment pattern Description
Single service per h
@EliFuzz
EliFuzz / Pros & Cons: Feature toggle deployment.md
Created July 19, 2023 06:07
Pros & Cons: Feature toggle deployment

| Pros | Cons | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

@EliFuzz
EliFuzz / Best Practicies: Feature toggle deployment.md
Created July 19, 2023 06:12
Best Practicies: Feature toggle deployment
Best Practice Description
Feature toggle service Use a dedicated feature toggle service instead of implementing your own feature toggle logic or storing your feature toggle state in your code or configuration files. This will simplify your code, improve your performance, and increase your reliability and security
Deature toggle client Use a feature to
@EliFuzz
EliFuzz / Common Problems and Solutions: Feature toggle deployment.md
Created July 19, 2023 06:17
Common Problems and Solutions: Feature toggle deployment
Problem Explanation Solution
Feature toggle d