Administrator
|
These are different technologies.
For instance, Oracle is a RDBMS but Mongodb is a document oriented NoSQL database.
So, in this kind of an environment, you can't compare apple to apple (in terms of query performance).
However; you can built solutions, built your design according to the standard of the related technology and then access your data using the technics that are provided by those techonologies and compare your access times.
SQL performance is important, but consistency is important too. Actually, the things that matter depend on your requirements and scenarios.
The type of the data, the access method, pattern, frequency and concurreny, the application that sits on top of the database are some of the things that you need to consider while comparing the databases and choosing the right one.
So keep these in mind and approach the subject accordingly.
|