Cognitive Scaffold

Preparing your thinking workspace

arrow_back_ios_new
MENTAL MODEL · M7355

Flyweight Pattern

Flyweight Pattern
BusinessHigh supportManagement
Included
account_tree

Version 1.0.0 · Updated 2026-07-30

CORE DEFINITION

A design pattern that reduces memory usage by sharing as much data as possible. It divides object state into intrinsic state (shareable) and extrinsic state (non-shareable).

SCAFFOLDING EFFECT

psychology

Reduce cognitive load

Optimize resource allocation. When dealing with a large number of similar tasks or objects, extract the invariant 'common denominator' for reuse, and handle only the differences separately to reduce system load.

anchor

Anchor fast decisions

Reduce memory/resource usage by sharing the common parts of a large number of fine-grained objects, replacing repetition with sharing.

MINIMUM ACTION

In progress 0/1

Practice this model in one real situation:

Check to track your progress (stored locally)
Learning progress0%
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more

Source support: Explicit

  • link
    en.wikipedia.orghttps://en.wikipedia.org/wiki/Flyweight_patternZH · Explicit
    verified

RELATED MODELS