View on GitHub

Matt's homepage

Bookmark this to keep an eye on new things I am learning.

Application architecture

Patterns, practices, and suggestions.

Return Home

Fast key:value storage

^ back to top ^

When to throttle

Throttling limits how often a function can run, regardless of how often it is called.

Examples of when to throttle are:

^ back to top ^

When to debounce

Runs a function only after the event has been quiet for a set period.

Examples of when to debounce are:

^ back to top ^