Please enable JavaScript.
Coggle requires JavaScript to display documents.
System Design - Coggle Diagram
System Design
Key Characteristics
-
-
-
Efficiency
How good the system performs its tasks (resources, times).
-
Data Partitioning
-
Partitioning Methods
-
Vertical Partitioning
Store tables related to specific features in dedicated database servers (contacts, photos, user info).
-
-
Problems
-
Referential Integrity
Enforcing data integrity constrains such as foreign keys can be extremely difficult in partitioned databases.
-
Load Balancing
Benefits
Faster, uninterrupted service
-
-
-
-
-
Indexes
Boosts performance by creating a pointer table which sorts rows of the indicated column increasing search response.
-
-
-