DRY

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

Don't Repeat Yourself (DRY) principle sys: "Every piece of knowledge should have a single, unambiguous, authoritative representation within a system." If you are in the position to write the second time the same behavior (copy-and-paste) that means the behavior belongs into a reusable function. Duplication forces people to make a change in multiple places, and that is not good.

Duplication Considered Useful - DRY and Coupling

The DRY principle discourages duplicating the implementation of a concept, which is not the same as duplicating literal lines of code.

Having multiple components depend on shared code can create tight coupling, making it hard to change. Also, use of shared (DRY) code between a client and a server can create tight coupling. More generically, if shared code leaks outside the component boundary, this leads to coupling. As an example, a library of common domain objects that represent the core entities in a system and that is used by all the microservices in a system can cause to have to update all services if a change is made to it. If the services communicate via messages, the message queues also have to be drained to flush out content based on the old domain model, now invalid.

When considering whether code is duplicated and should be centralized, consider whether the code truly represents the same concept. Does changing one instance of the code always mean the other instance should change as well? Also consider whether it's a good idea to lock to components into the same change cycle.

Reuse increase coupling. A good rule of thumb for reuse is to be DRY within a component, and wet across components.

The Rule of Three

The Rule of Three