Hacker News new | ask | show | jobs
by Amezarak 3232 days ago
At least in my experience, joins in 100s of GB databases are not a performance problem. I've always been somewhat baffled by the claims I see pretty regularly that joins are a major performance concern. Was this a big deal in the past?
1 comments

Was this a big deal in the past?

In MySQL, yes. It lacked the concept of foreign keys.

Lack of foreign keys does not effect performance.

In fact, having foreign keys is a net-negative performance-wise because it means that each foreign key must be checked for every insert/update/delete.

Foreign keys can improve performance, in some cases:

https://stackoverflow.com/a/8154375/533120

Errm, we're talking about performance of joins
Joins will use the regular index matching it against the join condition just like a where clause would.
They don't help with that either.
Perhaps parent is conflating indexes with constraints? I believe InnoDB creates indexes automatically with foreign keys.