Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Practical MongoDB Aggregations

You're reading from  Practical MongoDB Aggregations

Product type Book
Published in Mar 2024
Publisher Packt
ISBN-13 9781835884362
Pages 278 pages
Edition 1st Edition
Languages
Author (1):
Paul Done Paul Done
Profile icon Paul Done

Table of Contents (20) Chapters

Preface Chapter 1: MongoDB Aggregations Explained Part 1: Guiding Tips and Principles
Chapter 2: Optimizing Pipelines for Productivity Chapter 3: Optimizing Pipelines for Performance Chapter 4: Harnessing the Power of Expressions Chapter 5: Optimizing Pipelines for Sharded Clusters Part 2: Aggregations by Example
Chapter 6: Foundational Examples: Filtering, Grouping, and Unwinding Chapter 7: Joining Data Examples Chapter 8: Fixing and Generating Data Examples Chapter 9: Trend Analysis Examples Chapter 10: Securing Data Examples Chapter 11: Time-Series Examples Chapter 12: Array Manipulation Examples Chapter 13: Full-Text Search Examples Afterword
Index Other books you may enjoy Appendix

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database collection names, folder names, filenames, file extensions, pathnames, dummy URLs, and user input. Here is an example: "When considering the $sort and $group stages, it becomes evident why they have to block."

A block of code is set as follows:

db.persons.find(
    {"vocation": "ENGINEER"},
    {"_id": 0, "vocation": 0, "address": 0},
  ).sort(
    {"dateofbirth": -1}
  ).limit(3);

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "A MongoDB database, version 4.2 or greater, that is network accessible from your workstation."

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Next Chapter arrow right
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}