SQL vs MongoDB
#1202
Replies: 1 comment 6 replies
-
We need an embedded DB. There are a lot of embedded NoSQL db options and I fully implemented acebase at one point but it was way too slow. We don't need all of those features and they are only making things slower. If we could find an embedded NoSQL db it would be easier to migrate to but SQLLite is the most widely used and stable option. I know MongoDB has the option to be embedded and I haven't done much research on that but I would guess it wouldn't perform as well as a db designed to be embedded. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I saw that the current DB is written in njodb. And it is mentioned in several issues that there is a transformation planned for SQLite.
Is it worthwhile to consider MongoDB? Since MongoDB is NOSQL, just like njodb, would that make the transformation easier?
Also, for SQL, PostgreSQL might perform better than SQLite. Would it be a worthwhile candidate?
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions