ANAbhay Nepalinnepalabhay.hashnode.dev·Feb 9, 2025 · 10 min readKubernetes And Container OrchestrationIntroduction to Container Orchestration So, let’s talk about container orchestration . It's really built to make life easier when it comes to deploying, managing, scaling, and connecting containerized apps. You know, containers? They bundle up applic...00
ANAbhay Nepalinnepalabhay.hashnode.dev·Feb 9, 2025 · 7 min readIntroduction To Apache KafkaWhat is Event Streaming? Event streaming kinda reminds me of the human body's central nervous system. It really acts like a backbone for how data flows in real-time, especially in our hyper-connected, automated, and software-driven world today. In t...00
ANAbhay Nepalinnepalabhay.hashnode.dev·Jan 21, 2025 · 6 min readRedis Sorted SetsA Sorted Set in Redis is a collection of unique elements, each associated with a floating-point number called a score. The elements in a sorted set are ordered by their scores in ascending order. This data structure is particularly useful for use cas...00
ANAbhay Nepalinnepalabhay.hashnode.dev·Dec 30, 2024 · 2 min readRedis Conventions To FollowNamespaces Convention In Redis, namespaces are not a built-in feature, but a naming convention used to logically organize and manage keys. The namespace concept is achieved by using prefixes in key names, separating parts with a delimiter like a colo...00
ANAbhay Nepalinnepalabhay.hashnode.dev·Dec 29, 2024 · 20 min readRedis Data StructuresIntroduction Redis (REmote DIctionary Server) is an open-source, in-memory data structure store, primarily used as a cache, message broker, and database. It supports various kinds of data structures, such as strings, hashes, lists, sets, and more. Re...00