Skip to content

Commit

Permalink
Fix link.
Browse files Browse the repository at this point in the history
Closes #3240
  • Loading branch information
timdorr authored Dec 7, 2018
1 parent 17a1409 commit 71e458d
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 @@ -149,7 +149,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](/docs/recipes/reducers/NormalizingStateShape.html#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](/docs/recipes/reducers/NormalizingStateShape.md#designing-a-normalized-state), including efficient memory consumption.

#### Further information

Expand Down

0 comments on commit 71e458d

Please sign in to comment.