I would like a comparison table where I could see the difference between completely different DB types.
I may be incorrect to desire it because all DB types have different nature but I'm interested in only aspects like latency and RPS for CRUD operations for: PostgreSQL (RDBMS), Clickhouse (time-series), Radis (key-value), MongoDB (document), Neo4j (graph).
Does it make sense to continue looking?
I am not sure that it is correct to compare document database (MongoDb), relational database and other types of databases.
Because these types of databases have various goals and under the hood have different data structures. What I mean is this:
So it seems that your question can be asked in another way like this what the differences are between data structures.
In addition, you can read this great article about MongoDB vs PostgreSQL: A Comparison in Brief.
UPDATE:
These numbers varies because foreign keys, key constraints, indexes, query plans, table locks and also hardware play crucial role in performance. However, ClickHouse does not lock tables. Read more about ClickHouse vs PostgreSQL