Software Engineering

1. Major Index

1.1. Dependencies

Given a Dependency Relationship, like:

  • A -> B -> C

    (depends-on A
                (depends-on B
                            C))
    
  • with "->" signifying "depends on" ..
  • upstream and downstream helps relatively address dependencies.
  • A is an upstream dependency of B
  • B is an upstream dependency of C
  • A is a transitive upstream dependency of C
  • A (C) is the most (least) upstream dependency
  • C (A) is the most (least) downstream dependency

1.4. Environments

1.5. The Twelve Factor App

2. Patterns Index

2.1. The Circuit Breaker

Tags::meta:programming: