Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 292 Bytes

File metadata and controls

9 lines (5 loc) · 292 Bytes

🍃 Flyweight

Flyweight is a structural design pattern that lets you fit more objects into the available amount of RAM by sharing common parts of state between multiple objects instead of keeping all of the data in each object.

Applicability

General structure

Example