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.

No-SQL databases are glorified caches

45 pointsby hernantzabout 4 years ago

5 comments

vaughanabout 4 years ago
It&#x27;s surprising that graph dbs aren&#x27;t more popular.<p>Just as document dbs can be derived&#x2F;denormalized from SQL dbs, relational dbs can be derived from a graph.<p>Conceptually, data is a graph.<p>I always find the decision between 1-M and M-M is so sticky with RDBMS, and with a graph, it can be whatever you want it to be.
评论 #26951948 未加载
评论 #26947173 未加载
评论 #26955165 未加载
noofenabout 4 years ago
RAM is a cache for the disk. Disk is a cache for the network.
评论 #26952335 未加载
评论 #26951495 未加载
nine_kabout 4 years ago
Caches are fleeting. Databases are durable. This is one distinction. Caches return a value by association. Databases usually allow for range and aggregate operations on many values. This is another distinction.<p>Also, &quot;no-SQL databases&quot; is like &quot;non-green colors&quot;; it encompasses a much larger spectrum than it excludes. Putting graph databases, local KV stores, distributed KV stores, document stores, time-series stores, etc in the same basket just because they are not RDBMSes is not very productive.
评论 #26951677 未加载
j16sdizabout 4 years ago
I think the no-sql vs sql war have ended already. Most of us now know what they can or cannot do.<p>Nothing new or interesting in this article.
评论 #26946305 未加载
评论 #26948275 未加载
stevefan1999about 4 years ago
and caches are glorified LRU based, key-value associated data structure with persistent storage to track data states