Abhinav Prakashabhinav-beepp.hashnode.dev·Jul 20, 2024Day 4 Tutorial: Building Your Virtual MachineOverview Let's say you want to create a Virtual Machine on AWS i.e. EC2 Instance. A virtual machine in AWS terms is called as a EC2 Instance. Now, for creating a EC2 instance from your personal laptop you need to navigate to the AWS Console and make ...32 readsDevOps Zero to Heroec2
sathwikreddy GVsathwikreddygv.blog·Jul 6, 2024Building my own Redis in Go - Part 2In part 1 of this blog series, we discussed how to create a TCP server in Go and parse the Redis Serialization Protocol (RESP). Please check out that blog here. In this blog, I'm going to discuss how the commands are executed after parsing RESP. We w...54 readsRedis
Hemant Besracodeinjava.hashnode.dev·Sep 30, 2023An In-depth Guide to the Map InterfaceThe Map interface is a fundamental part of the Java Collections Framework and is used to represent a collection of key-value pairs, where each unique key is associated with a value. It provides a way to store, retrieve, and manipulate data in a struc...38 readsCollectionmap
MemgraphforMemgraphmemgraph.hashnode.dev·Aug 3, 2023What is a Key-Value Database?In the landscape of data management solutions, key-value databases stand apart, offering a unique blend of simplicity and performance tailored to the big data era. By abstracting data into simple key-value pairs and values, this type of database offe...key-value
Micheal Adisamichellead.hashnode.dev·Jul 23, 2022How to conditionally pass a key to a javascript ObjectJavascript Object is an unordered collection of key and value pairs, these key and value pairs are called a property. The key can be a string and the value of the property can be any value. There could be an instance where you only want to pass a key...9 likes·154 readsJavaScript