Skip to content

Commit

Permalink
Fixed broken link (#3551)
Browse files Browse the repository at this point in the history
  • Loading branch information
osamaqarem authored and markerikson committed Sep 1, 2019
1 parent 9c9a4d2 commit a5739d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/faq/Performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ First, only cache as much data as the user needs. If your application displays a

Second, cache an abbreviated form of a record when possible. Sometimes a record includes data that is not relevant to the user. If the application does not depend on this data, it can be omitted from the cache.

Third, only cache a single copy of a record. This is especially important when records contain copies of other records. Cache a unique copy for each record and replace each nested copy with a reference. This is called normalization. Normalization is the preferred approach to storing relational data for [several reasons](../recipes/reducers/NormalizingStateShape.md#designing-a-normalized-state), including efficient memory consumption.
Third, only cache a single copy of a record. This is especially important when records contain copies of other records. Cache a unique copy for each record and replace each nested copy with a reference. This is called normalization. Normalization is the preferred approach to storing relational data for [several reasons](../recipes/structuring-reducers/NormalizingStateShape.md#designing-a-normalized-state), including efficient memory consumption.

#### Further information

Expand Down

0 comments on commit a5739d9

Please sign in to comment.