Brian KingProsolodev.app·Dec 1, 2023Installing Docker.Docker is a container system. The main advantages of using Docker include: The isolation of running processes, The ease of creating new instances, Fast deployments, and Fast migrations. Prerequisites. A Linux-based distro (I use Ubuntu). Inst...DiscussThe Snippets SeriesPortability
pengwei songqtmuniao.hashnode.dev·Sep 23, 2023Step by step, dissecting the most challenging parts of the database transaction — IsolationWhen it comes to database transactions, most people's first reaction is often ACID. However, the importance and complexity of the four attributes are not equivalent. The most challenging aspect to comprehend is Isolation (I). One primary reason for t...Discussisolation
Raul NaupariProblog.raulnq.com·Sep 11, 2023Understanding Acceptance TestingThe following article presents my understanding of the concepts discussed by Dave Farley regarding Acceptance Testing, aiming to address questions such as: How do we fail fast? How do we make our testing scalable? Are we ready to release? Please...Discuss·54 readsTesting
Krishnaraj Venkatesankrishnaraj.hashnode.dev·Jul 20, 2023Database Transaction Isolation LevelsIn the world of application development, ensuring data integrity and reliability is paramount. One critical aspect of this is understanding database transactions and isolation levels. In this blog post, we'll delve into what a database transaction is...Discuss·1 like·39 readsDatabases
MemgraphforMemgraphmemgraph.hashnode.dev·Jun 21, 2023ACID Transactions: What’s the Meaning of Isolation Levels for Your ApplicationDatabase ACID transactions form the foundational basis of databases. They ensure data integrity by applying appropriate isolation levels in multi-user scenarios. In this article, we will explore the potential impact they can have on your application....DiscussDatabases
Amr Elhewyhewi.blog·Jun 4, 2022Designing Data Intensive Applications CH 7 - Part II 'Weak Isolation Levels'Welcome again to the second part of chapter 7 in Designing Data-Intensive Applications where we discuss isolation levels and different problems that can occur and their possible solutions. Transactions can safely run in parallel if they don't touch t...Discuss·2 likes·73 readsDatabases