TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Lessons from My Mistakes: Start with MySQL

1 pointsby philondrejackalmost 8 years ago

1 comment

al2o3cralmost 8 years ago
+1 to premise of the title, but these specific reasons don&#x27;t hold much water.<p>* &quot;no tooling&quot;: searching Google for &quot;mongodb ui&quot; turns up - even before the organic results - three PAID results for different tools. I&#x27;d suspect you&#x27;d see similar results for most any reasonably popular NoSQL option.<p>* table scans: table scans can be expensive in both approaches. You&#x27;ll get <i>exactly</i> the same performance problems doing the queries described against a SQL database; the number of records required to be considered &quot;a lot&quot; may be different. The fix is similar in both: indexing.