Mongodb
23 articles
Boost Performance Using Mongodb Partial Index
MongoDB is a powerful NoSQL database designed for high performance, high availability, and easy scalability. Unlike traditional relational databases, …
Mongodb Capped Collections - An Overview
Capped collections provide fixed-size collections that enable high-throughput operations for inserting and retrieving documents based on their …
MongoDB Views: A Guide to Secure Data Access and Sharing
In today’s data-driven ecosystem, organizations face a significant challenge: balancing the imperative for data accessibility with stringent …
Mongoose Discriminator: The non DRY way to inherit schema properties
Mongoose Discriminator is another very useful and powerful yet underused feature of Mongoose. It serves as a means of schema inheritance, allowing …
Understanding Mongoose Pre and Post middleware hooks
Pre and post middleware hooks is a very useful feature in Mongoose and provides a lot of flexibility during database operations like query, create, …
Optimize Mongoose Queries for Speed & Efficiency: The Lean Way
Mongoose is a schema-based solution to model your application data in MongoDB. It includes built-in type casting, validation, query building, business …