For a project that requires a lot of requests to a database, which one would be the best, and what are the differences between them?
For further actions, you may consider blocking this person and/or reporting abuse
For a project that requires a lot of requests to a database, which one would be the best, and what are the differences between them?
For further actions, you may consider blocking this person and/or reporting abuse
π New to DEV? Head over to our Welcome Thread and tell us what you're working on!
Ben Halpern -
Sloan the DEV Moderator -
Andreas RiedmΓΌller -
Heloisa Moraes -
Once suspended, thomasbnt will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, thomasbnt will be able to comment and publish posts again.
Once unpublished, all posts by thomasbnt will become hidden and only accessible to themselves.
If thomasbnt is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Thomas Bnt.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community π©βπ»π¨βπ» safe. Here is what you can do to flag thomasbnt:
Unflagging thomasbnt will restore default visibility to their posts.
Top comments (5)
Databases are designed to handle "a lot of requests". Your data model is the most important determinant of what database to use, not your throughput, and if you don't have any reasons not to stick with a relational database, the answer is probably Postgres. If your needs diverge from the relational model, this is a good starting point for your research into NoSQL offerings.
I guess it depends what a lot means.
I would err on the side of not overthinking this. Most mainstream databases are pretty damn good at what they do.
Weβve been more than happy with PostgreSQL.
DBMS software (Database management system) is the software that manages a database. Though with different names (Microsoft, Oracle, MySQL, IBM DB2, Sybase). Get the best dbms software in the industry from us. compare price, reviews etc at one place.
As the others have mentioned, you'll be safe picking any of the four big relational databases (Oracle, MySQL, MS SQL, PostgreSQL). It's worth noting that, if you've really picked the wrong one, it's relatively easy to switch. With NoSQL, this is a bit harder as even with similar database models, there's often no shared query language.
A database is a collection of data or records. Database management systems are designed to work with data. Sometimes referred to as database management systems (DBMS), database software tools are primarily used for storing, modifying, extracting, and searching for information within a database.
Credit : Cogxim Technologies