Insha Ramininshaweb.hashnode.net·Sep 8, 2021SQL & NoSQL Friendly Database- HarperDBHey Readers 👋 In this article we'll be exploring the database that is designed to handle most workloads, eliminating the need for multiple products. Okay, this sounds exciting, right? Let's meet the fastest & most flexible database on the market tha...163 likes·1.1K readsDatabases
Mario Costanormalzao.hashnode.net·Jun 11, 2021FeaturedMongoDB - Tips Beyond ORMsFor those who only have a hammer as a tool, all problems look like nails. - Mark Twain. Using the tool properly I don't see any problem in using an ORM with MongoDB, in fact I always use it, but the problem I see in internet tutorials and in places ...103 likes·543 readsMongoDB
Shad Mirzaiamshadmirza.hashnode.net·Aug 7, 2020FeaturedMongoDB Simplified Part 1: What, Why, and How?This is the first article of series MongoDB Simplified which will cover all the basics of MongoDB. I will try to keep things as simple as possible. We will start from understanding What is MongoDB?, How does it work?, Pros and Cons?, How to set up on...92 likes·1.1K reads MongoDB SimplifiedMongoDB
Dominik Kellerfive.hashnode.net·Apr 24, 2023When To Use SQL vs NoSQL: An Expert Guide to DatabasesGiven the plethora of database options, how do you decide which type of database is best for your application? Are you going to go for a SQL (relational) or a NoSQL (non-relational) database? As developers, the choice is ours. And the success of a pr...SQL
CHAO DUchaodu.hashnode.net·Apr 19, 2023Jumpstarting Your Journey: An Introduction to Redis FundamentalsRedis, short for Remote Dictionary Server, is a lightning-fast, open-source, in-memory data structure store. It is often used as a database, cache, and message broker, known for its exceptional performance and flexibility. Redis supports a wide varie...backend
Harsh Mangeharshmange.hashnode.net·Apr 18, 2023What is NoSQL, and when should you use it over a relational database?NoSQL (Not Only SQL) is a type of database management system that is designed to handle large volumes of unstructured or semi-structured data. Unlike traditional relational databases, NoSQL databases do not rely on a fixed schema or tabular data stru...Databases
Harsh Mangeharshmange.hashnode.net·Apr 18, 2023SQL vs NoSQL: Choosing the Right Database for Your NeedsThe decision to use SQL or NoSQL database depends on several factors, including the nature of the data you are working with, the scalability and performance requirements of your application, and the development team's familiarity with each technology...Databases
Peter Aidelojepeteraideloje.hashnode.net·Apr 18, 2023Why MongoDB??Mongo DB is a No SQL document-based database language. It is open-source and very suitable for high data storage. It was founded in 2007 and has been improved to meet several business objectives. It uses an unstructured query language and a document-...MongoDB
Uka David Tobechukwucodeplater.hashnode.net·Apr 13, 2023An Introductory Guide to Schema Design and Data Organization in Relational and Document-Based DatabasesIntroduction Databases are a fundamental component of modern software applications, used for storing, retrieving, and managing data efficiently. There are different types of databases, including relational databases and document-based databases, each...10 likesDatabases
Lens Mutombolenscorpx.hashnode.net·Apr 4, 2023A Comprehensive Guide for Software Engineers: Deciding When to Use Relational Databases or NoSQL DatabasesIntroduction Software engineers are tasked with making decisions about which type of database to use for their projects. While both relational databases and NoSQL databases have their advantages, it is important to understand the differences between ...7 likes·96 readsDatabases
Sōliha Owolabicodejunkie.hashnode.net·Mar 30, 2023Steps In Making Image Upload With Html, Css, Javascript, And Nosql.To allow users to upload images using HTML, CSS, JavaScript and NoSQL, you can follow the following steps: Create an HTML form with an input element of type "file" to allow users to select and upload their image: <form> <input type="file" name="image...NoSQL
Tony Tangtonytangdev.hashnode.net·Mar 19, 2023DynamoDB: The High-Octane Racing Car of the Database WorldIntroduction When it comes to explaining DynamoDB, a NoSQL database service provided by Amazon Web Services (AWS), it's helpful to use a familiar analogy. Imagine a high-performance racing car that is built for speed, endurance, and reliability. In t...5 likes·28 readsAWS
Saptarshi Bhattacharyahighonbugs.hashnode.net·Mar 17, 2023Introduction to MongoDB - Part 1MongoDB is a popular NoSQL document database that stores data in flexible, JSON-like documents. Unlike traditional SQL databases, MongoDB does not require a predefined schema, making it easier to store and query data of varying types and structures. ...MongoDB