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.

PolyScale and ClickHouse Materialized Views

42 pointsby mvcalderalmost 3 years ago

2 comments

erikpukinskisalmost 3 years ago
I would love to see more databases support something like this. “Live queries” kind of thing.<p>“Modern” app development today usually presumes some element of “live updates” or “multiplayer” functionality. It’s usually handled only partially, in the app layer, with a good amount of spaghetti.<p>But the database to me seems like the place where this should happen. I should be able to<p><pre><code> SELECT * FROM projects WHERE owner_id=x ORDER BY name desc LIMIT 20 OFFSET 60; </code></pre> and then I should be able to subscribe to any changes to that query.<p>I should be able to have thousands of these subscriptions open at a time.<p>And ideally I should be able to get an efficient diff rather than a new result. Although a new result would be a great start.<p>I’m not sure why this isn’t seen as table stakes for databases in 2022. It seems like such a fundamental challenge of distributed application development.
评论 #32636093 未加载
评论 #32497377 未加载
评论 #32498919 未加载
评论 #32497429 未加载
评论 #32499771 未加载
评论 #32498171 未加载
data_dersalmost 3 years ago
Potentially ignorant question: who is the intended persona for this product? Is this for people that are serving &quot;data products&quot; to end users but don&#x27;t want to own and manually configure their caching layer? And the product is magic provided by some automated rollup tables and materialized views based off of the data it sees being used to most? Maybe I&#x27;m overthinking..
评论 #32497953 未加载