Aneesha S

Aneesha S

Aneesha S writes practical guides to MongoDB, Mongoose, and Node.js. Her articles cover document queries and updates, file operations, and HTTP requests.

Sharding in MongoDB: Explained in Detail

Sharding In MongoDB Featured Image

In this tutorial, we will learn about sharding in MongoDB. It is time we learn an intermediate-level topic. Sharding in MongoDB is one such topic. Now, sharding in layman’s terms means that mechanism that stores data on multiple machines. This…

Error Testing Smart Contract in Solidity Ethereum

Error Testing Smart Contracts Featured Image

In this tutorial, I will teach you how to perform error testing for your smart contract in Solidity. Error testing is a crucial aspect of development especially when it comes to blockchain development. Unlike development using other technologies, blockchain technology…

$and Operator in MongoDB – A Complete Guide

And Operator Featured Image

In this tutorial, I will cover the $and operator in MongoDB. So, the $and operator performs an AND operation on the given array of expressions. It eventually selects ALL the documents that matched the query. This guide aims to provide…

Using the getIndexes() Function in MongoDB

GetIndexes Function Featured Image

In this guide, I will explain how to use the getIndexes() Function in MongoDB. A list of documents describing the existing indexes in the collection includes hidden indexes, and is returned as an array by the getIndexes() function. This guide…

$all Operator in MongoDB – Simple Guide

All Operator Featured Image

In this piece, I will discuss the $all operator in MongoDB. The $all operator identifies documents whose field value is an array containing all of the specified elements. It is more or less similar to the $and operator. This guide…

MongoDB Aggregation Size – Basic 2021 Guide

Aggregation Size Operator Featured Image

In this guide, I am going to cover the MongoDB aggregation size operator. The aggregation size operator simply counts and returns the number of elements in an array. The aggregation size operator may accept any expression as long as it…

MongoDB Sum Query – Comprehensive Guide

MongoDB Sum Query Featured Image

In this guide, I will cover the MongoDB sum query operation using the $sum operator. The MongoDB sum query operation (aggregation) is simply used to calculate and return the collective sum of numeric values. It is important to note that…