query



Criteria: PHP package for managing Criteria Pattern

  • avatar
  • 3.0K Views
  • 6 Likes
  • 5 mins read
Preview post image

The Criteria Pattern stands as a powerful tool, often hidden in the shadows of more commonly discussed design patterns. This pattern empowers developers to implement dynamic and customizable queries in their applications, enhancing flexibility and maintainability To facilitate this process, Criteria package provides the shared domain logic that contains abstract criteria implementation that each specific criteria should extend from.

Pagination in MongoDB: efficient retrieval and display of data

  • avatar
  • 1.3K Views
  • 2 Likes
  • 5 mins read
Preview post image

Pagination is a crucial aspect of modern web applications that deal with large datasets. When working with MongoDB, a popular NoSQL database, efficient pagination techniques become essential to retrieve and display data in a controlled manner. MongoDB provides various features and functions to achieve efficient pagination. In this article, we will examine these concepts, exploring how they can be used to implement pagination effectively in MongoDB.

MongoDB advanced query operators

  • avatar
  • 803 Views
  • 9 mins read
Preview post image

MongoDB is a popular NoSQL database known for its flexibility and scalability. In MongoDB, query operators are used to perform specific operations within a query, allowing you to filter and retrieve documents based on various conditions. These operators provide powerful capabilities for querying and manipulating data. In this article, we will explore some of the most important MongoDB operators, focusing on both read and update operations.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

Getting started with MongoDB

  • avatar
  • 727 Views
  • 6 Likes
  • 11 mins read
Preview post image

MongoDB is a popular open source and document oriented database system. It belongs to a family of databases called NoSQL, which is different from the traditional table based SQL databases. It makes use of collections, each having multiple documents, and allows the user to store data in a non relational format. Data is stored in flexible, JSON-like documents where fields can vary from document to document. That's the reason for calling it schemaless database.