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.

Ask HN: A hacker news like site in go which database would you use?

2 pointsby pvsukale1almost 9 years ago

2 comments

DanielStraightalmost 9 years ago
Hacker News doesn&#x27;t do anything nearly database intensive enough for it to matter much.<p>I would suggest defaulting to PostgreSQL for all database needs unless you have a specific reason to use something else. It is well supported on most platforms, under very active development, and has exceptional documentation.
brudgersalmost 9 years ago
My understanding is that Hacker News does not use a database or rather it does not use a DBMS [database management system] at all. Instead it uses the OS file system and each item lives in its own file. It might be described as &quot;flatfile&quot; and &quot;NoSQL&quot; but that sort of layers an additional layer of formality on top of the simple *NIX idea that &quot;everything is a file.&quot;<p>Anyway, until a few years ago, every item was had its own file and all the files were in one directory. But it got to the point that performance could not keep up with rising page views and Paul Graham reorganized all the items lexicographically into a file hierarchy base on item number to improve performance. But that optimization wasn&#x27;t done until it created a problem.<p>It might be an interesting exercise to try to come up with reasons why an DBMS would be a better alternative to files for Hacker News.<p>Good luck.