Sudhir sharma has Published 1206 Articles

Partitioners with the TOKEN function in Cassandra

sudhir sharma

sudhir sharma

Updated on 22-Jan-2024 16:48:30

140 Views

This presented article will unpack partitioners and delve deeper into how the TOKEN function in Cassandra enhances data management. Understanding Partitioners in Cassandra Partitioners in Cassandra serve the purpose of dividing data within a cluster, optimizing data distribution and organization. Purpose Partitioners play a crucial role in the performance and ... Read More

Parallelizing Disk Access Using RAID Technology

sudhir sharma

sudhir sharma

Updated on 22-Jan-2024 16:35:24

172 Views

Introduction Are you frustrated with the slow speed and inconsistent performance of your computer's disk storage? RAID technology, short for Redundant Array of Independent Disks, could be the game-changing solution you've been searching for. This article will delve into how this powerful tool optimizes and parallelizes disk access to enhance ... Read More

Overview Of User Defined Type (UDT) In Cassandra

sudhir sharma

sudhir sharma

Updated on 22-Jan-2024 16:21:55

118 Views

The present article offers a comprehensive overview of UDTs in Cassandra, making them an accessible tool to enhance your database management. Let’s dive into that! Data Types in Cassandra In Cassandra, there are various data types available, including native types, counters, collections (such as maps, sets, and lists), and user-defined ... Read More

Overview of Transaction Management in Distributed Databases

sudhir sharma

sudhir sharma

Updated on 22-Jan-2024 16:17:40

206 Views

Introduction Navigating the complex world of distributed databases can feel like a daunting task, especially when it comes to managing transactions. Did you know that successful transaction management ensures data integrity and consistency across multiple nodes in a system? This article will provide an in-depth overview of transaction management in ... Read More

Overview of the C++ Language Binding in the ODMG Standard

sudhir sharma

sudhir sharma

Updated on 22-Jan-2024 16:15:03

337 Views

Introduction Diving into the world of data management and modeling can be a complex task, especially when dealing with standards like the Object Data Management Group (ODMG). Did you know that ODMG provides an essential standard for object-oriented database systems, including a C++ language binding? This article will guide you ... Read More

Overview of Just a Bunch Of Disks (JBOD)

sudhir sharma

sudhir sharma

Updated on 22-Jan-2024 15:01:51

95 Views

Introduction Whenever we deal with the data storage can often feel frustrating, especially as files grow in size and our need for required space expands. Did you happen to know that there is a simple storage solution called 'Just a Bunch Of Disks' or JBOD that might be what your ... Read More

C / C++ Program for Dijkstra's shortest path algorithm

sudhir sharma

sudhir sharma

Updated on 08-Nov-2023 00:13:33

24K+ Views

We are given a graph with a source vertex in the graph. And we have to find the shortest path from the source vertex to all other vertices of the graph. The Dijikstra's algorithm is a greedy algorithm to find the shortest path from the source vertex of the graph ... Read More

C Program to Check Whether a Number is Prime or not?

sudhir sharma

sudhir sharma

Updated on 07-Nov-2023 05:31:12

36K+ Views

A prime number is a number that is divisible only by two numbers itself and one. The factor of a number is a number that can divide it.The list of the first ten prime numbers is 2, 3, 5, 7, 11, 13, 17, 23, 29, 31.A number that is not ... Read More

Adding two polynomials using Linked List in C++.

sudhir sharma

sudhir sharma

Updated on 04-Nov-2023 01:44:16

23K+ Views

To understand this concept better let's first brush up all the basic contents that are required.linked list is a data structure that stores each element as an object in a node of the list. every note contains two parts data han and links to the next node.Polynomial is a mathematical ... Read More

Introduction to Backtracking

sudhir sharma

sudhir sharma

Updated on 02-Nov-2023 00:22:40

27K+ Views

Backtracking is a technique based on algorithm to solve problem. It uses recursive calling to find the solution by building a solution step by step increasing values with time. It removes the solutions that doesn't give rise to the solution of the problem based on the constraints given to solve ... Read More

Advertisements