You are developing a blogging platform using MongoDB as the database. Each blog post document has a tags array field that holds a list of strings. You are tasked to implement a search functionality that allows users to find blog posts based on the tags. Which of the following MongoDB features would you utilize to implement this functionality efficiently?
You have a MongoDB collection named students, where each document represents a student. The documents include fields like name, age, and courses. The courses field is an array that lists the course codes each student is enrolled in. You want to find all students enrolled in the course with the code "CS101". Which query will correctly retrieve all students enrolled in "CS101"?
In the context of MongoDB development, you are creating a new service that is expected to handle high load. You've decided to leverage the MongoDB drivers' connection pooling capability. What best describes connection pooling and its advantages?