-
I was wondering if there would be an ORM support for nosql databases like mongodb? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @shoebsd31, our backends mostly use We only head to specialized NoSQL databases if we have actual requirements for them (<5% of our projects, e.g. time-series, caching) and most of the times, there are better alternative for those than MongoDB (e.g. redis for caching, ClickHouse / TimescaleDB for time-series). To sum it up, we don't plan to include any dedicated NoSQL database adapters here. Mario |
Beta Was this translation helpful? Give feedback.
Hi @shoebsd31,
our backends mostly use
JSON
orJSONB
data types for typical NoSQL use-cases, see PostgreSQL JSON Types.We only head to specialized NoSQL databases if we have actual requirements for them (<5% of our projects, e.g. time-series, caching) and most of the times, there are better alternative for those than MongoDB (e.g. redis for caching, ClickHouse / TimescaleDB for time-series).
To sum it up, we don't plan to include any dedicated NoSQL database adapters here.
Mario