© 2023 Hashnode
#database
In the world of web development, a robust backend is crucial for delivering a high-quality user experience. One popular approach for building backends is by using RESTful APIs, which enable clients to…
Introduction REST API and GraphQL are two popular ways to build APIs. REST API is a more traditional approach, while GraphQL is a newer, more flexible option. In this blog post, we will compare and co…
When working with MongoDB, it is crucial to grasp the concept of database denormalization and the potential benefits it offers. Denormalization involves consolidating and duplicating data across colle…
With the release on Tuesday (May 16, 2023) of version 23.1 of CockroachDB, we all get an unanticipated treat: PostgreSQL-compatible full-text indexing and search! As usual, the CockroachDB docs do a fine job of describing this; they are her…
Firestore is a database service that allows you to store and manage data in the cloud. It is a NoSQL database, which means that it does not use a traditional SQL relational database structure. Instead…
As technology evolves, so does our need for better and more efficient ways to store and access data. Vector databases, also known as vectorized databases, have become a popular choice for businesses and organizations that rely heavily on bi…
This post is a catalogue of (almost) every single error I fought through while following along the Week 5 tutorial lecture to implement the chat room functions using DynamoDB. The errors are listed in chronological order, so it is possible…
Summary: From 2: PM - 4:00 PM UTC, requests to our cloud-based software system returned 500 error response messages, resulting in an interruption of services for several hours for 70% of our clients. …
To implement, here's a quick overview of the IDENTITY property. When most developers create primary keys. They do something like this: CREATE TABLE Employees ( Id INT PRIMARY KEY, FirstName V…
Blog Link There is no hard stated architecture for database system and each system has customizations to suit the use case that they have been optimized for. However, almost all the database system fo…