Hacker News new | past | comments | ask | show | jobs | submit login

Clickhouse is not in memory.



ClickHouse has a table engine for keeping data in memory. Can be accessed like this

create table tableName (.....) Engine = Memory();


But it's not necessary to keep data in Memory, because MergeTree works perfectly.

Here is a slide deck showing why MergeTree is faster than in-memory tables: https://presentations.clickhouse.com/meetup53/optimizations/


The comparison is done with the in-memory table doing full scan while MergeTree using an index. Kind of meaningless comparison.


Soooo did they just implement in memory store worse ?


It's a database




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: