From 21d0a66efe6b4ac30f363f49d53d349a9c137295 Mon Sep 17 00:00:00 2001 From: Kyle Rollins <115574589+krollins-mdb@users.noreply.github.com> Date: Mon, 9 Mar 2026 16:57:41 -0500 Subject: [PATCH 1/5] feat(resolve): add command for resolving documentation paths and URLs - Introduced a new `resolve` command with a subcommand `url` to resolve source .txt files to their production URLs. - Implemented URL resolution logic in `commands/resolve/url/resolver.go`. - Added tests for URL construction and resolution functionality. - Updated main command to include the new resolve command. --- CHANGELOG.md | 31 ++- README.md | 198 ++++++++++++++- commands/resolve/resolve.go | 37 +++ commands/resolve/url/resolver.go | 267 +++++++++++++++++++++ commands/resolve/url/resolver_test.go | 333 ++++++++++++++++++++++++++ commands/resolve/url/url.go | 84 +++++++ main.go | 3 + 7 files changed, 947 insertions(+), 6 deletions(-) create mode 100644 commands/resolve/resolve.go create mode 100644 commands/resolve/url/resolver.go create mode 100644 commands/resolve/url/resolver_test.go create mode 100644 commands/resolve/url/url.go diff --git a/CHANGELOG.md b/CHANGELOG.md index feaacdd..dd43514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,28 @@ All notable changes to audit-cli will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Added + +#### Resolve Commands + +- `resolve url` - Resolve documentation source files to production URLs + - Takes a source file path (.txt) from the docs monorepo + - Returns the corresponding production URL on mongodb.com/docs + - Uses table-of-contents data as the source of truth for URL mappings + - Supports all projects in the monorepo (Atlas, Drivers, Manual, Tools, etc.) + - Handles versioned and non-versioned projects correctly + - Supports custom base URL for staging environments + - Flags: + - `--base-url` - Override the default base URL (default: `https://www.mongodb.com/docs`) + ## [0.3.0] - 2025-01-07 ### Added #### Report Commands + - `report testable-code` - Analyze testable code examples on pages from analytics data - Takes a CSV file with page rankings and URLs from analytics - Resolves URLs to source files using the Snooty Data API @@ -23,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `--details` - Show detailed per-product breakdown #### Internal Packages + - `internal/language` - Programming language utilities (refactored from code-examples) - Language normalization (e.g., "ts" → "typescript", "py" → "python") - File extension mapping for all supported languages @@ -64,6 +82,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added #### Analyze Commands + - `analyze composables` - Analyze composable definitions in snooty.toml files - Inventory all composables across projects and versions - Identify identical composables (same ID, title, and options) across different projects/versions @@ -79,6 +98,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `--with-rstspec` - Show canonical composable definitions from rstspec.toml #### Configuration System + - Monorepo path configuration via three methods (priority order): 1. Command-line argument (highest priority) 2. Environment variable `AUDIT_CLI_MONOREPO_PATH` @@ -90,6 +110,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Applies to commands: `analyze composables`, `count tested-examples`, `count pages` #### File Path Resolution + - Flexible path resolution for all file-based commands - Supports three path types (priority order): 1. Absolute paths - Used as-is @@ -99,6 +120,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Eliminates need to type full paths when working with monorepo files #### Internal Packages + - `internal/config` - Configuration management - Config file loading from `.audit-cli.yaml` - Environment variable support @@ -115,6 +137,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release after splitting from the MongoDB code-example-tooling monorepo. #### Extract Commands + - `extract code-examples` - Extract code examples from RST files - Supports `literalinclude`, `code-block`, and `io-code-block` directives - Handles partial file extraction with `:start-after:`, `:end-before:`, `:lines:` options @@ -129,6 +152,7 @@ Initial release after splitting from the MongoDB code-example-tooling monorepo. - Optional include directive expansion #### Search Commands + - `search find-string` - Search for substrings in documentation files - Case-sensitive and case-insensitive search modes - Exact word matching or partial matching @@ -137,6 +161,7 @@ Initial release after splitting from the MongoDB code-example-tooling monorepo. - Language breakdown in verbose mode #### Analyze Commands + - `analyze includes` - Analyze include directive relationships - Tree view of include dependencies - Flat list of all included files @@ -155,6 +180,7 @@ Initial release after splitting from the MongoDB code-example-tooling monorepo. - Variation listing (composable tutorial selections and tabids) #### Compare Commands + - `compare file-contents` - Compare file contents across versions - Direct comparison between two files - Version comparison mode with auto-discovery @@ -162,6 +188,7 @@ Initial release after splitting from the MongoDB code-example-tooling monorepo. - Progressive detail levels (summary, paths, diffs) #### Count Commands + - `count tested-examples` - Count tested code examples in the monorepo - Total count across all products - Per-product breakdown @@ -176,6 +203,7 @@ Initial release after splitting from the MongoDB code-example-tooling monorepo. - Current version only mode #### Internal Packages + - `internal/rst` - RST parsing utilities - Directive parsing (literalinclude, code-block, io-code-block, procedure, step, tabs, composable-tutorial) - Include directive following with circular detection @@ -187,13 +215,14 @@ Initial release after splitting from the MongoDB code-example-tooling monorepo. - Version path resolution #### Documentation + - Comprehensive README.md with usage examples - PROCEDURE_PARSING.md with detailed procedure parsing business logic - AGENTS.md for LLM development assistance ### Technical Details + - Built with Go 1.24 - Uses spf13/cobra v1.10.1 for CLI framework - Uses aymanbagabas/go-udiff v0.3.1 for diff generation - Comprehensive test coverage with deterministic testing for procedure parsing - diff --git a/README.md b/README.md index d3f1679..6e62492 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ A Go CLI tool for performing audit-related tasks in the MongoDB documentation mo - [Compare Commands](#compare-commands) - [Count Commands](#count-commands) - [Report Commands](#report-commands) + - [Resolve Commands](#resolve-commands) - [Development](#development) - [Project Structure](#project-structure) - [Adding New Commands](#adding-new-commands) @@ -82,6 +83,7 @@ export AUDIT_CLI_MONOREPO_PATH=/path/to/docs-monorepo ### 3. Config File (Lowest Priority) Create a `.audit-cli.yaml` file in either: + - Current directory: `./.audit-cli.yaml` - Home directory: `~/.audit-cli.yaml` @@ -150,6 +152,7 @@ If the path doesn't exist relative to the monorepo, it falls back to the current ``` **Priority Order:** + 1. If path is absolute → use as-is 2. If monorepo is configured and path exists relative to monorepo → use monorepo-relative path 3. Otherwise → resolve relative to current directory @@ -177,8 +180,10 @@ audit-cli ├── count # Count code examples and documentation pages │ ├── tested-examples │ └── pages -└── report # Generate reports from documentation data - └── testable-code +├── report # Generate reports from documentation data +│ └── testable-code +└── resolve # Resolve documentation paths and URLs + └── url ``` ### Extract Commands @@ -192,6 +197,7 @@ section below. **Use Cases:** This command helps writers: + - Examine all the code examples that make up a specific page or section - Split out code examples into individual files for migration to test infrastructure - Report on the number of code examples by language @@ -241,7 +247,7 @@ This command helps writers: will only extract code examples from the top-level RST file. If you do provide this flag, the tool will follow any `.. include::` directives in the RST file and extract code examples from all included files. When combined with `-r`, the tool will recursively scan all subdirectories for RST files and follow `.. include::` directives in all files. If - an include filepath is *outside* the input directory, the `-r` flag would not parse it, but the `-f` flag would + an include filepath is _outside_ the input directory, the `-r` flag would not parse it, but the `-f` flag would follow the include directive and parse the included file. This effectively lets you parse all the files that make up a single page, if you start from the page's root `.txt` file. - `--dry-run` - Show what would be extracted without writing files @@ -252,6 +258,7 @@ This command helps writers: Extracted files are named: `{source-base}.{directive-type}.{index}.{ext}` Examples: + - `my-doc.code-block.1.js` - First code-block from my-doc.rst - `my-doc.literalinclude.2.py` - Second literalinclude from my-doc.rst - `my-doc.io-code-block.1.input.js` - Input from first io-code-block @@ -260,6 +267,7 @@ Examples: **Report:** After extraction, the code extraction report shows: + - Number of files traversed - Number of output files written - Code examples by language @@ -274,6 +282,7 @@ even if it appears in multiple selections or variations. **Use Cases:** This command helps writers: + - Extract all unique procedures from a page for testing or migration - Generate individual procedure files for each distinct procedure - Understand how many different procedures exist in a document @@ -312,11 +321,13 @@ This command helps writers: Extracted files are named: `{heading}_{first-step-title}_{hash}.rst` The filename includes: + - **Heading**: The section heading above the procedure - **First step title**: The title of the first step (for readability) - **Hash**: A short 6-character hash of the content (for uniqueness) Examples: + - `before-you-begin_pull-the-mongodb-docker-image_e8eeec.rst` - `install-mongodb-community-edition_download-the-tarball_44c437.rst` - `configuration_create-the-data-and-log-directories_f1d35b.rst` @@ -345,6 +356,7 @@ Found 36 unique procedures: **Supported Procedure Types:** The command recognizes and extracts: + - `.. procedure::` directives with `.. step::` directives - Ordered lists (numbered or lettered) as procedures - `.. tabs::` directives with `:tabid:` options for variations @@ -355,10 +367,12 @@ The command recognizes and extracts: **How Uniqueness is Determined:** Procedures are grouped by: + 1. **Heading**: The section heading above the procedure 2. **Content hash**: A hash of the procedure's steps and content This means: + - Procedures with the same heading but different content are treated as separate unique procedures - Procedures with identical content that appear in multiple selections are extracted once - The output file shows all selections where that procedure appears (visible with `-v` flag) @@ -366,6 +380,7 @@ This means: **Report:** After extraction, the report shows: + - Number of unique procedures extracted - Number of files written - Detailed list of procedures with step counts and selections (with `-v` flag) @@ -378,6 +393,7 @@ Search through files for a specific substring. Can search through extracted code source files. **Default Behavior:** + - **Case-insensitive** search (matches "curl", "CURL", "Curl", etc.) - **Exact word matching** (excludes partial matches like "curl" in "libcurl") @@ -387,6 +403,7 @@ of larger words. **Use Cases:** This command helps writers: + - Find specific strings across documentation files or pages - Search for product names, command names, API methods, or other strings that may need to be updated - Understand the number of references and impact of changes across documentation files or pages @@ -433,7 +450,7 @@ This command helps writers: will search only the top-level RST file or directory. If you do provide this flag, the tool will follow any `.. include::` directives in any RST file in the input path and search across all included files. When combined with `-r`, the tool will recursively scan all subdirectories for RST files and follow `.. include::` directives - in all files. If an include filepath is *outside* the input directory, the `-r` flag would not parse it, but the `-f` + in all files. If an include filepath is _outside_ the input directory, the `-r` flag would not parse it, but the `-f` flag would follow the include directive and search the included file. This effectively lets you parse all the files that make up a single page, if you start from the page's root `.txt` file. - `-v, --verbose` - Show file paths and language breakdown @@ -443,10 +460,12 @@ This command helps writers: **Report:** The search report shows: + - Number of files scanned - Number of files containing the substring (each file counted once) With `-v` flag, also shows: + - List of file paths where substring appears - Count broken down by language (file extension) @@ -462,6 +481,7 @@ This helps you understand which content is transcluded into a page. **Use Cases:** This command helps writers: + - Understand the impact of changes to widely-included files - Identify files included multiple times - Document file relationships for maintenance @@ -496,6 +516,7 @@ This command helps writers: **Output Formats:** **Summary** (default - no flags): + ``` ============================================================ INCLUDE ANALYSIS SUMMARY @@ -509,6 +530,7 @@ Max Depth: 2 Use --tree to see the hierarchical structure Use --list to see a flat list of all files ``` + - Root file path - Number of unique files discovered - Total number of include directive instances (counting duplicates) @@ -516,6 +538,7 @@ Use --list to see a flat list of all files - Hints to use --tree or --list for more details **Tree** (--tree flag): + - Hierarchical tree structure showing include relationships - Uses box-drawing characters for visual clarity - Shows which files include which other files @@ -524,17 +547,20 @@ Use --list to see a flat list of all files - Files outside `includes`: `path/from/source/filename.rst` **List** (--list flag): + - Flat numbered list of all unique files - Files listed in depth-first traversal order - Shows absolute paths to all files **Verbose** (-v flag): + - Shows complete dependency tree with all nodes (including duplicates) - Each file displays the number of include directives it contains - Uses visual indicators to show duplicate includes: - `•` (filled bullet) - First occurrence of a file - `◦` (hollow bullet) - Subsequent occurrences (duplicates) - Example output: + ``` • get-started.txt (24 include directives) • get-started/node/language-connection-steps.rst (3 include directives) @@ -585,6 +611,7 @@ io-code-block) that transclude content into pages. Use `--include-toctree` to al for toctree entries, which are navigation links rather than content transclusion. This command helps writers: + - Understand the impact of changes to a file (what pages will be affected) - Find all usages of an include file across the documentation - Track where code examples are referenced @@ -623,10 +650,12 @@ This command helps writers: **Understanding the Counts:** The command shows two metrics: + - **Total Files**: Number of unique files that use the target (deduplicated) - **Total Usages**: Total number of directive occurrences (includes duplicates) When a file includes the target multiple times, it counts as: + - 1 file (in Total Files) - Multiple usages (in Total Usages) @@ -637,17 +666,20 @@ This helps identify both the impact scope (how many files) and duplicate include By default, the command tracks content inclusion directives: 1. **`.. include::`** - RST content includes (transcluded) + ```rst .. include:: /includes/intro.rst ``` 2. **`.. literalinclude::`** - Code file references (transcluded) + ```rst .. literalinclude:: /code-examples/example.py :language: python ``` 3. **`.. io-code-block::`** - Input/output examples with file arguments (transcluded) + ```rst .. io-code-block:: @@ -661,6 +693,7 @@ By default, the command tracks content inclusion directives: With `--include-toctree`, also tracks: 4. **`.. toctree::`** - Table of contents entries (navigation links, not transcluded) + ```rst .. toctree:: :maxdepth: 2 @@ -675,6 +708,7 @@ is not tracked since it doesn't reference external files. **Output Formats:** **Text** (default): + ``` ============================================================ USAGE ANALYSIS @@ -693,6 +727,7 @@ include : 3 files, 4 usages ``` **Text with --verbose:** + ``` ============================================================ USAGE ANALYSIS @@ -715,6 +750,7 @@ include : 3 files, 4 usages ``` **JSON** (--format json): + ```json { "target_file": "/path/to/includes/intro.rst", @@ -802,6 +838,7 @@ Analyze procedures in reStructuredText files to understand procedure complexity, different selections. This command parses procedures from RST files and provides statistics about: + - Total number of unique procedures (grouped by heading and content) - Total number of procedure appearances across all selections - Implementation types (procedure directive vs ordered list) @@ -812,6 +849,7 @@ This command parses procedures from RST files and provides statistics about: **Use Cases:** This command helps writers: + - Understand the complexity of procedures in a document - Count how many unique procedures exist vs. how many times they appear - Identify procedures that use different implementation approaches @@ -844,6 +882,7 @@ This command helps writers: **Output:** **Default output (summary only):** + ``` File: path/to/file.rst Total unique procedures: 36 @@ -851,6 +890,7 @@ Total procedure appearances: 93 ``` **With `--list-summary`:** + ``` File: path/to/file.rst Total unique procedures: 36 @@ -865,6 +905,7 @@ Unique Procedures: ``` **With `--list-all`:** + ``` File: path/to/file.rst Total unique procedures: 36 @@ -920,12 +961,14 @@ The command reports two key metrics: - This represents the total number of procedure instances a user might encounter **Example:** + - A file might have **36 unique procedures** that appear a total of **93 times** across different selections - This means some procedures appear in multiple selections (e.g., a "Before You Begin" procedure that's the same for Docker with and without search) **Supported Procedure Types:** The command recognizes: + - `.. procedure::` directives with `.. step::` directives - Ordered lists (numbered or lettered) as procedures - `.. tabs::` directives with `:tabid:` options for variations @@ -936,6 +979,7 @@ The command recognizes: **Deterministic Parsing:** The parser ensures deterministic results by: + - Sorting all map iterations to ensure consistent ordering - Sorting procedures by line number - Computing content hashes in a consistent manner @@ -952,6 +996,7 @@ Composables are configuration elements in `snooty.toml` that define content vari **Use Cases:** This command helps writers: + - Inventory all composables across projects and versions - Identify identical composables that could be consolidated across projects - Find similar composables with different IDs but overlapping options (potential consolidation candidates) @@ -1002,6 +1047,7 @@ This command helps writers: **Output:** **Default output (summary and table):** + ``` Composables Analysis ==================== @@ -1029,6 +1075,7 @@ atlas (none) language Language Shows two types of consolidation opportunities: 1. **Identical Composables** - Same ID, title, and options across different projects/versions + ``` Identical Composables (Consolidation Candidates) ================================================ @@ -1047,6 +1094,7 @@ Shows two types of consolidation opportunities: ``` 2. **Similar Composables** - Different IDs but similar option sets (60%+ overlap) + ``` Similar Composables (Review Recommended) ======================================== @@ -1109,6 +1157,7 @@ Total usages: 1 **Understanding Composables:** Composables are defined in `snooty.toml` files: + ```toml [[composables]] id = "language" @@ -1125,6 +1174,7 @@ title = "Node.js" ``` They're used in RST files with `.. composable-tutorial::` directives: + ```rst .. composable-tutorial:: :options: language, interface @@ -1145,6 +1195,7 @@ They're used in RST files with `.. composable-tutorial::` directives: The command uses Jaccard similarity (intersection / union) to compare option sets between composables with different IDs. A 60% similarity threshold is used to identify potential consolidation candidates. For example, if you have: + - `language` with 15 options - `language-atlas-only` with 14 options (13 in common with `language`) - `language-local-only` with 14 options (13 in common with `language`) @@ -1156,12 +1207,14 @@ These would be flagged as similar composables (93.3% similarity) and potential c #### `compare file-contents` Compare file contents to identify differences between files. Supports two modes: + 1. **Direct comparison** - Compare two specific files 2. **Version comparison** - Compare the same file across multiple documentation versions **Use Cases:** This command helps writers: + - Identify content drift across documentation versions - Verify that updates have been applied consistently - Scope maintenance work when updating shared content @@ -1219,6 +1272,7 @@ Provide two file paths as arguments: ``` This mode: + - Compares exactly two files - Reports whether they are identical or different - Can show unified diff with `--show-diff` @@ -1239,6 +1293,7 @@ Provide one file path. The product directory and versions are automatically dete ``` This mode: + - Automatically detects the product directory from the file path - Auto-discovers all available versions (unless `--versions` is specified) - Extracts the relative path from the reference file @@ -1249,6 +1304,7 @@ This mode: **Version Directory Structure:** The tool expects MongoDB documentation to be organized as: + ``` product-dir/ ├── manual/ @@ -1268,17 +1324,20 @@ product-dir/ **Output Formats:** **Summary** (default - no flags): + - Total number of versions compared - Count of matching, differing, and missing files - Hints to use `--show-paths` or `--show-diff` for more details **With --show-paths:** + - Summary (as above) - List of files that match (with ✓) - List of files that differ (with ✗) - List of files not found (with -) **With --show-diff:** + - Summary and paths (as above) - Unified diff output for each differing file - Shows added lines (prefixed with +) @@ -1330,6 +1389,7 @@ This command navigates to the `content/code-examples/tested` directory from the **Use Cases:** This command helps writers and maintainers: + - Track the total number of tested code examples - Monitor code example coverage by product - Identify products with few or many examples @@ -1383,6 +1443,7 @@ This command navigates to the `content` directory and recursively counts all `.t **Use Cases:** This command helps writers and maintainers: + - Track the total number of documentation pages across the monorepo - Monitor documentation coverage by product/project - Identify projects with extensive or minimal documentation @@ -1393,6 +1454,7 @@ This command helps writers and maintainers: **Automatic Exclusions:** The command automatically excludes: + - Files in `code-examples` directories at the root of `content` or `source` (these contain plain text examples, not pages) - Files in the following directories at the root of `content`: - `404` - Error pages @@ -1444,10 +1506,12 @@ By default, prints a single integer (total count) for use in CI or scripting. Wi **Versioned Documentation:** Some MongoDB documentation projects contain multiple versions, represented as distinct directories between the project directory and the `source` directory: + - **Versioned project structure**: `content/{project}/{version}/source/...` - **Non-versioned project structure**: `content/{project}/source/...` Version directory names follow these patterns: + - `current` or `manual` - The current/latest version - `upcoming` - Pre-release version - `v{number}` - Specific version (e.g., `v8.0`, `v7.0`) @@ -1518,6 +1582,7 @@ This command takes a CSV file with page rankings and URLs, resolves each URL to **Use Cases:** This command helps writers and maintainers: + - Identify high-traffic pages with untested code examples - Prioritize which pages to add test coverage to - Track the ratio of tested vs testable code examples @@ -1573,6 +1638,7 @@ rank,url Use the `--filter` flag to focus on specific product areas. Multiple filters can be specified to include pages matching any filter. Available filters: + - `search` - Pages with "atlas-search" or "search" in URL (excludes vector-search) - `vector-search` - Pages with "vector-search" in URL - `drivers` - All MongoDB driver documentation pages @@ -1598,6 +1664,7 @@ The `--list-drivers` flag queries the Snooty Data API to show all available driv **Testable Products:** Products with test infrastructure (code examples for these products are marked as "testable"): + - C# - Go - Java (Sync) @@ -1650,6 +1717,90 @@ Source: content/node/current/source/quick-start.txt TOTAL 8 4 4 2 6 0 ``` +### Resolve Commands + +#### `resolve url` + +Resolve a documentation source file (.txt) to its production URL. + +This command takes a source file path from the docs monorepo and resolves it to the corresponding production URL on `mongodb.com/docs`. The URL mapping is derived from the table-of-contents data, which is the source of truth for production URLs. + +**Use Cases:** + +This command helps writers: + +- Quickly find the production URL for any source file +- Generate URLs for reports and documentation +- Verify URL structure for new or moved pages +- Include production links in code example reports + +**Basic Usage:** + +```bash +# Resolve a non-versioned project file (e.g., Atlas) +./audit-cli resolve url content/atlas/source/manage-clusters.txt +# Output: https://www.mongodb.com/docs/atlas/manage-clusters/ + +# Resolve a versioned project file (e.g., Go Driver) +./audit-cli resolve url content/golang/current/source/atlas-search.txt +# Output: https://www.mongodb.com/docs/drivers/go/current/atlas-search/ + +# Resolve the MongoDB Manual +./audit-cli resolve url content/manual/manual/source/indexes.txt +# Output: https://www.mongodb.com/docs/manual/indexes/ + +# Resolve an index file (results in trailing slash) +./audit-cli resolve url content/compass/source/index.txt +# Output: https://www.mongodb.com/docs/compass/ + +# Use a different base URL (e.g., for staging) +./audit-cli resolve url content/atlas/source/index.txt --base-url https://docs-staging.mongodb.com +# Output: https://docs-staging.mongodb.com/atlas/ +``` + +**Flags:** + +- `--base-url ` - Base URL for production documentation (default: `https://www.mongodb.com/docs`) + +**Path Resolution:** + +The command supports flexible path input: + +1. **Absolute path** - Full path to the source file +2. **Relative to monorepo root** - If monorepo is configured (via config file or environment variable) +3. **Relative to current directory** - Fallback + +**URL Construction:** + +The production URL is constructed from: + +1. **Base URL** - `https://www.mongodb.com/docs` by default +2. **URL slug** - Project-specific path segment (e.g., `atlas`, `drivers/go`) +3. **Version** - For versioned projects (e.g., `current`, `v8.0`, `manual`) +4. **Page path** - The file's path relative to the `source` directory (without `.txt` extension) + +**Examples:** + +| Source File | Production URL | +| ------------------------------------------------ | --------------------------------------------------------------- | +| `content/atlas/source/manage-clusters.txt` | `https://www.mongodb.com/docs/atlas/manage-clusters/` | +| `content/golang/current/source/atlas-search.txt` | `https://www.mongodb.com/docs/drivers/go/current/atlas-search/` | +| `content/app-services/source/logs.txt` | `https://www.mongodb.com/docs/atlas/app-services/logs/` | +| `content/manual/manual/source/index.txt` | `https://www.mongodb.com/docs/manual/` | +| `content/manual/v8.0/source/indexes.txt` | `https://www.mongodb.com/docs/v8.0/indexes/` | +| `content/compass/source/index.txt` | `https://www.mongodb.com/docs/compass/` | + +**Supported Projects:** + +The command supports all projects defined in the documentation monorepo's table-of-contents, including: + +- Atlas products (Atlas, Atlas CLI, Atlas Operator, App Services) +- MongoDB Server documentation (Manual, all versions) +- Driver documentation (Go, Python, Java, Node.js, C#, Rust, etc.) +- Tools (Compass, Database Tools, MongoDB Shell, etc.) +- Connectors (Kafka, Spark, BI Connector) +- And many more + ## Development ### Project Structure @@ -1804,11 +1955,13 @@ audit-cli/ Example: Adding `extract tables` subcommand 1. **Create the subcommand directory:** + ```bash mkdir -p commands/extract/tables ``` 2. **Create the command file** (`commands/extract/tables/tables.go`): + ```go package tables @@ -1835,6 +1988,7 @@ Example: Adding `extract tables` subcommand ``` 3. **Register the subcommand** in `commands/extract/extract.go`: + ```go import ( "github.com/grove-platform/audit-cli/commands/extract/tables" @@ -1855,11 +2009,13 @@ Example: Adding `extract tables` subcommand Example: Adding `analyze` parent command 1. **Create the parent directory:** + ```bash mkdir -p commands/analyze ``` 2. **Create the parent command** (`commands/analyze/analyze.go`): + ```go package analyze @@ -1880,6 +2036,7 @@ Example: Adding `analyze` parent command ``` 3. **Register in main.go:** + ```go import ( "github.com/grove-platform/audit-cli/commands/analyze" @@ -1925,6 +2082,7 @@ since it contains non-Go files (`.cpp`, `.rst`, etc.). #### Adding New Tests 1. **Create test input files** in `testdata/input-files/source/`: + ```bash # Create a new test RST file cat > testdata/input-files/source/my-test.rst << 'EOF' @@ -1935,6 +2093,7 @@ since it contains non-Go files (`.cpp`, `.rst`, etc.). ``` 2. **Generate expected output**: + ```bash ./audit-cli extract code-examples testdata/input-files/source/my-test.rst \ -o testdata/expected-output @@ -1943,6 +2102,7 @@ since it contains non-Go files (`.cpp`, `.rst`, etc.). 3. **Verify the output** is correct before committing 4. **Add test case** in the appropriate `*_test.go` file: + ```go func TestMyNewFeature(t *testing.T) { testDataDir := filepath.Join("..", "..", "..", "testdata") @@ -2040,6 +2200,7 @@ func RunMyCommand(arg string, flagValue string) error { ``` **Why this pattern?** + - Separates command definition from logic - Makes logic testable without Cobra - Consistent across all commands @@ -2153,6 +2314,7 @@ RunE: func(cmd *cobra.Command, args []string) error { ``` This allows users to specify paths as: + - Absolute: `/full/path/to/file.rst` - Monorepo-relative: `manual/manual/source/file.rst` (if monorepo configured) - Current directory-relative: `./file.rst` @@ -2216,6 +2378,7 @@ The tool extracts code examples from the following reStructuredText directives: Extracts code from external files with support for partial extraction and dedenting. **Syntax:** + ```rst .. literalinclude:: /path/to/file.py :language: python @@ -2225,6 +2388,7 @@ Extracts code from external files with support for partial extraction and dedent ``` **Supported Options:** + - `:language:` - Specifies the programming language (normalized: `ts` → `typescript`, `c++` → `cpp`, `golang` → `go`) - `:start-after:` - Extract content after this tag (skips the entire line containing the tag) - `:end-before:` - Extract content before this tag (cuts before the entire line containing the tag) @@ -2233,6 +2397,7 @@ Extracts code from external files with support for partial extraction and dedent **Example:** Given `code-examples/example.py`: + ```python def main(): # start-example @@ -2242,6 +2407,7 @@ def main(): ``` And RST: + ```rst .. literalinclude:: /code-examples/example.py :language: python @@ -2251,6 +2417,7 @@ And RST: ``` Extracts: + ```python result = calculate(42) print(result) @@ -2261,6 +2428,7 @@ print(result) Inline code blocks with automatic dedenting based on the first line's indentation. **Syntax:** + ```rst .. code-block:: javascript :copyable: false @@ -2271,6 +2439,7 @@ Inline code blocks with automatic dedenting based on the first line's indentatio ``` **Supported Options:** + - Language argument - `.. code-block:: javascript` (optional, defaults to `txt`) - `:language:` - Alternative way to specify language - `:copyable:` - Parsed but not used for extraction @@ -2302,6 +2471,7 @@ def hello(): Input/output code blocks for interactive examples with nested sub-directives. **Syntax:** + ```rst .. io-code-block:: :copyable: true @@ -2322,6 +2492,7 @@ Input/output code blocks for interactive examples with nested sub-directives. ``` **Supported Options:** + - `:copyable:` - Parsed but not used for extraction - Nested `.. input::` sub-directive (required) - Can have filepath argument: `.. input:: /path/to/file.js` @@ -2331,6 +2502,7 @@ Input/output code blocks for interactive examples with nested sub-directives. - Or inline content with `:language:` option **File-based Content:** + ```rst .. io-code-block:: @@ -2344,6 +2516,7 @@ Input/output code blocks for interactive examples with nested sub-directives. **Output Files:** Generates two files: + - `{source}.io-code-block.{index}.input.{ext}` - The input code - `{source}.io-code-block.{index}.output.{ext}` - The output (if present) @@ -2356,6 +2529,7 @@ Example: `my-doc.io-code-block.1.input.js` and `my-doc.io-code-block.1.output.js Follows include directives to process entire documentation trees (when `-f` flag is used). **Syntax:** + ```rst .. include:: /includes/intro.rst ``` @@ -2365,22 +2539,29 @@ Follows include directives to process entire documentation trees (when `-f` flag The tool handles several MongoDB-specific include patterns: ##### Steps Files + Converts directory-based paths to filename-based paths: + - Input: `/includes/steps/run-mongodb-on-linux.rst` - Resolves to: `/includes/steps-run-mongodb-on-linux.yaml` ##### Extracts and Release Files + Resolves ref-based includes by searching YAML files: + - Input: `/includes/extracts/install-mongodb.rst` - Searches: `/includes/extracts-*.yaml` for `ref: install-mongodb` - Resolves to: The YAML file containing that ref ##### Template Variables + Resolves template variables from YAML replacement sections: + ```yaml replacement: release_specification_default: "/includes/release/install-windows-default.rst" ``` + - Input: `{{release_specification_default}}` - Resolves to: `/includes/release/install-windows-default.rst` @@ -2401,16 +2582,19 @@ Provides configuration management for the CLI tool: - **File path resolution** - Resolves file paths as absolute, monorepo-relative, or cwd-relative **Key Functions:** + - `LoadConfig()` - Loads configuration from file or environment - `GetMonorepoPath(cmdLineArg string)` - Resolves monorepo path with priority order - `ResolveFilePath(pathArg string)` - Resolves file paths with flexible resolution **Priority Order for Monorepo Path:** + 1. Command-line argument (highest priority) 2. Environment variable `AUDIT_CLI_MONOREPO_PATH` 3. Config file `.audit-cli.yaml` (lowest priority) **Priority Order for File Paths:** + 1. Absolute path (used as-is) 2. Relative to monorepo root (if monorepo configured and file exists there) 3. Relative to current directory (fallback) @@ -2428,6 +2612,7 @@ Provides centralized utilities for understanding MongoDB documentation project s - **Relative path resolution** - Resolves paths relative to the source directory **Key Functions:** + - `FindSourceDirectory(filePath string)` - Finds the source directory for a given file - `DetectProjectInfo(filePath string)` - Detects project structure information - `DiscoverAllVersions(productDir string)` - Discovers all available versions in a product @@ -2450,6 +2635,7 @@ Provides reusable utilities for parsing and processing RST files: - **Source directory detection** - Finds the documentation root **Key Functions:** + - `ParseFileWithIncludes(filePath string)` - Parses RST file with include expansion - `ParseDirectives(content string)` - Extracts directive information from RST content - `ParseProcedures(filePath string, expandIncludes bool)` - Parses procedures from RST file @@ -2458,6 +2644,7 @@ Provides reusable utilities for parsing and processing RST files: **Rstspec.toml Support:** The `FetchRstspec()` function retrieves the canonical composable definitions from the snooty-parser repository. This provides: + - Standard composable IDs (e.g., `interface`, `language`, `deployment-type`) - Composable titles and descriptions - Default values for each composable @@ -2472,7 +2659,7 @@ See the code in `internal/rst/` for implementation details. The tool normalizes language identifiers to standard file extensions: | Input | Normalized | Extension | -|----------------|--------------|-----------| +| -------------- | ------------ | --------- | | `bash` | `bash` | `.sh` | | `c` | `c` | `.c` | | `c++` | `cpp` | `.cpp` | @@ -2511,6 +2698,7 @@ The tool normalizes language identifiers to standard file extensions: | (unknown) | (unchanged) | `.txt` | **Notes:** + - Language identifiers are case-insensitive - Unknown languages are returned unchanged by `NormalizeLanguage()` but map to `.txt` extension - The normalization handles common aliases (e.g., `ts` → `typescript`, `golang` → `go`, `c++` → `cpp`) diff --git a/commands/resolve/resolve.go b/commands/resolve/resolve.go new file mode 100644 index 0000000..4e01d59 --- /dev/null +++ b/commands/resolve/resolve.go @@ -0,0 +1,37 @@ +// Package resolve provides the parent command for resolving documentation paths and URLs. +// +// This package serves as the parent command for resolution operations. +// Currently supports: +// - url: Resolve source .txt files to their production URLs +// +// These commands help writers and tools map between source files and live documentation. +package resolve + +import ( + "github.com/grove-platform/audit-cli/commands/resolve/url" + "github.com/spf13/cobra" +) + +// NewResolveCommand creates the resolve parent command. +// +// This command serves as a parent for various resolution operations. +// It doesn't perform any operations itself but provides a namespace for subcommands. +func NewResolveCommand() *cobra.Command { + cmd := &cobra.Command{ + Use: "resolve", + Short: "Resolve documentation paths and URLs", + Long: `Resolve mappings between source files and production URLs. + +Helps writers and tools understand the relationship between source .txt files +in the documentation monorepo and their corresponding live URLs. + +Currently supports: + - url: Resolve source .txt files to their production URLs`, + } + + // Add subcommands + cmd.AddCommand(url.NewURLCommand()) + + return cmd +} + diff --git a/commands/resolve/url/resolver.go b/commands/resolve/url/resolver.go new file mode 100644 index 0000000..f6a84f2 --- /dev/null +++ b/commands/resolve/url/resolver.go @@ -0,0 +1,267 @@ +// Package url provides URL resolution functionality. +package url + +import ( + "fmt" + "path/filepath" + "strings" + + "github.com/grove-platform/audit-cli/internal/config" +) + +// ResolveFileToURL resolves a source file path to a production URL. +// +// The function identifies the project and version from the file path and +// constructs the appropriate production URL. +// +// Parameters: +// - filePath: Absolute path to the source .txt file +// - baseURL: Base production URL (e.g., https://www.mongodb.com/docs) +// +// Returns: +// - string: The production URL for the file +// - error: Error if resolution fails +func ResolveFileToURL(filePath string, baseURL string) (string, error) { + // Validate file extension + if !strings.HasSuffix(filePath, ".txt") { + return "", fmt.Errorf("file must have .txt extension: %s", filePath) + } + + // Parse the file path to extract project, version, and page path + info, err := parseFilePath(filePath) + if err != nil { + return "", err + } + + // Get the URL slug for this project + urlSlug, err := getURLSlugForProject(info.projectName) + if err != nil { + return "", err + } + + // Build the URL + return buildURL(baseURL, urlSlug, info.version, info.pagePath), nil +} + +// filePathInfo holds parsed information from a source file path. +type filePathInfo struct { + projectName string // Snooty project name (from snooty.toml) + version string // Version slug (e.g., "manual", "v8.0", "current") + pagePath string // Page path relative to source directory + contentDir string // Content directory name +} + +// parseFilePath extracts project, version, and page path from a source file path. +// +// Expected path patterns: +// - content/{project}/source/{page}.txt (non-versioned) +// - content/{project}/{version}/source/{page}.txt (versioned) +func parseFilePath(filePath string) (*filePathInfo, error) { + // Normalize path separators + filePath = filepath.ToSlash(filePath) + + // Find the content directory in the path + contentIdx := strings.Index(filePath, "/content/") + if contentIdx == -1 { + return nil, fmt.Errorf("file path must contain /content/ directory: %s", filePath) + } + + // Get the path starting from content/ + relativePath := filePath[contentIdx+9:] // Skip "/content/" + + // Split into parts + parts := strings.Split(relativePath, "/") + if len(parts) < 3 { + return nil, fmt.Errorf("invalid path structure: %s", filePath) + } + + info := &filePathInfo{ + contentDir: parts[0], + } + + // Find "source" directory to determine structure + sourceIdx := -1 + for i, part := range parts { + if part == "source" { + sourceIdx = i + break + } + } + + if sourceIdx == -1 { + return nil, fmt.Errorf("file path must contain /source/ directory: %s", filePath) + } + + // Determine if versioned or non-versioned + switch sourceIdx { + case 1: + // Non-versioned: content/{project}/source/{page}.txt + info.version = "" + case 2: + // Versioned: content/{project}/{version}/source/{page}.txt + info.version = parts[1] + default: + return nil, fmt.Errorf("unexpected path structure: %s", filePath) + } + + // Get the page path (everything after source/) + pagePathParts := parts[sourceIdx+1:] + pagePath := strings.Join(pagePathParts, "/") + + // Remove .txt extension + pagePath = strings.TrimSuffix(pagePath, ".txt") + + // Handle index.txt -> empty page path (will render as trailing slash) + if pagePath == "index" { + pagePath = "" + } + + info.pagePath = pagePath + + // Get project name from snooty.toml + monorepoPath := extractMonorepoPath(filePath, contentIdx) + projectName, err := getProjectName(monorepoPath, info.contentDir, info.version) + if err != nil { + return nil, err + } + info.projectName = projectName + + return info, nil +} + +// extractMonorepoPath extracts the monorepo root path from a file path. +func extractMonorepoPath(filePath string, contentIdx int) string { + return filePath[:contentIdx] +} + +// getProjectName reads the snooty.toml to get the project name. +func getProjectName(monorepoPath, contentDir, _ string) (string, error) { + urlMapping, err := config.GetURLMapping(monorepoPath) + if err != nil { + return "", fmt.Errorf("failed to get URL mapping: %w", err) + } + + // Reverse lookup: find project name for this content directory + for project, dir := range urlMapping.ProjectToContentDir { + if dir == contentDir { + return project, nil + } + } + + return "", fmt.Errorf("could not find project name for content directory: %s", contentDir) +} + +// projectToURLSlug maps Snooty project names (contentSite) to their URL base slugs. +// This mapping is derived from the table-of-contents data in the docs-mongodb-internal +// monorepo, which is the source of truth for production URLs. +// +// The URL slug is the path component after /docs/ in the production URL. +// For example, "golang" maps to "drivers/go", so the URL would be: +// https://www.mongodb.com/docs/drivers/go/current/ +var projectToURLSlug = map[string]string{ + // Atlas products + "atlas-architecture": "atlas/architecture", + "atlas-cli": "atlas/cli", + "atlas-operator": "atlas/operator", + "cloud-docs": "atlas", + "cloudgov": "atlas/government", + + // Atlas App Services (deprecated but still in monorepo) + "atlas-app-services": "atlas/app-services", + "realm": "atlas/device-sdks", + + // MongoDB Server + "docs": "", // MongoDB Manual uses empty slug (e.g., /docs/manual/) + + // Drivers and Languages + "c": "languages/c/c-driver", + "cpp-driver": "languages/cpp/cpp-driver/read", + "csharp": "drivers/csharp", + "django": "languages/python/django-mongodb", + "golang": "drivers/go", + "hibernate": "languages/java/mongodb-hibernate", + "java": "drivers/java/sync", + "java-rs": "languages/java/reactive-streams-driver", + "kotlin": "drivers/kotlin/coroutine", + "kotlin-sync": "languages/kotlin/kotlin-sync-driver", + "laravel": "drivers/php/laravel-mongodb", + "node": "drivers/node", + "php-library": "php-library", + "pymongo": "languages/python/pymongo-driver", + "pymongo-arrow": "languages/python/pymongo-arrow-driver", + "ruby-driver": "ruby-driver", + "rust": "drivers/rust", + "scala": "languages/scala/scala-driver", + + // Tools and utilities + "bi-connector": "bi-connector", + "charts": "charts", + "cloud-manager": "cloud-manager", + "compass": "compass", + "database-tools": "database-tools", + "docs-k8s-operator": "kubernetes-operator", + "docs-relational-migrator": "relational-migrator", + "drivers": "drivers", + "entity-framework": "entity-framework", + "intellij": "mongodb-intellij", + "kafka-connector": "kafka-connector", + "landing": "management", + "mck": "kubernetes", + "mcp-server": "mcp-server", + "meta": "meta", + "mongocli": "mongocli", + "mongodb-shell": "mongodb-shell", + "mongodb-vscode": "mongodb-vscode", + "mongoid": "mongoid", + "mongosync": "mongosync", + "ops-manager": "ops-manager", + "spark-connector": "spark-connector", + "sql-interface": "sql-interface", + "visual-studio-extension": "mongodb-analyzer", + "voyageai": "voyageai", +} + +// getURLSlugForProject returns the base URL slug for a given project name. +// The mapping is derived from the table-of-contents data which is the source +// of truth for production URLs. +func getURLSlugForProject(projectName string) (string, error) { + if slug, ok := projectToURLSlug[projectName]; ok { + return slug, nil + } + + return "", fmt.Errorf("could not find URL slug for project: %s", projectName) +} + +// buildURL constructs the production URL from components. +// +// Parameters: +// - baseURL: Base URL (e.g., https://www.mongodb.com/docs) +// - urlSlug: Project URL slug (e.g., "atlas", "drivers/go") or empty for MongoDB Manual +// - version: Version slug (e.g., "current", "v8.0", "manual") or empty for non-versioned +// - pagePath: Page path (e.g., "tutorial/install") or empty for index +// +// Returns the full production URL with trailing slash. +func buildURL(baseURL, urlSlug, version, pagePath string) string { + // Ensure base URL doesn't have trailing slash + baseURL = strings.TrimSuffix(baseURL, "/") + + // Build path components (only include non-empty parts) + var pathParts []string + + if urlSlug != "" { + pathParts = append(pathParts, urlSlug) + } + + // Add version if present (for versioned projects) + if version != "" { + pathParts = append(pathParts, version) + } + + // Add page path if present + if pagePath != "" { + pathParts = append(pathParts, pagePath) + } + + // Join with slashes and add trailing slash + return baseURL + "/" + strings.Join(pathParts, "/") + "/" +} diff --git a/commands/resolve/url/resolver_test.go b/commands/resolve/url/resolver_test.go new file mode 100644 index 0000000..b9f0e5d --- /dev/null +++ b/commands/resolve/url/resolver_test.go @@ -0,0 +1,333 @@ +package url + +import ( + "testing" +) + +// TestBuildURL tests the URL construction logic with various combinations +// of URL slug, version, and page path. +func TestBuildURL(t *testing.T) { + tests := []struct { + name string + baseURL string + urlSlug string + version string + pagePath string + expected string + }{ + { + name: "non-versioned project with page", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "atlas", + version: "", + pagePath: "manage-clusters", + expected: "https://www.mongodb.com/docs/atlas/manage-clusters/", + }, + { + name: "non-versioned project index", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "compass", + version: "", + pagePath: "", + expected: "https://www.mongodb.com/docs/compass/", + }, + { + name: "versioned project with page", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "drivers/go", + version: "current", + pagePath: "atlas-search", + expected: "https://www.mongodb.com/docs/drivers/go/current/atlas-search/", + }, + { + name: "versioned project index", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "drivers/node", + version: "current", + pagePath: "", + expected: "https://www.mongodb.com/docs/drivers/node/current/", + }, + { + name: "MongoDB Manual (empty slug) with version", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "", + version: "manual", + pagePath: "indexes", + expected: "https://www.mongodb.com/docs/manual/indexes/", + }, + { + name: "MongoDB Manual index", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "", + version: "manual", + pagePath: "", + expected: "https://www.mongodb.com/docs/manual/", + }, + { + name: "MongoDB Manual specific version", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "", + version: "v8.0", + pagePath: "tutorial/install-mongodb-on-os-x", + expected: "https://www.mongodb.com/docs/v8.0/tutorial/install-mongodb-on-os-x/", + }, + { + name: "nested URL slug", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "atlas/app-services", + version: "", + pagePath: "logs", + expected: "https://www.mongodb.com/docs/atlas/app-services/logs/", + }, + { + name: "base URL with trailing slash", + baseURL: "https://www.mongodb.com/docs/", + urlSlug: "atlas", + version: "", + pagePath: "clusters", + expected: "https://www.mongodb.com/docs/atlas/clusters/", + }, + { + name: "custom base URL (staging)", + baseURL: "https://docs-staging.mongodb.com", + urlSlug: "atlas", + version: "", + pagePath: "index", + expected: "https://docs-staging.mongodb.com/atlas/index/", + }, + { + name: "deeply nested page path", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "drivers/java/sync", + version: "current", + pagePath: "fundamentals/connection/connection-options", + expected: "https://www.mongodb.com/docs/drivers/java/sync/current/fundamentals/connection/connection-options/", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := buildURL(tt.baseURL, tt.urlSlug, tt.version, tt.pagePath) + if result != tt.expected { + t.Errorf("buildURL() = %q, want %q", result, tt.expected) + } + }) + } +} + +// TestGetURLSlugForProject tests the project name to URL slug lookup. +func TestGetURLSlugForProject(t *testing.T) { + tests := []struct { + name string + projectName string + expected string + expectError bool + }{ + { + name: "Atlas project", + projectName: "cloud-docs", + expected: "atlas", + expectError: false, + }, + { + name: "Go driver", + projectName: "golang", + expected: "drivers/go", + expectError: false, + }, + { + name: "MongoDB Manual (empty slug)", + projectName: "docs", + expected: "", + expectError: false, + }, + { + name: "Compass", + projectName: "compass", + expected: "compass", + expectError: false, + }, + { + name: "App Services", + projectName: "atlas-app-services", + expected: "atlas/app-services", + expectError: false, + }, + { + name: "unknown project", + projectName: "nonexistent-project", + expected: "", + expectError: true, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result, err := getURLSlugForProject(tt.projectName) + + if tt.expectError { + if err == nil { + t.Errorf("getURLSlugForProject() expected error, got nil") + } + } else { + if err != nil { + t.Errorf("getURLSlugForProject() unexpected error: %v", err) + } + if result != tt.expected { + t.Errorf("getURLSlugForProject() = %q, want %q", result, tt.expected) + } + } + }) + } +} + +// TestProjectToURLSlugCoverage verifies important projects are mapped. +func TestProjectToURLSlugCoverage(t *testing.T) { + // These are critical projects that must always have mappings + criticalProjects := []string{ + // Atlas products + "cloud-docs", + "atlas-cli", + "atlas-operator", + "atlas-app-services", + // Server + "docs", + // Key drivers + "golang", + "node", + "java", + "csharp", + "pymongo", + "rust", + // Tools + "compass", + "mongodb-shell", + "database-tools", + } + + for _, project := range criticalProjects { + t.Run(project, func(t *testing.T) { + _, exists := projectToURLSlug[project] + if !exists { + t.Errorf("critical project %q is missing from projectToURLSlug map", project) + } + }) + } +} + +// TestExtractMonorepoPath tests extraction of the monorepo path. +func TestExtractMonorepoPath(t *testing.T) { + tests := []struct { + name string + filePath string + contentIdx int + expected string + }{ + { + name: "typical path", + filePath: "/Users/user/docs-mongodb-internal/content/atlas/source/index.txt", + contentIdx: 33, // Position where /content/ starts + expected: "/Users/user/docs-mongodb-internal", + }, + { + name: "root path", + filePath: "/content/atlas/source/index.txt", + contentIdx: 0, + expected: "", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := extractMonorepoPath(tt.filePath, tt.contentIdx) + if result != tt.expected { + t.Errorf("extractMonorepoPath() = %q, want %q", result, tt.expected) + } + }) + } +} + +// TestBuildURLEdgeCases tests edge cases in URL construction. +func TestBuildURLEdgeCases(t *testing.T) { + tests := []struct { + name string + baseURL string + urlSlug string + version string + pagePath string + expected string + }{ + { + name: "all empty except base produces double slash", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "", + version: "", + pagePath: "", + // Note: This edge case produces a double slash, but it never occurs in practice + // because there's always either a slug or version for any real project + expected: "https://www.mongodb.com/docs//", + }, + { + name: "only page path", + baseURL: "https://www.mongodb.com/docs", + urlSlug: "", + version: "", + pagePath: "some-page", + expected: "https://www.mongodb.com/docs/some-page/", + }, + { + name: "multiple trailing slashes in base - trims only one", + baseURL: "https://www.mongodb.com/docs///", + urlSlug: "atlas", + version: "", + pagePath: "", + // TrimSuffix only removes one trailing slash + expected: "https://www.mongodb.com/docs///atlas/", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := buildURL(tt.baseURL, tt.urlSlug, tt.version, tt.pagePath) + if result != tt.expected { + t.Errorf("buildURL() = %q, want %q", result, tt.expected) + } + }) + } +} + +// TestURLSlugNeverDoubleSlash verifies that no URL slug produces double slashes. +func TestURLSlugNeverDoubleSlash(t *testing.T) { + baseURL := "https://www.mongodb.com/docs" + + for project, slug := range projectToURLSlug { + t.Run(project, func(t *testing.T) { + // Test with version + url := buildURL(baseURL, slug, "current", "page") + if containsDoubleSlash(url) { + t.Errorf("URL for project %q contains double slash: %s", project, url) + } + + // Test without version + url = buildURL(baseURL, slug, "", "page") + if containsDoubleSlash(url) { + t.Errorf("URL for project %q (no version) contains double slash: %s", project, url) + } + }) + } +} + +// containsDoubleSlash checks if the URL path contains // +func containsDoubleSlash(url string) bool { + // Skip the protocol part (https://) + if len(url) < 8 { + return false + } + pathPart := url[8:] // Skip "https://" + for i := 0; i < len(pathPart)-1; i++ { + if pathPart[i] == '/' && pathPart[i+1] == '/' { + return true + } + } + return false +} diff --git a/commands/resolve/url/url.go b/commands/resolve/url/url.go new file mode 100644 index 0000000..313c91a --- /dev/null +++ b/commands/resolve/url/url.go @@ -0,0 +1,84 @@ +// Package url implements the url subcommand for resolving source files to production URLs. +package url + +import ( + "fmt" + + "github.com/grove-platform/audit-cli/internal/config" + "github.com/spf13/cobra" +) + +// NewURLCommand creates the url subcommand. +// +// This command resolves source .txt files to their production URLs. +// +// Usage: +// +// resolve url +// resolve url content/manual/manual/source/tutorial/install.txt +// +// Flags: +// - --base-url: Override the base URL for resolution +func NewURLCommand() *cobra.Command { + var baseURL string + + cmd := &cobra.Command{ + Use: "url ", + Short: "Resolve a source .txt file to its production URL", + Long: `Resolve a source .txt file from the documentation monorepo to its production URL. + +This command takes a path to a .txt source file and outputs the corresponding +production URL on mongodb.com. + +How It Works: + 1. Identifies the project from the file path (e.g., content/manual/...) + 2. Extracts the page path relative to the source directory + 3. Constructs the production URL based on the project's URL slug + +File Path Resolution: + Paths can be specified as: + 1. Absolute path: /full/path/to/file.txt + 2. Relative to monorepo root (if configured): content/manual/manual/source/index.txt + 3. Relative to current directory: ./source/index.txt + +Examples: + # Resolve a file to its production URL + resolve url content/manual/manual/source/tutorial/install.txt + # Output: https://www.mongodb.com/docs/manual/tutorial/install/ + + # Resolve an index file + resolve url content/atlas/source/index.txt + # Output: https://www.mongodb.com/docs/atlas/ + + # Override the base URL + resolve url content/manual/manual/source/reference/method.txt --base-url https://docs-staging.mongodb.com`, + Args: cobra.ExactArgs(1), + RunE: func(cmd *cobra.Command, args []string) error { + // Resolve file path (supports absolute, monorepo-relative, or cwd-relative) + filePath, err := config.ResolveFilePath(args[0]) + if err != nil { + return err + } + return runResolveURL(filePath, baseURL) + }, + } + + cmd.Flags().StringVar(&baseURL, "base-url", "https://www.mongodb.com/docs", "Base URL for production documentation") + + return cmd +} + +// runResolveURL executes the URL resolution operation. +func runResolveURL(filePath string, baseURL string) error { + // Resolve the file to a URL + productionURL, err := ResolveFileToURL(filePath, baseURL) + if err != nil { + return fmt.Errorf("failed to resolve URL: %w", err) + } + + // Print the result + fmt.Println(productionURL) + + return nil +} + diff --git a/main.go b/main.go index d8cbd03..f374df0 100644 --- a/main.go +++ b/main.go @@ -10,6 +10,7 @@ // - analyze: Analyze RST file structures and relationships // - compare: Compare files across different versions // - count: Count documentation content (code examples, pages) +// - resolve: Resolve paths and URLs between source files and production package main import ( @@ -20,6 +21,7 @@ import ( "github.com/grove-platform/audit-cli/commands/count" "github.com/grove-platform/audit-cli/commands/extract" "github.com/grove-platform/audit-cli/commands/report" + "github.com/grove-platform/audit-cli/commands/resolve" "github.com/grove-platform/audit-cli/commands/search" "github.com/spf13/cobra" ) @@ -55,6 +57,7 @@ Designed for maintenance tasks, scoping work, and reporting to stakeholders.`, rootCmd.AddCommand(compare.NewCompareCommand()) rootCmd.AddCommand(count.NewCountCommand()) rootCmd.AddCommand(report.NewReportCommand()) + rootCmd.AddCommand(resolve.NewResolveCommand()) err := rootCmd.Execute() if err != nil { From b92e06bfd9c5693197be18505787e559c4d415f4 Mon Sep 17 00:00:00 2001 From: Kyle Rollins <115574589+krollins-mdb@users.noreply.github.com> Date: Tue, 10 Mar 2026 09:17:16 -0500 Subject: [PATCH 2/5] Add docs set scanning mode and computed fields to testable-code report - Add `--for-docs-set` flag to scan all pages in specified content directories instead of requiring a CSV file - Add `--current-only` flag to filter to current version pages when scanning docs sets (default: true) - Add `--base-url` flag for resolving page URLs (default: https://www.mongodb.com/docs) - Add `DocsSet` field to PageEntry and PageReport to track content directory name - Add computed fields to PageReport: `TotalUntested` (TotalExamples - TotalTested) and `NeedsToBeTested` (true if TotalTestable > TotalTested) - Make source paths relative to content directory in CSV output for better readability - Update command usage to support both CSV mode and docs set scanning mode - Make CSV file argument optional when using docs set mode --- .../report/testable-code/docs_set_scanner.go | 153 ++ commands/report/testable-code/output.go | 29 +- .../report/testable-code/testable_code.go | 153 +- .../testable-code/testable_code_test.go | 34 +- commands/report/testable-code/types.go | 10 +- manual-report.csv | 2336 +++++++++++++++++ 6 files changed, 2680 insertions(+), 35 deletions(-) create mode 100644 commands/report/testable-code/docs_set_scanner.go create mode 100644 manual-report.csv diff --git a/commands/report/testable-code/docs_set_scanner.go b/commands/report/testable-code/docs_set_scanner.go new file mode 100644 index 0000000..512f012 --- /dev/null +++ b/commands/report/testable-code/docs_set_scanner.go @@ -0,0 +1,153 @@ +// Package testablecode provides the testable-code subcommand for the report command. +// This file handles scanning documentation sets to find all pages. +package testablecode + +import ( + "fmt" + "os" + "path/filepath" + "sort" + "strings" + + resolveurl "github.com/grove-platform/audit-cli/commands/resolve/url" + "github.com/grove-platform/audit-cli/internal/projectinfo" +) + +// ScanDocsSets scans one or more documentation sets (content directories) and returns +// PageEntry structs for all pages found, with URLs resolved using the resolve url logic. +// +// Parameters: +// - monorepoPath: Path to the docs monorepo root +// - docsSets: List of content directory names to scan (e.g., "cloud-docs", "golang") +// - currentOnly: If true, only scan the current version for versioned projects +// - baseURL: Base URL for production documentation (e.g., https://www.mongodb.com/docs) +// +// Returns: +// - []PageEntry: List of page entries with rank (page number within doc set) and URL +// - error: Any error encountered during scanning +func ScanDocsSets(monorepoPath string, docsSets []string, currentOnly bool, baseURL string) ([]PageEntry, error) { + if len(docsSets) == 0 { + return nil, fmt.Errorf("at least one docs set must be specified") + } + + contentDir := filepath.Join(monorepoPath, "content") + if _, err := os.Stat(contentDir); os.IsNotExist(err) { + return nil, fmt.Errorf("content directory not found: %s", contentDir) + } + + var allEntries []PageEntry + rank := 1 + + for _, docsSet := range docsSets { + docsSetPath := filepath.Join(contentDir, docsSet) + if _, err := os.Stat(docsSetPath); os.IsNotExist(err) { + return nil, fmt.Errorf("docs set not found: %s", docsSet) + } + + entries, err := scanSingleDocsSet(monorepoPath, docsSet, currentOnly, baseURL, &rank) + if err != nil { + return nil, fmt.Errorf("failed to scan docs set %s: %w", docsSet, err) + } + allEntries = append(allEntries, entries...) + } + + return allEntries, nil +} + +// scanSingleDocsSet scans a single docs set and returns PageEntry structs. +// The rank parameter is a pointer so it can be incremented across multiple doc sets. +func scanSingleDocsSet(monorepoPath, docsSet string, currentOnly bool, baseURL string, rank *int) ([]PageEntry, error) { + contentDir := filepath.Join(monorepoPath, "content") + docsSetPath := filepath.Join(contentDir, docsSet) + + // Collect all .txt files + var txtFiles []string + + err := filepath.Walk(docsSetPath, func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + + // Skip directories we shouldn't scan + if info.IsDir() { + dirName := info.Name() + // Skip code-examples directories + if dirName == "code-examples" { + return filepath.SkipDir + } + return nil + } + + // Only process .txt files + if filepath.Ext(path) != ".txt" { + return nil + } + + // Check if this is in a source directory + relPath, _ := filepath.Rel(docsSetPath, path) + if !strings.Contains(relPath, "source"+string(filepath.Separator)) { + return nil + } + + // If currentOnly, filter to only current version + if currentOnly { + version := extractVersionFromFilePath(relPath) + if version != "" && !projectinfo.IsCurrentVersion(version) { + return nil + } + } + + txtFiles = append(txtFiles, path) + return nil + }) + + if err != nil { + return nil, err + } + + // Sort files for deterministic output + sort.Strings(txtFiles) + + // Convert each file to a PageEntry with resolved URL + var entries []PageEntry + for _, filePath := range txtFiles { + url, err := resolveurl.ResolveFileToURL(filePath, baseURL) + if err != nil { + // Log warning but continue with other files + fmt.Fprintf(os.Stderr, "Warning: Could not resolve URL for %s: %v\n", filePath, err) + continue + } + + entries = append(entries, PageEntry{ + Rank: *rank, + URL: url, + DocsSet: docsSet, + }) + *rank++ + } + + return entries, nil +} + +// extractVersionFromFilePath extracts the version from a relative file path. +// For versioned projects: version/source/file.txt -> "version" +// For non-versioned projects: source/file.txt -> "" +func extractVersionFromFilePath(relPath string) string { + parts := strings.Split(relPath, string(filepath.Separator)) + if len(parts) < 2 { + return "" + } + + // If first part is "source", this is non-versioned + if parts[0] == "source" { + return "" + } + + // Check if first part looks like a version + if projectinfo.IsVersionDirectory(parts[0]) { + return parts[0] + } + + return "" +} + diff --git a/commands/report/testable-code/output.go b/commands/report/testable-code/output.go index e1b8753..1e45503 100644 --- a/commands/report/testable-code/output.go +++ b/commands/report/testable-code/output.go @@ -9,10 +9,11 @@ import ( ) // BuildPageReport builds a PageReport from a PageAnalysis. -func BuildPageReport(analysis *PageAnalysis) PageReport { +func BuildPageReport(analysis *PageAnalysis, docsSet string) PageReport { report := PageReport{ Rank: analysis.Rank, URL: analysis.URL, + DocsSet: docsSet, SourcePath: analysis.SourcePath, ContentDir: analysis.ContentDir, Error: analysis.Error, @@ -65,6 +66,10 @@ func BuildPageReport(analysis *PageAnalysis) PageReport { } } + // Compute derived fields + report.TotalUntested = report.TotalExamples - report.TotalTested + report.NeedsToBeTested = report.TotalTestable > report.TotalTested + return report } @@ -166,7 +171,7 @@ func outputCSVSummary(w io.Writer, reports []PageReport) error { for _, report := range reports { // Escape fields that might contain commas or quotes url := escapeCSV(report.URL) - sourcePath := escapeCSV(report.SourcePath) + sourcePath := escapeCSV(makeSourcePathRelative(report.SourcePath)) contentDir := escapeCSV(report.ContentDir) errorMsg := escapeCSV(report.Error) @@ -189,7 +194,7 @@ func outputCSVDetails(w io.Writer, reports []PageReport) error { for _, report := range reports { // Escape fields that might contain commas or quotes url := escapeCSV(report.URL) - sourcePath := escapeCSV(report.SourcePath) + sourcePath := escapeCSV(makeSourcePathRelative(report.SourcePath)) contentDir := escapeCSV(report.ContentDir) errorMsg := escapeCSV(report.Error) @@ -238,6 +243,24 @@ func outputCSVDetails(w io.Writer, reports []PageReport) error { return nil } +// makeSourcePathRelative converts an absolute source path to be relative to the content directory. +// For example: /path/to/monorepo/content/cloud-docs/source/page.txt -> cloud-docs/source/page.txt +func makeSourcePathRelative(sourcePath string) string { + if sourcePath == "" { + return "" + } + + // Find the content directory marker and return everything after it + const contentMarker = "/content/" + idx := strings.Index(sourcePath, contentMarker) + if idx >= 0 { + return sourcePath[idx+len(contentMarker):] + } + + // Fallback: return the original path if content marker not found + return sourcePath +} + // escapeCSV escapes a string for CSV output. // If the string contains commas, quotes, or newlines, it wraps in quotes and escapes internal quotes. func escapeCSV(s string) string { diff --git a/commands/report/testable-code/testable_code.go b/commands/report/testable-code/testable_code.go index 594a503..abea8fb 100644 --- a/commands/report/testable-code/testable_code.go +++ b/commands/report/testable-code/testable_code.go @@ -52,21 +52,34 @@ func NewTestableCodeCommand() *cobra.Command { var outputFile string var filters []string var listDrivers bool + var forDocsSets []string + var currentOnly bool + var baseURL string cmd := &cobra.Command{ - Use: "testable-code [monorepo-path]", - Short: "Analyze testable code examples on pages from analytics data", - Long: `Analyze testable code examples on documentation pages based on analytics CSV data. + Use: "testable-code [csv-file] [monorepo-path]", + Short: "Analyze testable code examples on pages from analytics data or docs sets", + Long: `Analyze testable code examples on documentation pages based on analytics CSV data +or by scanning specified documentation sets directly. -Takes a CSV file with page rankings and URLs, resolves each URL to its source file -in the monorepo, collects code examples (literalinclude, code-block, io-code-block), -and generates a report with: +INPUT MODES: + +1. CSV Mode (default): Takes a CSV file with page rankings and URLs. + Example: audit-cli report testable-code analytics.csv /path/to/monorepo + +2. Docs Set Mode: Scan all pages in specified content directories. + Example: audit-cli report testable-code --for-docs-set cloud-docs,golang,node + +For each page, the command resolves the URL to its source file in the monorepo, +collects code examples (literalinclude, code-block, io-code-block), and generates +a report with: - Total code examples per page - Breakdown by product/language - Input vs output counts (for io-code-block) - - Tested vs untested counts + - Tested vs untested counts (Untested = Total - Tested) - Testable count (examples that could be tested based on product) - Maybe testable count (javascript/shell examples without clear context) + - NeedsToBeTested flag (Yes if Testable > Tested) The CSV file should have columns for rank and URL. The first row is treated as a header. @@ -102,9 +115,24 @@ Output formats: return runListDrivers() } - // Require CSV file if not listing drivers + // Determine input mode: docs set scan or CSV + if len(forDocsSets) > 0 { + // Docs set mode - scan specified content directories + var cmdLineArg string + if len(args) > 0 { + cmdLineArg = args[0] + } + monorepoPath, err := config.GetMonorepoPath(cmdLineArg) + if err != nil { + return err + } + + return runTestableCodeForDocsSets(forDocsSets, monorepoPath, baseURL, currentOnly, outputFormat, showDetails, outputFile, filters) + } + + // CSV mode - require CSV file if len(args) < 1 { - return fmt.Errorf("requires at least 1 arg(s), only received 0") + return fmt.Errorf("requires a CSV file or use --for-docs-set to scan docs sets directly") } csvPath := args[0] @@ -128,6 +156,9 @@ Output formats: cmd.Flags().StringVarP(&outputFile, "output", "o", "", "Output file path (default: stdout)") cmd.Flags().StringSliceVar(&filters, "filter", nil, "Filter pages by product area (search, vector-search, drivers, driver:, mongosh)") cmd.Flags().BoolVar(&listDrivers, "list-drivers", false, "List all drivers from the Snooty Data API") + cmd.Flags().StringSliceVar(&forDocsSets, "for-docs-set", nil, "Scan all pages in specified docs sets (content directory names)") + cmd.Flags().BoolVar(¤tOnly, "current-only", true, "When scanning docs sets, only include current version pages (default: true)") + cmd.Flags().StringVar(&baseURL, "base-url", "https://www.mongodb.com/docs", "Base URL for resolving page URLs") return cmd } @@ -148,8 +179,8 @@ func runListDrivers() error { // Build a list of driver info and sort by project name (the filter value) type driverInfo struct { - projectName string - slug string + projectName string + slug string hasTestInfra bool } drivers := make([]driverInfo, 0, len(driverSlugs)) @@ -187,6 +218,97 @@ func runListDrivers() error { return nil } +// runTestableCodeForDocsSets runs the testable-code analysis by scanning specified docs sets. +func runTestableCodeForDocsSets(docsSets []string, monorepoPath, baseURL string, currentOnly bool, outputFormat string, showDetails bool, outputFile string, filters []string) error { + fmt.Fprintf(os.Stderr, "Scanning docs sets: %v\n", docsSets) + + // Scan docs sets to get page entries + entries, err := ScanDocsSets(monorepoPath, docsSets, currentOnly, baseURL) + if err != nil { + return fmt.Errorf("failed to scan docs sets: %w", err) + } + + fmt.Fprintf(os.Stderr, "Found %d pages in docs sets\n", len(entries)) + + if len(entries) == 0 { + return fmt.Errorf("no pages found in specified docs sets") + } + + // Get URL mapping - needed for driver filters and page analysis + urlMapping, err := config.GetURLMapping(monorepoPath) + if err != nil { + return fmt.Errorf("failed to get URL mapping: %w", err) + } + + // Validate filters before applying + if err := validateFilters(filters); err != nil { + return err + } + + // Apply URL filters if specified + if len(filters) > 0 { + originalCount := len(entries) + entries = filterEntries(entries, filters, urlMapping) + fmt.Fprintf(os.Stderr, "Filtered to %d pages matching filter(s): %v\n", len(entries), filters) + if len(entries) == 0 { + fmt.Fprintf(os.Stderr, "Warning: No pages matched the specified filter(s). Original count: %d\n", originalCount) + } + } + + // Load product mappings from rstspec.toml + fmt.Fprintf(os.Stderr, "Loading product mappings from rstspec.toml...\n") + mappings, err := LoadProductMappings() + if err != nil { + return fmt.Errorf("failed to load product mappings: %w", err) + } + + // Analyze each page + var reports []PageReport + for i, entry := range entries { + fmt.Fprintf(os.Stderr, "Analyzing page %d/%d: %s\n", i+1, len(entries), entry.URL) + + analysis, err := AnalyzePage(entry, urlMapping, mappings) + if err != nil { + // Log error but continue with other pages + fmt.Fprintf(os.Stderr, " Warning: %v\n", err) + reports = append(reports, PageReport{ + Rank: entry.Rank, + URL: entry.URL, + DocsSet: entry.DocsSet, + Error: err.Error(), + }) + continue + } + + report := BuildPageReport(analysis, entry.DocsSet) + reports = append(reports, report) + } + + // Determine output writer + var writer *os.File + if outputFile != "" { + f, err := os.Create(outputFile) + if err != nil { + return fmt.Errorf("failed to create output file: %w", err) + } + defer f.Close() + writer = f + fmt.Fprintf(os.Stderr, "Writing output to %s\n", outputFile) + } else { + writer = os.Stdout + } + + // Output results + switch outputFormat { + case "json": + return OutputJSON(writer, reports) + case "csv": + return OutputCSV(writer, reports, showDetails) + default: + return OutputText(writer, reports) + } +} + // runTestableCode is the main entry point for the testable-code command. func runTestableCode(csvPath, monorepoPath, outputFormat string, showDetails bool, outputFile string, filters []string) error { // Parse CSV file @@ -235,14 +357,15 @@ func runTestableCode(csvPath, monorepoPath, outputFormat string, showDetails boo // Log error but continue with other pages fmt.Fprintf(os.Stderr, " Warning: %v\n", err) reports = append(reports, PageReport{ - Rank: entry.Rank, - URL: entry.URL, - Error: err.Error(), + Rank: entry.Rank, + URL: entry.URL, + DocsSet: entry.DocsSet, + Error: err.Error(), }) continue } - report := BuildPageReport(analysis) + report := BuildPageReport(analysis, entry.DocsSet) reports = append(reports, report) } diff --git a/commands/report/testable-code/testable_code_test.go b/commands/report/testable-code/testable_code_test.go index a4b0b99..3b166a3 100644 --- a/commands/report/testable-code/testable_code_test.go +++ b/commands/report/testable-code/testable_code_test.go @@ -14,14 +14,14 @@ import ( func createMockURLMapping() *config.URLMapping { return &config.URLMapping{ URLSlugToProject: map[string]string{ - "drivers/go": "golang", - "drivers/node": "node", - "drivers/csharp": "csharp", + "drivers/go": "golang", + "drivers/node": "node", + "drivers/csharp": "csharp", "languages/python/pymongo-driver": "pymongo", - "drivers/java/sync": "java", - "mongodb-shell": "mongodb-shell", - "mongoid": "mongoid", - "ruby-driver": "ruby-driver", + "drivers/java/sync": "java", + "mongodb-shell": "mongodb-shell", + "mongoid": "mongoid", + "ruby-driver": "ruby-driver", }, DriverSlugs: []string{ "drivers/csharp", @@ -446,8 +446,8 @@ func TestIsMaybeTestable(t *testing.T) { // TestParseComposableOptions tests the parseComposableOptions function. func TestParseComposableOptions(t *testing.T) { testCases := []struct { - options string - expectedLanguage string + options string + expectedLanguage string expectedInterface string }{ {"language=python; interface=driver", "python", "driver"}, @@ -490,7 +490,7 @@ func TestBuildPageReport(t *testing.T) { }, } - report := BuildPageReport(analysis) + report := BuildPageReport(analysis, "") if report.Rank != 1 { t.Errorf("Expected Rank 1, got %d", report.Rank) @@ -507,6 +507,13 @@ func TestBuildPageReport(t *testing.T) { if report.TotalTested != 1 { t.Errorf("Expected TotalTested 1, got %d", report.TotalTested) } + // Verify new computed fields + if report.TotalUntested != 4 { + t.Errorf("Expected TotalUntested 4 (5-1), got %d", report.TotalUntested) + } + if !report.NeedsToBeTested { + t.Errorf("Expected NeedsToBeTested true (4 testable > 1 tested), got false") + } if report.TotalTestable != 4 { t.Errorf("Expected TotalTestable 4, got %d", report.TotalTestable) } @@ -600,9 +607,9 @@ func TestDetermineProduct(t *testing.T) { "go": "Go", }, ComposableInterfaceToProduct: map[string]string{ - "mongosh": "MongoDB Shell", - "driver": "Driver", - "compass": "Compass", + "mongosh": "MongoDB Shell", + "driver": "Driver", + "compass": "Compass", }, } @@ -1171,4 +1178,3 @@ func TestAnalyzePage(t *testing.T) { } }) } - diff --git a/commands/report/testable-code/types.go b/commands/report/testable-code/types.go index 801e2d2..133ebb8 100644 --- a/commands/report/testable-code/types.go +++ b/commands/report/testable-code/types.go @@ -9,10 +9,11 @@ import ( "github.com/grove-platform/audit-cli/internal/snooty" ) -// PageEntry represents a single page from the analytics CSV. +// PageEntry represents a single page from the analytics CSV or docs set scan. type PageEntry struct { - Rank int - URL string + Rank int + URL string + DocsSet string // Content directory name (populated when scanning docs sets) } // CodeExample represents a single code example found in a page. @@ -66,6 +67,7 @@ type ProductStats struct { type PageReport struct { Rank int URL string + DocsSet string // Content directory name (populated when scanning docs sets) SourcePath string ContentDir string Error string @@ -73,8 +75,10 @@ type PageReport struct { TotalInput int TotalOutput int TotalTested int + TotalUntested int // TotalExamples - TotalTested TotalTestable int TotalMaybeTestable int + NeedsToBeTested bool // True if TotalTestable > TotalTested ByProduct map[string]*ProductStats } diff --git a/manual-report.csv b/manual-report.csv new file mode 100644 index 0000000..522e8bd --- /dev/null +++ b/manual-report.csv @@ -0,0 +1,2336 @@ +Rank,URL,SourcePath,ContentDir,Total,Input,Output,Tested,Testable,Maybe,Error +1,https://www.mongodb.com/docs/manual/about/,manual/manual/source/about.txt,manual,0,0,0,0,0,0, +2,https://www.mongodb.com/docs/manual/administration/,manual/manual/source/administration.txt,manual,0,0,0,0,0,0, +3,https://www.mongodb.com/docs/manual/administration/analyzing-mongodb-performance/,manual/manual/source/administration/analyzing-mongodb-performance.txt,manual,0,0,0,0,0,0, +4,https://www.mongodb.com/docs/manual/administration/backup-sharded-clusters/,manual/manual/source/administration/backup-sharded-clusters.txt,manual,0,0,0,0,0,0, +5,https://www.mongodb.com/docs/manual/administration/change-streams-production-recommendations/,manual/manual/source/administration/change-streams-production-recommendations.txt,manual,0,0,0,0,0,0, +6,https://www.mongodb.com/docs/manual/administration/configuration-and-maintenance/,manual/manual/source/administration/configuration-and-maintenance.txt,manual,0,0,0,0,0,0, +7,https://www.mongodb.com/docs/manual/administration/configuration/,manual/manual/source/administration/configuration.txt,manual,14,0,0,0,0,6, +8,https://www.mongodb.com/docs/manual/administration/connection-pool-overview/,manual/manual/source/administration/connection-pool-overview.txt,manual,0,0,0,0,0,0, +9,https://www.mongodb.com/docs/manual/administration/deploy-manage-self-managed-replica-sets/,manual/manual/source/administration/deploy-manage-self-managed-replica-sets.txt,manual,0,0,0,0,0,0, +10,https://www.mongodb.com/docs/manual/administration/deploy-manage-self-managed-sharded-clusters/,manual/manual/source/administration/deploy-manage-self-managed-sharded-clusters.txt,manual,0,0,0,0,0,0, +11,https://www.mongodb.com/docs/manual/administration/free-monitoring/,manual/manual/source/administration/free-monitoring.txt,manual,0,0,0,0,0,0, +12,https://www.mongodb.com/docs/manual/administration/full-time-diagnostic-data-capture/,manual/manual/source/administration/full-time-diagnostic-data-capture.txt,manual,1,0,0,0,0,0, +13,https://www.mongodb.com/docs/manual/administration/health-managers/,manual/manual/source/administration/health-managers.txt,manual,12,0,0,0,0,8, +14,https://www.mongodb.com/docs/manual/administration/install-community/,manual/manual/source/administration/install-community.txt,manual,189,0,0,0,0,171, +15,https://www.mongodb.com/docs/manual/administration/install-enterprise-linux/,manual/manual/source/administration/install-enterprise-linux.txt,manual,0,0,0,0,0,0, +16,https://www.mongodb.com/docs/manual/administration/install-enterprise/,manual/manual/source/administration/install-enterprise.txt,manual,0,0,0,0,0,0, +17,https://www.mongodb.com/docs/manual/administration/monitoring/,manual/manual/source/administration/monitoring.txt,manual,9,0,0,0,0,9, +18,https://www.mongodb.com/docs/manual/administration/performance-tuning/,manual/manual/source/administration/performance-tuning.txt,manual,0,0,0,0,0,0, +19,https://www.mongodb.com/docs/manual/administration/production-checklist-development/,manual/manual/source/administration/production-checklist-development.txt,manual,0,0,0,0,0,0, +20,https://www.mongodb.com/docs/manual/administration/production-checklist-operations/,manual/manual/source/administration/production-checklist-operations.txt,manual,0,0,0,0,0,0, +21,https://www.mongodb.com/docs/manual/administration/production-notes/,manual/manual/source/administration/production-notes.txt,manual,28,0,0,0,0,23, +22,https://www.mongodb.com/docs/manual/administration/query/,manual/manual/source/administration/query.txt,manual,0,0,0,0,0,0, +23,https://www.mongodb.com/docs/manual/administration/replica-set-deployment/,manual/manual/source/administration/replica-set-deployment.txt,manual,0,0,0,0,0,0, +24,https://www.mongodb.com/docs/manual/administration/replica-set-maintenance/,manual/manual/source/administration/replica-set-maintenance.txt,manual,0,0,0,0,0,0, +25,https://www.mongodb.com/docs/manual/administration/replica-set-member-configuration/,manual/manual/source/administration/replica-set-member-configuration.txt,manual,0,0,0,0,0,0, +26,https://www.mongodb.com/docs/manual/administration/security-checklist/,manual/manual/source/administration/security-checklist.txt,manual,0,0,0,0,0,0, +27,https://www.mongodb.com/docs/manual/administration/self-managed-administration/,manual/manual/source/administration/self-managed-administration.txt,manual,0,0,0,0,0,0, +28,https://www.mongodb.com/docs/manual/administration/self-managed-configuration-and-maintenance/,manual/manual/source/administration/self-managed-configuration-and-maintenance.txt,manual,0,0,0,0,0,0, +29,https://www.mongodb.com/docs/manual/administration/self-managed-performance/,manual/manual/source/administration/self-managed-performance.txt,manual,0,0,0,0,0,0, +30,https://www.mongodb.com/docs/manual/administration/self-managed-sharded-cluster-admin/,manual/manual/source/administration/self-managed-sharded-cluster-admin.txt,manual,0,0,0,0,0,0, +31,https://www.mongodb.com/docs/manual/administration/sharded-cluster-administration/,manual/manual/source/administration/sharded-cluster-administration.txt,manual,0,0,0,0,0,0, +32,https://www.mongodb.com/docs/manual/administration/tcmalloc-performance/,manual/manual/source/administration/tcmalloc-performance.txt,manual,19,0,0,0,0,18, +33,https://www.mongodb.com/docs/manual/administration/upgrade-community-to-enterprise/,manual/manual/source/administration/upgrade-community-to-enterprise.txt,manual,0,0,0,0,0,0, +34,https://www.mongodb.com/docs/manual/aggregation/,manual/manual/source/aggregation.txt,manual,5,0,0,0,0,5, +35,https://www.mongodb.com/docs/manual/appendix/security/,manual/manual/source/appendix/security.txt,manual,0,0,0,0,0,0, +36,https://www.mongodb.com/docs/manual/appendix/security/appendixA-openssl-ca/,manual/manual/source/appendix/security/appendixA-openssl-ca.txt,manual,7,0,0,0,0,6, +37,https://www.mongodb.com/docs/manual/appendix/security/appendixB-openssl-server/,manual/manual/source/appendix/security/appendixB-openssl-server.txt,manual,8,0,0,0,0,7, +38,https://www.mongodb.com/docs/manual/appendix/security/appendixC-openssl-client/,manual/manual/source/appendix/security/appendixC-openssl-client.txt,manual,8,0,0,0,0,7, +39,https://www.mongodb.com/docs/manual/applications/data-models-applications/,manual/manual/source/applications/data-models-applications.txt,manual,0,0,0,0,0,0, +40,https://www.mongodb.com/docs/manual/applications/data-models-relationships/,manual/manual/source/applications/data-models-relationships.txt,manual,0,0,0,0,0,0, +41,https://www.mongodb.com/docs/manual/applications/data-models-tree-structures/,manual/manual/source/applications/data-models-tree-structures.txt,manual,0,0,0,0,0,0, +42,https://www.mongodb.com/docs/manual/applications/indexes/,manual/manual/source/applications/indexes.txt,manual,0,0,0,0,0,0, +43,https://www.mongodb.com/docs/manual/applications/replication/,manual/manual/source/applications/replication.txt,manual,0,0,0,0,0,0, +44,https://www.mongodb.com/docs/manual/changeStreams/,manual/manual/source/changeStreams.txt,manual,63,0,0,0,26,7, +45,https://www.mongodb.com/docs/manual/contents/,manual/manual/source/contents.txt,manual,0,0,0,0,0,0, +46,https://www.mongodb.com/docs/manual/core/LDAP-deprecation/,manual/manual/source/core/LDAP-deprecation.txt,manual,0,0,0,0,0,0, +47,https://www.mongodb.com/docs/manual/core/aggregation-pipeline-limits/,manual/manual/source/core/aggregation-pipeline-limits.txt,manual,2,0,0,0,0,2, +48,https://www.mongodb.com/docs/manual/core/aggregation-pipeline-optimization/,manual/manual/source/core/aggregation-pipeline-optimization.txt,manual,20,0,0,0,0,20, +49,https://www.mongodb.com/docs/manual/core/aggregation-pipeline-sharded-collections/,manual/manual/source/core/aggregation-pipeline-sharded-collections.txt,manual,0,0,0,0,0,0, +50,https://www.mongodb.com/docs/manual/core/aggregation-pipeline/,manual/manual/source/core/aggregation-pipeline.txt,manual,0,0,0,0,0,0, +51,https://www.mongodb.com/docs/manual/core/auditing/,manual/manual/source/core/auditing.txt,manual,0,0,0,0,0,0, +52,https://www.mongodb.com/docs/manual/core/authentication/,manual/manual/source/core/authentication.txt,manual,0,0,0,0,0,0, +53,https://www.mongodb.com/docs/manual/core/authorization/,manual/manual/source/core/authorization.txt,manual,0,0,0,0,0,0, +54,https://www.mongodb.com/docs/manual/core/automerger-concept/,manual/manual/source/core/automerger-concept.txt,manual,2,0,0,0,0,2, +55,https://www.mongodb.com/docs/manual/core/backups/,manual/manual/source/core/backups.txt,manual,2,0,0,0,0,2, +56,https://www.mongodb.com/docs/manual/core/bulk-write-operations/,manual/manual/source/core/bulk-write-operations.txt,manual,1,0,0,0,0,0, +57,https://www.mongodb.com/docs/manual/core/capped-collections/,manual/manual/source/core/capped-collections.txt,manual,1,0,0,0,0,1, +58,https://www.mongodb.com/docs/manual/core/capped-collections/change-max-docs-capped-collection/,manual/manual/source/core/capped-collections/change-max-docs-capped-collection.txt,manual,2,0,0,0,0,2, +59,https://www.mongodb.com/docs/manual/core/capped-collections/change-size-capped-collection/,manual/manual/source/core/capped-collections/change-size-capped-collection.txt,manual,2,0,0,0,0,2, +60,https://www.mongodb.com/docs/manual/core/capped-collections/check-if-collection-is-capped/,manual/manual/source/core/capped-collections/check-if-collection-is-capped.txt,manual,3,1,1,0,0,3, +61,https://www.mongodb.com/docs/manual/core/capped-collections/convert-collection-to-capped/,manual/manual/source/core/capped-collections/convert-collection-to-capped.txt,manual,4,1,1,0,0,4, +62,https://www.mongodb.com/docs/manual/core/capped-collections/create-capped-collection/,manual/manual/source/core/capped-collections/create-capped-collection.txt,manual,2,0,0,0,0,2, +63,https://www.mongodb.com/docs/manual/core/capped-collections/query-capped-collection/,manual/manual/source/core/capped-collections/query-capped-collection.txt,manual,6,2,2,0,0,6, +64,https://www.mongodb.com/docs/manual/core/causal-consistency-read-write-concerns/,manual/manual/source/core/causal-consistency-read-write-concerns.txt,manual,0,0,0,0,0,0, +65,https://www.mongodb.com/docs/manual/core/clustered-collections/,manual/manual/source/core/clustered-collections.txt,manual,8,0,0,0,0,8, +66,https://www.mongodb.com/docs/manual/core/collection-level-access-control/,manual/manual/source/core/collection-level-access-control.txt,manual,1,0,0,0,0,1, +67,https://www.mongodb.com/docs/manual/core/config-shard/,manual/manual/source/core/config-shard.txt,manual,2,0,0,0,0,2, +68,https://www.mongodb.com/docs/manual/core/crud/,manual/manual/source/core/crud.txt,manual,0,0,0,0,0,0, +69,https://www.mongodb.com/docs/manual/core/csfle/,manual/manual/source/core/csfle.txt,manual,2,0,0,0,2,0, +70,https://www.mongodb.com/docs/manual/core/csfle/features/,manual/manual/source/core/csfle/features.txt,manual,0,0,0,0,0,0, +71,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/,manual/manual/source/core/csfle/fundamentals.txt,manual,0,0,0,0,0,0, +72,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/automatic-encryption/,manual/manual/source/core/csfle/fundamentals/automatic-encryption.txt,manual,6,0,0,0,6,0, +73,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/create-schema/,manual/manual/source/core/csfle/fundamentals/create-schema.txt,manual,11,0,0,0,0,0, +74,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/encryption-algorithms/,manual/manual/source/core/csfle/fundamentals/encryption-algorithms.txt,manual,3,0,0,0,0,0, +75,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/manage-keys/,manual/manual/source/core/csfle/fundamentals/manage-keys.txt,manual,11,0,0,0,6,0, +76,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/manual-encryption/,manual/manual/source/core/csfle/fundamentals/manual-encryption.txt,manual,31,0,0,0,30,0, +77,https://www.mongodb.com/docs/manual/core/csfle/install/,manual/manual/source/core/csfle/install.txt,manual,1,0,0,0,0,0, +78,https://www.mongodb.com/docs/manual/core/csfle/quick-start/,manual/manual/source/core/csfle/quick-start.txt,manual,72,0,0,0,56,1, +79,https://www.mongodb.com/docs/manual/core/csfle/reference/,manual/manual/source/core/csfle/reference.txt,manual,0,0,0,0,0,0, +80,https://www.mongodb.com/docs/manual/core/csfle/reference/cryptographic-primitives/,manual/manual/source/core/csfle/reference/cryptographic-primitives.txt,manual,0,0,0,0,0,0, +81,https://www.mongodb.com/docs/manual/core/csfle/reference/csfle-options-clients/,manual/manual/source/core/csfle/reference/csfle-options-clients.txt,manual,6,0,0,0,6,0, +82,https://www.mongodb.com/docs/manual/core/csfle/reference/decryption/,manual/manual/source/core/csfle/reference/decryption.txt,manual,0,0,0,0,0,0, +83,https://www.mongodb.com/docs/manual/core/csfle/reference/encryption-components/,manual/manual/source/core/csfle/reference/encryption-components.txt,manual,0,0,0,0,0,0, +84,https://www.mongodb.com/docs/manual/core/csfle/reference/encryption-schemas/,manual/manual/source/core/csfle/reference/encryption-schemas.txt,manual,9,0,0,0,0,1, +85,https://www.mongodb.com/docs/manual/core/csfle/reference/install-library/,manual/manual/source/core/csfle/reference/install-library.txt,manual,10,0,0,0,8,2, +86,https://www.mongodb.com/docs/manual/core/csfle/reference/libmongocrypt/,manual/manual/source/core/csfle/reference/libmongocrypt.txt,manual,18,0,0,0,0,18, +87,https://www.mongodb.com/docs/manual/core/csfle/reference/limitations/,manual/manual/source/core/csfle/reference/limitations.txt,manual,0,0,0,0,0,0, +88,https://www.mongodb.com/docs/manual/core/csfle/reference/server-side-schema/,manual/manual/source/core/csfle/reference/server-side-schema.txt,manual,2,0,0,0,0,1, +89,https://www.mongodb.com/docs/manual/core/csfle/reference/supported-operations/,manual/manual/source/core/csfle/reference/supported-operations.txt,manual,0,0,0,0,0,0, +90,https://www.mongodb.com/docs/manual/core/csfle/tutorials/,manual/manual/source/core/csfle/tutorials.txt,manual,0,0,0,0,0,0, +91,https://www.mongodb.com/docs/manual/core/csfle/tutorials/aws/aws-automatic/,manual/manual/source/core/csfle/tutorials/aws/aws-automatic.txt,manual,85,0,0,0,72,1, +92,https://www.mongodb.com/docs/manual/core/csfle/tutorials/azure/azure-automatic/,manual/manual/source/core/csfle/tutorials/azure/azure-automatic.txt,manual,73,0,0,0,63,0, +93,https://www.mongodb.com/docs/manual/core/csfle/tutorials/gcp/gcp-automatic/,manual/manual/source/core/csfle/tutorials/gcp/gcp-automatic.txt,manual,73,0,0,0,68,1, +94,https://www.mongodb.com/docs/manual/core/csfle/tutorials/kmip/kmip-automatic/,manual/manual/source/core/csfle/tutorials/kmip/kmip-automatic.txt,manual,78,0,0,0,65,3, +95,https://www.mongodb.com/docs/manual/core/csfle/tutorials/right-to-erasure/,manual/manual/source/core/csfle/tutorials/right-to-erasure.txt,manual,8,0,0,0,7,0, +96,https://www.mongodb.com/docs/manual/core/cursors/,manual/manual/source/core/cursors.txt,manual,0,0,0,0,0,0, +97,https://www.mongodb.com/docs/manual/core/databases-and-collections/,manual/manual/source/core/databases-and-collections.txt,manual,3,0,0,0,1,2, +98,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/,manual/manual/source/core/defragment-sharded-collections.txt,manual,0,0,0,0,0,0, +99,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/monitor-defragmentation-sharded-collection/,manual/manual/source/core/defragment-sharded-collections/monitor-defragmentation-sharded-collection.txt,manual,3,0,0,0,0,3, +100,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/start-defragmenting-sharded-collection/,manual/manual/source/core/defragment-sharded-collections/start-defragmenting-sharded-collection.txt,manual,2,0,0,0,0,2, +101,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/stop-defragmenting-sharded-collection/,manual/manual/source/core/defragment-sharded-collections/stop-defragmenting-sharded-collection.txt,manual,2,0,0,0,0,2, +102,https://www.mongodb.com/docs/manual/core/distributed-queries/,manual/manual/source/core/distributed-queries.txt,manual,0,0,0,0,0,0, +103,https://www.mongodb.com/docs/manual/core/document/,manual/manual/source/core/document.txt,manual,9,0,0,0,0,9, +104,https://www.mongodb.com/docs/manual/core/dot-dollar-considerations/,manual/manual/source/core/dot-dollar-considerations.txt,manual,0,0,0,0,0,0, +105,https://www.mongodb.com/docs/manual/core/dot-dollar-considerations/dollar-prefix/,manual/manual/source/core/dot-dollar-considerations/dollar-prefix.txt,manual,10,0,0,0,0,5, +106,https://www.mongodb.com/docs/manual/core/dot-dollar-considerations/periods/,manual/manual/source/core/dot-dollar-considerations/periods.txt,manual,8,1,1,0,0,8, +107,https://www.mongodb.com/docs/manual/core/field-paths/,manual/manual/source/core/field-paths.txt,manual,9,0,0,0,0,9, +108,https://www.mongodb.com/docs/manual/core/gridfs/,manual/manual/source/core/gridfs.txt,manual,6,0,0,0,0,6, +109,https://www.mongodb.com/docs/manual/core/hashed-sharding/,manual/manual/source/core/hashed-sharding.txt,manual,2,0,0,0,0,2, +110,https://www.mongodb.com/docs/manual/core/index-case-insensitive/,manual/manual/source/core/index-case-insensitive.txt,manual,7,0,0,0,0,7, +111,https://www.mongodb.com/docs/manual/core/index-creation/,manual/manual/source/core/index-creation.txt,manual,14,0,0,0,0,13, +112,https://www.mongodb.com/docs/manual/core/index-hidden/,manual/manual/source/core/index-hidden.txt,manual,12,0,0,0,0,12, +113,https://www.mongodb.com/docs/manual/core/index-partial/,manual/manual/source/core/index-partial.txt,manual,14,0,0,14,0,14, +114,https://www.mongodb.com/docs/manual/core/index-sparse/,manual/manual/source/core/index-sparse.txt,manual,13,0,0,13,0,13, +115,https://www.mongodb.com/docs/manual/core/index-ttl/,manual/manual/source/core/index-ttl.txt,manual,8,0,0,0,0,8, +116,https://www.mongodb.com/docs/manual/core/index-unique/,manual/manual/source/core/index-unique.txt,manual,12,0,0,11,0,12, +117,https://www.mongodb.com/docs/manual/core/index-unique/convert-to-unique/,manual/manual/source/core/index-unique/convert-to-unique.txt,manual,12,4,4,0,0,12, +118,https://www.mongodb.com/docs/manual/core/index-unique/create-compound/,manual/manual/source/core/index-unique/create-compound.txt,manual,5,0,0,0,0,5, +119,https://www.mongodb.com/docs/manual/core/index-unique/create/,manual/manual/source/core/index-unique/create.txt,manual,2,0,0,0,0,2, +120,https://www.mongodb.com/docs/manual/core/indexes/create-index/,manual/manual/source/core/indexes/create-index.txt,manual,28,2,2,0,10,8, +121,https://www.mongodb.com/docs/manual/core/indexes/create-index/specify-index-name/,manual/manual/source/core/indexes/create-index/specify-index-name.txt,manual,4,0,0,0,0,4, +122,https://www.mongodb.com/docs/manual/core/indexes/drop-index/,manual/manual/source/core/indexes/drop-index.txt,manual,6,0,0,0,0,6, +123,https://www.mongodb.com/docs/manual/core/indexes/index-properties/,manual/manual/source/core/indexes/index-properties.txt,manual,0,0,0,0,0,0, +124,https://www.mongodb.com/docs/manual/core/indexes/index-types/,manual/manual/source/core/indexes/index-types.txt,manual,0,0,0,0,0,0, +125,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/,manual/manual/source/core/indexes/index-types/geospatial/2d.txt,manual,1,0,0,0,0,1, +126,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/calculate-distances/,manual/manual/source/core/indexes/index-types/geospatial/2d/calculate-distances.txt,manual,5,0,0,0,0,5, +127,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/create/,manual/manual/source/core/indexes/index-types/geospatial/2d/create.txt,manual,3,0,0,0,0,3, +128,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/create/define-location-precision/,manual/manual/source/core/indexes/index-types/geospatial/2d/create/define-location-precision.txt,manual,3,0,0,0,0,3, +129,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/create/define-location-range/,manual/manual/source/core/indexes/index-types/geospatial/2d/create/define-location-range.txt,manual,4,0,0,0,0,4, +130,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/internals/,manual/manual/source/core/indexes/index-types/geospatial/2d/internals.txt,manual,5,0,0,0,0,5, +131,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/query/,manual/manual/source/core/indexes/index-types/geospatial/2d/query.txt,manual,0,0,0,0,0,0, +132,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/query/points-within-a-shape/,manual/manual/source/core/indexes/index-types/geospatial/2d/query/points-within-a-shape.txt,manual,4,0,0,0,0,4, +133,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/query/proximity-flat-surface/,manual/manual/source/core/indexes/index-types/geospatial/2d/query/proximity-flat-surface.txt,manual,4,0,0,0,0,4, +134,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere.txt,manual,1,0,0,0,0,1, +135,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/2dsphere-index-versions/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/2dsphere-index-versions.txt,manual,2,0,0,0,0,2, +136,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/create/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/create.txt,manual,3,0,0,0,0,3, +137,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query.txt,manual,0,0,0,0,0,0, +138,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/geojson-bound-by-polygon/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/geojson-bound-by-polygon.txt,manual,4,0,0,0,0,4, +139,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/intersections-of-geojson-objects/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/intersections-of-geojson-objects.txt,manual,4,0,0,0,0,4, +140,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/points-within-circle-on-sphere/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/points-within-circle-on-sphere.txt,manual,4,0,0,0,0,4, +141,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/proximity-to-geojson/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/proximity-to-geojson.txt,manual,4,0,0,0,0,4, +142,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/restrictions/,manual/manual/source/core/indexes/index-types/geospatial/restrictions.txt,manual,5,0,0,0,0,5, +143,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-compound/,manual/manual/source/core/indexes/index-types/index-compound.txt,manual,2,0,0,0,0,2, +144,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-compound/create-compound-index/,manual/manual/source/core/indexes/index-types/index-compound/create-compound-index.txt,manual,5,0,0,0,0,5, +145,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-compound/sort-order/,manual/manual/source/core/indexes/index-types/index-compound/sort-order.txt,manual,8,0,0,0,0,8, +146,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-geospatial/,manual/manual/source/core/indexes/index-types/index-geospatial.txt,manual,0,0,0,0,0,0, +147,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-hashed/,manual/manual/source/core/indexes/index-types/index-hashed.txt,manual,0,0,0,0,0,0, +148,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-hashed/create/,manual/manual/source/core/indexes/index-types/index-hashed/create.txt,manual,6,0,0,0,0,6, +149,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/,manual/manual/source/core/indexes/index-types/index-multikey.txt,manual,6,0,0,5,0,6, +150,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/create-multikey-index-basic/,manual/manual/source/core/indexes/index-types/index-multikey/create-multikey-index-basic.txt,manual,5,0,0,0,0,5, +151,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/create-multikey-index-embedded/,manual/manual/source/core/indexes/index-types/index-multikey/create-multikey-index-embedded.txt,manual,7,0,0,0,0,7, +152,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/multikey-index-bounds/,manual/manual/source/core/indexes/index-types/index-multikey/multikey-index-bounds.txt,manual,22,0,0,0,0,22, +153,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-single/,manual/manual/source/core/indexes/index-types/index-single.txt,manual,1,0,0,0,0,1, +154,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-single/create-embedded-object-index/,manual/manual/source/core/indexes/index-types/index-single/create-embedded-object-index.txt,manual,5,0,0,0,0,5, +155,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-single/create-single-field-index/,manual/manual/source/core/indexes/index-types/index-single/create-single-field-index.txt,manual,6,0,0,0,0,6, +156,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/,manual/manual/source/core/indexes/index-types/index-text.txt,manual,1,0,0,0,0,1, +157,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/control-text-search-results/,manual/manual/source/core/indexes/index-types/index-text/control-text-search-results.txt,manual,9,0,0,0,0,9, +158,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/create-text-index/,manual/manual/source/core/indexes/index-types/index-text/create-text-index.txt,manual,9,0,0,0,0,9, +159,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/create-wildcard-text-index/,manual/manual/source/core/indexes/index-types/index-text/create-wildcard-text-index.txt,manual,9,0,0,0,0,9, +160,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/limit-number-of-items-scanned-for-text-search/,manual/manual/source/core/indexes/index-types/index-text/limit-number-of-items-scanned-for-text-search.txt,manual,5,0,0,0,0,5, +161,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/specify-language-text-index/create-text-index-multiple-languages/,manual/manual/source/core/indexes/index-types/index-text/specify-language-text-index/create-text-index-multiple-languages.txt,manual,5,0,0,0,0,5, +162,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/specify-language-text-index/use-any-field-to-specify-language/,manual/manual/source/core/indexes/index-types/index-text/specify-language-text-index/use-any-field-to-specify-language.txt,manual,6,0,0,0,0,6, +163,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/specify-text-index-language/,manual/manual/source/core/indexes/index-types/index-text/specify-text-index-language.txt,manual,6,0,0,0,0,6, +164,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/text-index-properties/,manual/manual/source/core/indexes/index-types/index-text/text-index-properties.txt,manual,0,0,0,0,0,0, +165,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/text-index-restrictions/,manual/manual/source/core/indexes/index-types/index-text/text-index-restrictions.txt,manual,2,0,0,0,0,2, +166,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/text-index-versions/,manual/manual/source/core/indexes/index-types/index-text/text-index-versions.txt,manual,2,0,0,0,0,2, +167,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/,manual/manual/source/core/indexes/index-types/index-wildcard.txt,manual,3,0,0,0,0,3, +168,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/create-wildcard-index-all-fields/,manual/manual/source/core/indexes/index-types/index-wildcard/create-wildcard-index-all-fields.txt,manual,9,0,0,0,0,9, +169,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/create-wildcard-index-multiple-fields/,manual/manual/source/core/indexes/index-types/index-wildcard/create-wildcard-index-multiple-fields.txt,manual,9,0,0,0,0,7, +170,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/create-wildcard-index-single-field/,manual/manual/source/core/indexes/index-types/index-wildcard/create-wildcard-index-single-field.txt,manual,9,0,0,0,0,9, +171,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/index-wildcard-compound/,manual/manual/source/core/indexes/index-types/index-wildcard/index-wildcard-compound.txt,manual,9,0,0,0,0,9, +172,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/,manual/manual/source/core/indexes/index-types/index-wildcard/reference.txt,manual,0,0,0,0,0,0, +173,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/embedded-object-behavior/,manual/manual/source/core/indexes/index-types/index-wildcard/reference/embedded-object-behavior.txt,manual,7,0,0,0,0,7, +174,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/restrictions/,manual/manual/source/core/indexes/index-types/index-wildcard/reference/restrictions.txt,manual,13,0,0,0,0,13, +175,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/wildcard-projection-signature/,manual/manual/source/core/indexes/index-types/index-wildcard/reference/wildcard-projection-signature.txt,manual,4,0,0,0,0,4, +176,https://www.mongodb.com/docs/manual/core/inmemory/,manual/manual/source/core/inmemory.txt,manual,19,0,0,0,0,17, +177,https://www.mongodb.com/docs/manual/core/journaling/,manual/manual/source/core/journaling.txt,manual,11,0,0,0,0,10, +178,https://www.mongodb.com/docs/manual/core/kerberos/,manual/manual/source/core/kerberos.txt,manual,2,0,0,0,0,0, +179,https://www.mongodb.com/docs/manual/core/localhost-exception/,manual/manual/source/core/localhost-exception.txt,manual,0,0,0,0,0,0, +180,https://www.mongodb.com/docs/manual/core/long-running-secondary-reads/,manual/manual/source/core/long-running-secondary-reads.txt,manual,6,0,0,0,0,6, +181,https://www.mongodb.com/docs/manual/core/map-reduce-concurrency/,manual/manual/source/core/map-reduce-concurrency.txt,manual,0,0,0,0,0,0, +182,https://www.mongodb.com/docs/manual/core/map-reduce-sharded-collections/,manual/manual/source/core/map-reduce-sharded-collections.txt,manual,0,0,0,0,0,0, +183,https://www.mongodb.com/docs/manual/core/map-reduce/,manual/manual/source/core/map-reduce.txt,manual,0,0,0,0,0,0, +184,https://www.mongodb.com/docs/manual/core/materialized-views/,manual/manual/source/core/materialized-views.txt,manual,10,0,0,0,0,8, +185,https://www.mongodb.com/docs/manual/core/moveable-collections/,manual/manual/source/core/moveable-collections.txt,manual,0,0,0,0,0,0, +186,https://www.mongodb.com/docs/manual/core/moveable-collections/multi-tenant/,manual/manual/source/core/moveable-collections/multi-tenant.txt,manual,0,0,0,0,0,0, +187,https://www.mongodb.com/docs/manual/core/oidc/security-oidc/,manual/manual/source/core/oidc/security-oidc.txt,manual,1,0,0,0,0,1, +188,https://www.mongodb.com/docs/manual/core/oidc/workforce/,manual/manual/source/core/oidc/workforce.txt,manual,1,0,0,0,0,1, +189,https://www.mongodb.com/docs/manual/core/oidc/workforce/configure-oidc/,manual/manual/source/core/oidc/workforce/configure-oidc.txt,manual,9,0,0,0,0,3, +190,https://www.mongodb.com/docs/manual/core/oidc/workforce/database-user-workforce/,manual/manual/source/core/oidc/workforce/database-user-workforce.txt,manual,5,0,0,0,0,2, +191,https://www.mongodb.com/docs/manual/core/oidc/workforce/workforce-external-provider/,manual/manual/source/core/oidc/workforce/workforce-external-provider.txt,manual,0,0,0,0,0,0, +192,https://www.mongodb.com/docs/manual/core/oidc/workload/,manual/manual/source/core/oidc/workload.txt,manual,1,0,0,0,0,1, +193,https://www.mongodb.com/docs/manual/core/oidc/workload/configure-mongodb-workload/,manual/manual/source/core/oidc/workload/configure-mongodb-workload.txt,manual,9,0,0,0,0,4, +194,https://www.mongodb.com/docs/manual/core/oidc/workload/database-user-workload/,manual/manual/source/core/oidc/workload/database-user-workload.txt,manual,5,0,0,0,0,2, +195,https://www.mongodb.com/docs/manual/core/oidc/workload/workload-external-provider/,manual/manual/source/core/oidc/workload/workload-external-provider.txt,manual,0,0,0,0,0,0, +196,https://www.mongodb.com/docs/manual/core/query-optimization/,manual/manual/source/core/query-optimization.txt,manual,11,0,0,0,0,11, +197,https://www.mongodb.com/docs/manual/core/query-plans/,manual/manual/source/core/query-plans.txt,manual,4,0,0,0,0,4, +198,https://www.mongodb.com/docs/manual/core/query-shapes/,manual/manual/source/core/query-shapes.txt,manual,6,0,0,0,0,6, +199,https://www.mongodb.com/docs/manual/core/queryable-encryption/,manual/manual/source/core/queryable-encryption.txt,manual,0,0,0,0,0,0, +200,https://www.mongodb.com/docs/manual/core/queryable-encryption/about-qe-csfle/,manual/manual/source/core/queryable-encryption/about-qe-csfle.txt,manual,0,0,0,0,0,0, +201,https://www.mongodb.com/docs/manual/core/queryable-encryption/features/,manual/manual/source/core/queryable-encryption/features.txt,manual,0,0,0,0,0,0, +202,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/,manual/manual/source/core/queryable-encryption/fundamentals.txt,manual,0,0,0,0,0,0, +203,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/enable-qe/,manual/manual/source/core/queryable-encryption/fundamentals/enable-qe.txt,manual,2,0,0,0,0,2, +204,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/encrypt-and-query/,manual/manual/source/core/queryable-encryption/fundamentals/encrypt-and-query.txt,manual,0,0,0,0,0,0, +205,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/keys-key-vaults/,manual/manual/source/core/queryable-encryption/fundamentals/keys-key-vaults.txt,manual,3,1,1,0,0,0, +206,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/kms-providers/,manual/manual/source/core/queryable-encryption/fundamentals/kms-providers.txt,manual,3,0,0,0,0,1, +207,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/manage-collections/,manual/manual/source/core/queryable-encryption/fundamentals/manage-collections.txt,manual,4,2,2,0,0,3, +208,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/manage-keys/,manual/manual/source/core/queryable-encryption/fundamentals/manage-keys.txt,manual,1,0,0,0,0,1, +209,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/manual-encryption/,manual/manual/source/core/queryable-encryption/fundamentals/manual-encryption.txt,manual,0,0,0,0,0,0, +210,https://www.mongodb.com/docs/manual/core/queryable-encryption/install-library/,manual/manual/source/core/queryable-encryption/install-library.txt,manual,10,0,0,0,8,2, +211,https://www.mongodb.com/docs/manual/core/queryable-encryption/install/,manual/manual/source/core/queryable-encryption/install.txt,manual,40,0,0,0,0,35, +212,https://www.mongodb.com/docs/manual/core/queryable-encryption/overview-enable-qe/,manual/manual/source/core/queryable-encryption/overview-enable-qe.txt,manual,0,0,0,0,0,0, +213,https://www.mongodb.com/docs/manual/core/queryable-encryption/overview-use-qe/,manual/manual/source/core/queryable-encryption/overview-use-qe.txt,manual,0,0,0,0,0,0, +214,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-application/,manual/manual/source/core/queryable-encryption/qe-create-application.txt,manual,152,0,0,0,112,2, +215,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-cmk/,manual/manual/source/core/queryable-encryption/qe-create-cmk.txt,manual,9,0,0,0,3,3, +216,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-encrypted-collection/,manual/manual/source/core/queryable-encryption/qe-create-encrypted-collection.txt,manual,53,0,0,0,43,0, +217,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-encryption-schema/,manual/manual/source/core/queryable-encryption/qe-create-encryption-schema.txt,manual,11,0,0,0,0,10, +218,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-retrieve-encrypted-document/,manual/manual/source/core/queryable-encryption/qe-retrieve-encrypted-document.txt,manual,25,0,0,0,20,0, +219,https://www.mongodb.com/docs/manual/core/queryable-encryption/quick-start/,manual/manual/source/core/queryable-encryption/quick-start.txt,manual,98,0,0,0,72,1, +220,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/,manual/manual/source/core/queryable-encryption/reference.txt,manual,0,0,0,0,0,0, +221,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/compatibility/,manual/manual/source/core/queryable-encryption/reference/compatibility.txt,manual,0,0,0,0,0,0, +222,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/limitations/,manual/manual/source/core/queryable-encryption/reference/limitations.txt,manual,0,0,0,0,0,0, +223,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/qe-options-clients/,manual/manual/source/core/queryable-encryption/reference/qe-options-clients.txt,manual,0,0,0,0,0,0, +224,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/supported-operations/,manual/manual/source/core/queryable-encryption/reference/supported-operations.txt,manual,2,0,0,0,0,0, +225,https://www.mongodb.com/docs/manual/core/queryable-encryption/tutorials/,manual/manual/source/core/queryable-encryption/tutorials.txt,manual,0,0,0,0,0,0, +226,https://www.mongodb.com/docs/manual/core/queryable-encryption/tutorials/explicit-encryption/,manual/manual/source/core/queryable-encryption/tutorials/explicit-encryption.txt,manual,71,0,0,0,65,2, +227,https://www.mongodb.com/docs/manual/core/ranged-sharding/,manual/manual/source/core/ranged-sharding.txt,manual,1,0,0,0,0,1, +228,https://www.mongodb.com/docs/manual/core/read-isolation-consistency-recency/,manual/manual/source/core/read-isolation-consistency-recency.txt,manual,26,0,0,0,8,10, +229,https://www.mongodb.com/docs/manual/core/read-preference-hedge-option/,manual/manual/source/core/read-preference-hedge-option.txt,manual,0,0,0,0,0,0, +230,https://www.mongodb.com/docs/manual/core/read-preference-mechanics/,manual/manual/source/core/read-preference-mechanics.txt,manual,8,0,0,0,0,8, +231,https://www.mongodb.com/docs/manual/core/read-preference-staleness/,manual/manual/source/core/read-preference-staleness.txt,manual,0,0,0,0,0,0, +232,https://www.mongodb.com/docs/manual/core/read-preference-tags/,manual/manual/source/core/read-preference-tags.txt,manual,8,0,0,0,0,5, +233,https://www.mongodb.com/docs/manual/core/read-preference-use-cases/,manual/manual/source/core/read-preference-use-cases.txt,manual,9,0,0,0,0,9, +234,https://www.mongodb.com/docs/manual/core/read-preference/,manual/manual/source/core/read-preference.txt,manual,8,0,0,0,0,8, +235,https://www.mongodb.com/docs/manual/core/replica-set-arbiter/,manual/manual/source/core/replica-set-arbiter.txt,manual,10,0,0,0,0,9, +236,https://www.mongodb.com/docs/manual/core/replica-set-architecture-geographically-distributed/,manual/manual/source/core/replica-set-architecture-geographically-distributed.txt,manual,0,0,0,0,0,0, +237,https://www.mongodb.com/docs/manual/core/replica-set-architecture-three-members/,manual/manual/source/core/replica-set-architecture-three-members.txt,manual,0,0,0,0,0,0, +238,https://www.mongodb.com/docs/manual/core/replica-set-architectures/,manual/manual/source/core/replica-set-architectures.txt,manual,0,0,0,0,0,0, +239,https://www.mongodb.com/docs/manual/core/replica-set-delayed-member/,manual/manual/source/core/replica-set-delayed-member.txt,manual,1,0,0,0,0,1, +240,https://www.mongodb.com/docs/manual/core/replica-set-elections/,manual/manual/source/core/replica-set-elections.txt,manual,1,0,0,0,0,1, +241,https://www.mongodb.com/docs/manual/core/replica-set-hidden-member/,manual/manual/source/core/replica-set-hidden-member.txt,manual,1,0,0,0,0,0, +242,https://www.mongodb.com/docs/manual/core/replica-set-high-availability/,manual/manual/source/core/replica-set-high-availability.txt,manual,0,0,0,0,0,0, +243,https://www.mongodb.com/docs/manual/core/replica-set-members/,manual/manual/source/core/replica-set-members.txt,manual,12,0,0,0,0,11, +244,https://www.mongodb.com/docs/manual/core/replica-set-oplog/,manual/manual/source/core/replica-set-oplog.txt,manual,16,0,0,0,0,14, +245,https://www.mongodb.com/docs/manual/core/replica-set-primary/,manual/manual/source/core/replica-set-primary.txt,manual,0,0,0,0,0,0, +246,https://www.mongodb.com/docs/manual/core/replica-set-priority-0-member/,manual/manual/source/core/replica-set-priority-0-member.txt,manual,0,0,0,0,0,0, +247,https://www.mongodb.com/docs/manual/core/replica-set-rollbacks/,manual/manual/source/core/replica-set-rollbacks.txt,manual,14,0,0,0,0,12, +248,https://www.mongodb.com/docs/manual/core/replica-set-secondary/,manual/manual/source/core/replica-set-secondary.txt,manual,2,0,0,0,0,2, +249,https://www.mongodb.com/docs/manual/core/replica-set-sync/,manual/manual/source/core/replica-set-sync.txt,manual,2,0,0,0,0,2, +250,https://www.mongodb.com/docs/manual/core/replica-set-write-concern/,manual/manual/source/core/replica-set-write-concern.txt,manual,1,0,0,0,0,1, +251,https://www.mongodb.com/docs/manual/core/reshard-to-same-key/,manual/manual/source/core/reshard-to-same-key.txt,manual,3,0,0,0,0,1, +252,https://www.mongodb.com/docs/manual/core/retryable-reads/,manual/manual/source/core/retryable-reads.txt,manual,0,0,0,0,0,0, +253,https://www.mongodb.com/docs/manual/core/retryable-writes/,manual/manual/source/core/retryable-writes.txt,manual,3,0,0,0,0,3, +254,https://www.mongodb.com/docs/manual/core/rolling-index-builds/,manual/manual/source/core/rolling-index-builds.txt,manual,0,0,0,0,0,0, +255,https://www.mongodb.com/docs/manual/core/schema-validation/,manual/manual/source/core/schema-validation.txt,manual,0,0,0,0,0,0, +256,https://www.mongodb.com/docs/manual/core/schema-validation/bypass-document-validation/,manual/manual/source/core/schema-validation/bypass-document-validation.txt,manual,5,0,0,0,0,5, +257,https://www.mongodb.com/docs/manual/core/schema-validation/handle-invalid-documents/,manual/manual/source/core/schema-validation/handle-invalid-documents.txt,manual,7,0,0,0,0,7, +258,https://www.mongodb.com/docs/manual/core/schema-validation/specify-json-schema/,manual/manual/source/core/schema-validation/specify-json-schema.txt,manual,8,2,2,0,0,6, +259,https://www.mongodb.com/docs/manual/core/schema-validation/specify-json-schema/json-schema-tips/,manual/manual/source/core/schema-validation/specify-json-schema/json-schema-tips.txt,manual,6,0,0,0,0,6, +260,https://www.mongodb.com/docs/manual/core/schema-validation/specify-json-schema/specify-allowed-field-values/,manual/manual/source/core/schema-validation/specify-json-schema/specify-allowed-field-values.txt,manual,6,0,0,0,0,6, +261,https://www.mongodb.com/docs/manual/core/schema-validation/specify-query-expression-rules/,manual/manual/source/core/schema-validation/specify-query-expression-rules.txt,manual,6,0,0,0,0,6, +262,https://www.mongodb.com/docs/manual/core/schema-validation/specify-validation-level/,manual/manual/source/core/schema-validation/specify-validation-level.txt,manual,7,0,0,0,0,6, +263,https://www.mongodb.com/docs/manual/core/schema-validation/specify-validation-polymorphic-collections/,manual/manual/source/core/schema-validation/specify-validation-polymorphic-collections.txt,manual,8,2,2,0,0,6, +264,https://www.mongodb.com/docs/manual/core/schema-validation/update-schema-validation/,manual/manual/source/core/schema-validation/update-schema-validation.txt,manual,6,0,0,0,0,6, +265,https://www.mongodb.com/docs/manual/core/schema-validation/use-json-schema-query-conditions/,manual/manual/source/core/schema-validation/use-json-schema-query-conditions.txt,manual,12,0,0,0,0,12, +266,https://www.mongodb.com/docs/manual/core/schema-validation/view-existing-validation-rules/,manual/manual/source/core/schema-validation/view-existing-validation-rules.txt,manual,4,0,0,0,0,4, +267,https://www.mongodb.com/docs/manual/core/search-in-community/connect-to-search/,manual/manual/source/core/search-in-community/connect-to-search.txt,manual,29,7,7,0,14,12, +268,https://www.mongodb.com/docs/manual/core/search-in-community/deploy-rs-keyfile-mongot/,manual/manual/source/core/search-in-community/deploy-rs-keyfile-mongot.txt,manual,10,0,0,0,0,8, +269,https://www.mongodb.com/docs/manual/core/search-in-community/verify-mongot-packages/,manual/manual/source/core/search-in-community/verify-mongot-packages.txt,manual,10,0,0,0,0,8, +270,https://www.mongodb.com/docs/manual/core/security-data-encryption/,manual/manual/source/core/security-data-encryption.txt,manual,0,0,0,0,0,0, +271,https://www.mongodb.com/docs/manual/core/security-encryption-at-rest/,manual/manual/source/core/security-encryption-at-rest.txt,manual,2,0,0,0,0,2, +272,https://www.mongodb.com/docs/manual/core/security-hardening/,manual/manual/source/core/security-hardening.txt,manual,2,0,0,0,0,1, +273,https://www.mongodb.com/docs/manual/core/security-in-use-encryption/,manual/manual/source/core/security-in-use-encryption.txt,manual,0,0,0,0,0,0, +274,https://www.mongodb.com/docs/manual/core/security-internal-authentication/,manual/manual/source/core/security-internal-authentication.txt,manual,26,0,0,0,0,16, +275,https://www.mongodb.com/docs/manual/core/security-ldap-external/,manual/manual/source/core/security-ldap-external.txt,manual,9,0,0,0,0,5, +276,https://www.mongodb.com/docs/manual/core/security-ldap/,manual/manual/source/core/security-ldap.txt,manual,2,0,0,0,0,2, +277,https://www.mongodb.com/docs/manual/core/security-mongodb-configuration/,manual/manual/source/core/security-mongodb-configuration.txt,manual,0,0,0,0,0,0, +278,https://www.mongodb.com/docs/manual/core/security-scram/,manual/manual/source/core/security-scram.txt,manual,0,0,0,0,0,0, +279,https://www.mongodb.com/docs/manual/core/security-transport-encryption/,manual/manual/source/core/security-transport-encryption.txt,manual,15,0,0,0,0,14, +280,https://www.mongodb.com/docs/manual/core/security-user-defined-roles/,manual/manual/source/core/security-user-defined-roles.txt,manual,0,0,0,0,0,0, +281,https://www.mongodb.com/docs/manual/core/security-users/,manual/manual/source/core/security-users.txt,manual,0,0,0,0,0,0, +282,https://www.mongodb.com/docs/manual/core/security-x.509/,manual/manual/source/core/security-x.509.txt,manual,21,0,0,0,0,13, +283,https://www.mongodb.com/docs/manual/core/self-managed-security/,manual/manual/source/core/self-managed-security.txt,manual,0,0,0,0,0,0, +284,https://www.mongodb.com/docs/manual/core/self-managed-storage/,manual/manual/source/core/self-managed-storage.txt,manual,0,0,0,0,0,0, +285,https://www.mongodb.com/docs/manual/core/self-managed-wiredtiger/,manual/manual/source/core/self-managed-wiredtiger.txt,manual,0,0,0,0,0,0, +286,https://www.mongodb.com/docs/manual/core/server-side-javascript/,manual/manual/source/core/server-side-javascript.txt,manual,0,0,0,0,0,0, +287,https://www.mongodb.com/docs/manual/core/sharded-cluster-components/,manual/manual/source/core/sharded-cluster-components.txt,manual,0,0,0,0,0,0, +288,https://www.mongodb.com/docs/manual/core/sharded-cluster-config-servers/,manual/manual/source/core/sharded-cluster-config-servers.txt,manual,9,0,0,0,0,9, +289,https://www.mongodb.com/docs/manual/core/sharded-cluster-query-router/,manual/manual/source/core/sharded-cluster-query-router.txt,manual,5,0,0,0,0,5, +290,https://www.mongodb.com/docs/manual/core/sharded-cluster-requirements/,manual/manual/source/core/sharded-cluster-requirements.txt,manual,2,0,0,0,0,2, +291,https://www.mongodb.com/docs/manual/core/sharded-cluster-shards/,manual/manual/source/core/sharded-cluster-shards.txt,manual,0,0,0,0,0,0, +292,https://www.mongodb.com/docs/manual/core/sharding-balancer-administration/,manual/manual/source/core/sharding-balancer-administration.txt,manual,0,0,0,0,0,0, +293,https://www.mongodb.com/docs/manual/core/sharding-change-a-shard-key/,manual/manual/source/core/sharding-change-a-shard-key.txt,manual,0,0,0,0,0,0, +294,https://www.mongodb.com/docs/manual/core/sharding-change-shard-key-value/,manual/manual/source/core/sharding-change-shard-key-value.txt,manual,1,0,0,0,0,1, +295,https://www.mongodb.com/docs/manual/core/sharding-choose-a-shard-key/,manual/manual/source/core/sharding-choose-a-shard-key.txt,manual,0,0,0,0,0,0, +296,https://www.mongodb.com/docs/manual/core/sharding-consolidate-collection-data/,manual/manual/source/core/sharding-consolidate-collection-data.txt,manual,2,0,0,0,0,2, +297,https://www.mongodb.com/docs/manual/core/sharding-data-partitioning/,manual/manual/source/core/sharding-data-partitioning.txt,manual,0,0,0,0,0,0, +298,https://www.mongodb.com/docs/manual/core/sharding-distribute-collection-data/,manual/manual/source/core/sharding-distribute-collection-data.txt,manual,0,0,0,0,0,0, +299,https://www.mongodb.com/docs/manual/core/sharding-find-shard-key/,manual/manual/source/core/sharding-find-shard-key.txt,manual,2,0,0,0,0,2, +300,https://www.mongodb.com/docs/manual/core/sharding-manage-unsharded-collections/,manual/manual/source/core/sharding-manage-unsharded-collections.txt,manual,2,0,0,0,0,2, +301,https://www.mongodb.com/docs/manual/core/sharding-refine-a-shard-key/,manual/manual/source/core/sharding-refine-a-shard-key.txt,manual,1,0,0,0,0,1, +302,https://www.mongodb.com/docs/manual/core/sharding-reshard-a-collection/,manual/manual/source/core/sharding-reshard-a-collection.txt,manual,11,0,0,0,0,11, +303,https://www.mongodb.com/docs/manual/core/sharding-scaling-strategies/,manual/manual/source/core/sharding-scaling-strategies.txt,manual,0,0,0,0,0,0, +304,https://www.mongodb.com/docs/manual/core/sharding-set-missing-shard-key-fields/,manual/manual/source/core/sharding-set-missing-shard-key-fields.txt,manual,1,0,0,0,0,1, +305,https://www.mongodb.com/docs/manual/core/sharding-shard-a-collection/,manual/manual/source/core/sharding-shard-a-collection.txt,manual,1,0,0,0,0,1, +306,https://www.mongodb.com/docs/manual/core/sharding-shard-key/,manual/manual/source/core/sharding-shard-key.txt,manual,2,0,0,0,0,2, +307,https://www.mongodb.com/docs/manual/core/sharding-start-with-sharding/,manual/manual/source/core/sharding-start-with-sharding.txt,manual,0,0,0,0,0,0, +308,https://www.mongodb.com/docs/manual/core/sharding-troubleshooting-shard-keys/,manual/manual/source/core/sharding-troubleshooting-shard-keys.txt,manual,0,0,0,0,0,0, +309,https://www.mongodb.com/docs/manual/core/storage-engines/,manual/manual/source/core/storage-engines.txt,manual,0,0,0,0,0,0, +310,https://www.mongodb.com/docs/manual/core/tailable-cursors/,manual/manual/source/core/tailable-cursors.txt,manual,1,0,0,0,0,1, +311,https://www.mongodb.com/docs/manual/core/text-search-operators/,manual/manual/source/core/text-search-operators.txt,manual,2,0,0,0,0,2, +312,https://www.mongodb.com/docs/manual/core/text-search/on-prem/,manual/manual/source/core/text-search/on-prem.txt,manual,7,0,0,0,0,7, +313,https://www.mongodb.com/docs/manual/core/timeseries-collections/,manual/manual/source/core/timeseries-collections.txt,manual,1,0,0,0,0,1, +314,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-aggregations-operators/,manual/manual/source/core/timeseries/timeseries-aggregations-operators.txt,manual,26,8,8,20,9,9, +315,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-automatic-removal/,manual/manual/source/core/timeseries/timeseries-automatic-removal.txt,manual,31,4,4,24,12,10, +316,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-best-practices/,manual/manual/source/core/timeseries/timeseries-best-practices.txt,manual,11,0,0,0,0,11, +317,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-bucketing/,manual/manual/source/core/timeseries/timeseries-bucketing.txt,manual,1,0,0,0,0,1, +318,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-build-materialized-views/,manual/manual/source/core/timeseries/timeseries-build-materialized-views.txt,manual,1,0,0,0,0,1, +319,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-check-type/,manual/manual/source/core/timeseries/timeseries-check-type.txt,manual,2,0,0,0,0,2, +320,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-compression/,manual/manual/source/core/timeseries/timeseries-compression.txt,manual,0,0,0,0,0,0, +321,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-considerations/,manual/manual/source/core/timeseries/timeseries-considerations.txt,manual,0,0,0,0,0,0, +322,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-create-configure/,manual/manual/source/core/timeseries/timeseries-create-configure.txt,manual,0,0,0,0,0,0, +323,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-granularity/,manual/manual/source/core/timeseries/timeseries-granularity.txt,manual,6,0,0,0,0,6, +324,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-index/,manual/manual/source/core/timeseries/timeseries-index.txt,manual,0,0,0,0,0,0, +325,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-limitations/,manual/manual/source/core/timeseries/timeseries-limitations.txt,manual,5,0,0,4,3,2, +326,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-migrate-data-into-timeseries-collection/,manual/manual/source/core/timeseries/timeseries-migrate-data-into-timeseries-collection.txt,manual,0,0,0,0,0,0, +327,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-migrate-with-aggregation/,manual/manual/source/core/timeseries/timeseries-migrate-with-aggregation.txt,manual,31,5,5,31,16,11, +328,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-migrate-with-tools/,manual/manual/source/core/timeseries/timeseries-migrate-with-tools.txt,manual,8,0,0,0,0,8, +329,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-procedures/,manual/manual/source/core/timeseries/timeseries-procedures.txt,manual,45,9,9,45,23,16, +330,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-querying/,manual/manual/source/core/timeseries/timeseries-querying.txt,manual,2,0,0,0,0,2, +331,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-quick-start/,manual/manual/source/core/timeseries/timeseries-quick-start.txt,manual,39,4,4,30,20,15, +332,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-secondary-index/,manual/manual/source/core/timeseries/timeseries-secondary-index.txt,manual,69,4,4,56,39,27, +333,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-shard-collection/,manual/manual/source/core/timeseries/timeseries-shard-collection.txt,manual,12,0,0,0,0,12, +334,https://www.mongodb.com/docs/manual/core/transactions-in-applications/,manual/manual/source/core/transactions-in-applications.txt,manual,30,0,0,0,9,11, +335,https://www.mongodb.com/docs/manual/core/transactions-operations/,manual/manual/source/core/transactions-operations.txt,manual,8,0,0,0,0,8, +336,https://www.mongodb.com/docs/manual/core/transactions-production-consideration/,manual/manual/source/core/transactions-production-consideration.txt,manual,9,0,0,0,0,9, +337,https://www.mongodb.com/docs/manual/core/transactions-sharded-clusters/,manual/manual/source/core/transactions-sharded-clusters.txt,manual,8,0,0,0,0,8, +338,https://www.mongodb.com/docs/manual/core/transactions/,manual/manual/source/core/transactions.txt,manual,22,0,0,0,6,0, +339,https://www.mongodb.com/docs/manual/core/unsharded-collections/,manual/manual/source/core/unsharded-collections.txt,manual,1,0,0,0,0,1, +340,https://www.mongodb.com/docs/manual/core/views/,manual/manual/source/core/views.txt,manual,0,0,0,0,0,0, +341,https://www.mongodb.com/docs/manual/core/views/create-view/,manual/manual/source/core/views/create-view.txt,manual,31,0,0,0,0,31, +342,https://www.mongodb.com/docs/manual/core/views/join-collections-with-view/,manual/manual/source/core/views/join-collections-with-view.txt,manual,5,0,0,0,0,5, +343,https://www.mongodb.com/docs/manual/core/views/specify-collation/,manual/manual/source/core/views/specify-collation.txt,manual,3,0,0,0,0,3, +344,https://www.mongodb.com/docs/manual/core/views/supported-operations/,manual/manual/source/core/views/supported-operations.txt,manual,0,0,0,0,0,0, +345,https://www.mongodb.com/docs/manual/core/views/update-view/,manual/manual/source/core/views/update-view.txt,manual,3,0,0,0,0,3, +346,https://www.mongodb.com/docs/manual/core/wiredtiger/,manual/manual/source/core/wiredtiger.txt,manual,1,0,0,0,0,0, +347,https://www.mongodb.com/docs/manual/core/workload-isolation/,manual/manual/source/core/workload-isolation.txt,manual,0,0,0,0,0,0, +348,https://www.mongodb.com/docs/manual/core/write-operations-atomicity/,manual/manual/source/core/write-operations-atomicity.txt,manual,14,0,0,0,0,14, +349,https://www.mongodb.com/docs/manual/core/write-performance/,manual/manual/source/core/write-performance.txt,manual,0,0,0,0,0,0, +350,https://www.mongodb.com/docs/manual/core/zone-sharding/,manual/manual/source/core/zone-sharding.txt,manual,2,0,0,0,0,2, +351,https://www.mongodb.com/docs/manual/crud/,manual/manual/source/crud.txt,manual,0,0,0,0,0,0, +352,https://www.mongodb.com/docs/manual/data-center-awareness/,manual/manual/source/data-center-awareness.txt,manual,0,0,0,0,0,0, +353,https://www.mongodb.com/docs/manual/data-modeling/,manual/manual/source/data-modeling.txt,manual,0,0,0,0,0,0, +354,https://www.mongodb.com/docs/manual/data-modeling/best-practices/,manual/manual/source/data-modeling/best-practices.txt,manual,10,0,0,0,0,10, +355,https://www.mongodb.com/docs/manual/data-modeling/data-consistency/,manual/manual/source/data-modeling/data-consistency.txt,manual,0,0,0,0,0,0, +356,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/,manual/manual/source/data-modeling/design-antipatterns.txt,manual,0,0,0,0,0,0, +357,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/bloated-documents/,manual/manual/source/data-modeling/design-antipatterns/bloated-documents.txt,manual,5,0,0,0,0,5, +358,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/reduce-collections/,manual/manual/source/data-modeling/design-antipatterns/reduce-collections.txt,manual,2,0,0,0,0,2, +359,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/reduce-lookup-operations/,manual/manual/source/data-modeling/design-antipatterns/reduce-lookup-operations.txt,manual,2,0,0,0,0,2, +360,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/unbounded-arrays/,manual/manual/source/data-modeling/design-antipatterns/unbounded-arrays.txt,manual,7,0,0,0,0,7, +361,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/unnecessary-indexes/,manual/manual/source/data-modeling/design-antipatterns/unnecessary-indexes.txt,manual,5,0,0,0,0,5, +362,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/,manual/manual/source/data-modeling/design-patterns.txt,manual,0,0,0,0,0,0, +363,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/archive/,manual/manual/source/data-modeling/design-patterns/archive.txt,manual,6,0,0,0,0,6, +364,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/computed-values/approximation-schema-pattern/,manual/manual/source/data-modeling/design-patterns/computed-values/approximation-schema-pattern.txt,manual,3,0,0,0,0,3, +365,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/computed-values/computed-schema-pattern/,manual/manual/source/data-modeling/design-patterns/computed-values/computed-schema-pattern.txt,manual,6,0,0,0,0,6, +366,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/,manual/manual/source/data-modeling/design-patterns/data-versioning.txt,manual,0,0,0,0,0,0, +367,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/document-versioning/,manual/manual/source/data-modeling/design-patterns/data-versioning/document-versioning.txt,manual,10,0,0,0,0,10, +368,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/schema-versioning/,manual/manual/source/data-modeling/design-patterns/data-versioning/schema-versioning.txt,manual,6,0,0,0,0,6, +369,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/slowly-changing-dimensions/,manual/manual/source/data-modeling/design-patterns/data-versioning/slowly-changing-dimensions.txt,manual,5,0,0,0,0,5, +370,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/,manual/manual/source/data-modeling/design-patterns/group-data.txt,manual,0,0,0,0,0,0, +371,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/attribute-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/attribute-pattern.txt,manual,8,0,0,0,0,8, +372,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/bucket-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/bucket-pattern.txt,manual,7,0,0,0,0,7, +373,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/outlier-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/outlier-pattern.txt,manual,3,0,0,0,0,3, +374,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/subset-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/subset-pattern.txt,manual,3,0,0,0,0,3, +375,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/handle-computed-values/,manual/manual/source/data-modeling/design-patterns/handle-computed-values.txt,manual,0,0,0,0,0,0, +376,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/polymorphic-data/,manual/manual/source/data-modeling/design-patterns/polymorphic-data.txt,manual,0,0,0,0,0,0, +377,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/polymorphic-data/inheritance-schema-pattern/,manual/manual/source/data-modeling/design-patterns/polymorphic-data/inheritance-schema-pattern.txt,manual,5,0,0,0,0,5, +378,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/polymorphic-data/polymorphic-schema-pattern/,manual/manual/source/data-modeling/design-patterns/polymorphic-data/polymorphic-schema-pattern.txt,manual,5,0,0,0,0,5, +379,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/single-collection/,manual/manual/source/data-modeling/design-patterns/single-collection.txt,manual,5,0,0,0,0,5, +380,https://www.mongodb.com/docs/manual/data-modeling/embedding/,manual/manual/source/data-modeling/embedding.txt,manual,0,0,0,0,0,0, +381,https://www.mongodb.com/docs/manual/data-modeling/enforce-consistency/embed-data/,manual/manual/source/data-modeling/enforce-consistency/embed-data.txt,manual,3,0,0,0,0,3, +382,https://www.mongodb.com/docs/manual/data-modeling/enforce-consistency/transactions/,manual/manual/source/data-modeling/enforce-consistency/transactions.txt,manual,7,0,0,0,0,7, +383,https://www.mongodb.com/docs/manual/data-modeling/handle-duplicate-data/,manual/manual/source/data-modeling/handle-duplicate-data.txt,manual,2,0,0,0,0,2, +384,https://www.mongodb.com/docs/manual/data-modeling/referencing/,manual/manual/source/data-modeling/referencing.txt,manual,1,0,0,0,0,1, +385,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/,manual/manual/source/data-modeling/schema-design-process.txt,manual,0,0,0,0,0,0, +386,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/apply-patterns/,manual/manual/source/data-modeling/schema-design-process/apply-patterns.txt,manual,2,0,0,0,0,2, +387,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/create-indexes/,manual/manual/source/data-modeling/schema-design-process/create-indexes.txt,manual,13,0,0,0,0,11, +388,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/identify-workload/,manual/manual/source/data-modeling/schema-design-process/identify-workload.txt,manual,0,0,0,0,0,0, +389,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/map-relationships/,manual/manual/source/data-modeling/schema-design-process/map-relationships.txt,manual,3,0,0,0,0,3, +390,https://www.mongodb.com/docs/manual/faq/,manual/manual/source/faq.txt,manual,0,0,0,0,0,0, +391,https://www.mongodb.com/docs/manual/faq/concurrency/,manual/manual/source/faq/concurrency.txt,manual,10,0,0,0,0,10, +392,https://www.mongodb.com/docs/manual/faq/diagnostics/,manual/manual/source/faq/diagnostics.txt,manual,18,1,1,0,0,12, +393,https://www.mongodb.com/docs/manual/faq/fundamentals/,manual/manual/source/faq/fundamentals.txt,manual,11,0,0,0,0,10, +394,https://www.mongodb.com/docs/manual/faq/indexes/,manual/manual/source/faq/indexes.txt,manual,0,0,0,0,0,0, +395,https://www.mongodb.com/docs/manual/faq/replica-sets/,manual/manual/source/faq/replica-sets.txt,manual,0,0,0,0,0,0, +396,https://www.mongodb.com/docs/manual/faq/sharding/,manual/manual/source/faq/sharding.txt,manual,1,0,0,0,0,1, +397,https://www.mongodb.com/docs/manual/faq/storage/,manual/manual/source/faq/storage.txt,manual,4,0,0,0,0,3, +398,https://www.mongodb.com/docs/manual/geospatial-queries/,manual/manual/source/geospatial-queries.txt,manual,12,0,0,0,0,12, +399,https://www.mongodb.com/docs/manual/,manual/manual/source/index.txt,manual,1,0,0,0,0,1, +400,https://www.mongodb.com/docs/manual/indexes/,manual/manual/source/indexes.txt,manual,0,0,0,0,0,0, +401,https://www.mongodb.com/docs/manual/installation/,manual/manual/source/installation.txt,manual,0,0,0,0,0,0, +402,https://www.mongodb.com/docs/manual/introduction/,manual/manual/source/introduction.txt,manual,0,0,0,0,0,0, +403,https://www.mongodb.com/docs/manual/legacy-opcodes/,manual/manual/source/legacy-opcodes.txt,manual,8,0,0,0,0,3, +404,https://www.mongodb.com/docs/manual/meta/401/,manual/manual/source/meta/401.txt,manual,0,0,0,0,0,0, +405,https://www.mongodb.com/docs/manual/meta/403/,manual/manual/source/meta/403.txt,manual,0,0,0,0,0,0, +406,https://www.mongodb.com/docs/manual/meta/404/,manual/manual/source/meta/404.txt,manual,0,0,0,0,0,0, +407,https://www.mongodb.com/docs/manual/meta/410/,manual/manual/source/meta/410.txt,manual,0,0,0,0,0,0, +408,https://www.mongodb.com/docs/manual/meta/pdfs/,manual/manual/source/meta/pdfs.txt,manual,0,0,0,0,0,0, +409,https://www.mongodb.com/docs/manual/natural-language-to-mongodb/,manual/manual/source/natural-language-to-mongodb.txt,manual,9,0,0,0,0,1, +410,https://www.mongodb.com/docs/manual/query-api/,manual/manual/source/query-api.txt,manual,0,0,0,0,0,0, +411,https://www.mongodb.com/docs/manual/reference/,manual/manual/source/reference.txt,manual,0,0,0,0,0,0, +412,https://www.mongodb.com/docs/manual/reference/aggregation-commands-comparison/,manual/manual/source/reference/aggregation-commands-comparison.txt,manual,0,0,0,0,0,0, +413,https://www.mongodb.com/docs/manual/reference/aggregation-variables/,manual/manual/source/reference/aggregation-variables.txt,manual,0,0,0,0,0,0, +414,https://www.mongodb.com/docs/manual/reference/aggregation/,manual/manual/source/reference/aggregation.txt,manual,0,0,0,0,0,0, +415,https://www.mongodb.com/docs/manual/reference/audit-message/,manual/manual/source/reference/audit-message.txt,manual,0,0,0,0,0,0, +416,https://www.mongodb.com/docs/manual/reference/audit-message/mongo/,manual/manual/source/reference/audit-message/mongo.txt,manual,1,0,0,0,0,0, +417,https://www.mongodb.com/docs/manual/reference/audit-message/ocsf/,manual/manual/source/reference/audit-message/ocsf.txt,manual,3,0,0,0,0,2, +418,https://www.mongodb.com/docs/manual/reference/bios-example-collection/,manual/manual/source/reference/bios-example-collection.txt,manual,1,0,0,0,0,1, +419,https://www.mongodb.com/docs/manual/reference/bson-type-comparison-order/,manual/manual/source/reference/bson-type-comparison-order.txt,manual,9,0,0,0,0,7, +420,https://www.mongodb.com/docs/manual/reference/bson-types/,manual/manual/source/reference/bson-types.txt,manual,15,5,5,0,1,14, +421,https://www.mongodb.com/docs/manual/reference/bson-types/migrate-undefined/,manual/manual/source/reference/bson-types/migrate-undefined.txt,manual,11,0,0,0,0,11, +422,https://www.mongodb.com/docs/manual/reference/built-in-roles/,manual/manual/source/reference/built-in-roles.txt,manual,2,1,1,0,0,2, +423,https://www.mongodb.com/docs/manual/reference/change-events/,manual/manual/source/reference/change-events.txt,manual,1,0,0,0,0,1, +424,https://www.mongodb.com/docs/manual/reference/change-events/create/,manual/manual/source/reference/change-events/create.txt,manual,1,0,0,0,0,0, +425,https://www.mongodb.com/docs/manual/reference/change-events/createIndexes/,manual/manual/source/reference/change-events/createIndexes.txt,manual,1,0,0,0,0,0, +426,https://www.mongodb.com/docs/manual/reference/change-events/delete/,manual/manual/source/reference/change-events/delete.txt,manual,4,0,0,0,0,2, +427,https://www.mongodb.com/docs/manual/reference/change-events/drop/,manual/manual/source/reference/change-events/drop.txt,manual,1,0,0,0,0,0, +428,https://www.mongodb.com/docs/manual/reference/change-events/dropDatabase/,manual/manual/source/reference/change-events/dropDatabase.txt,manual,1,0,0,0,0,0, +429,https://www.mongodb.com/docs/manual/reference/change-events/dropIndexes/,manual/manual/source/reference/change-events/dropIndexes.txt,manual,1,0,0,0,0,0, +430,https://www.mongodb.com/docs/manual/reference/change-events/insert/,manual/manual/source/reference/change-events/insert.txt,manual,1,0,0,0,0,0, +431,https://www.mongodb.com/docs/manual/reference/change-events/invalidate/,manual/manual/source/reference/change-events/invalidate.txt,manual,1,0,0,0,0,0, +432,https://www.mongodb.com/docs/manual/reference/change-events/modify/,manual/manual/source/reference/change-events/modify.txt,manual,1,0,0,0,0,0, +433,https://www.mongodb.com/docs/manual/reference/change-events/refineCollectionShardKey/,manual/manual/source/reference/change-events/refineCollectionShardKey.txt,manual,1,0,0,0,0,0, +434,https://www.mongodb.com/docs/manual/reference/change-events/rename/,manual/manual/source/reference/change-events/rename.txt,manual,1,0,0,0,0,0, +435,https://www.mongodb.com/docs/manual/reference/change-events/replace/,manual/manual/source/reference/change-events/replace.txt,manual,4,0,0,0,0,2, +436,https://www.mongodb.com/docs/manual/reference/change-events/reshardCollection/,manual/manual/source/reference/change-events/reshardCollection.txt,manual,1,0,0,0,0,0, +437,https://www.mongodb.com/docs/manual/reference/change-events/shardCollection/,manual/manual/source/reference/change-events/shardCollection.txt,manual,1,0,0,0,0,0, +438,https://www.mongodb.com/docs/manual/reference/change-events/update/,manual/manual/source/reference/change-events/update.txt,manual,17,1,1,0,0,11, +439,https://www.mongodb.com/docs/manual/reference/cluster-parameters/,manual/manual/source/reference/cluster-parameters.txt,manual,2,0,0,0,0,2, +440,https://www.mongodb.com/docs/manual/reference/cluster-parameters/auditConfig/,manual/manual/source/reference/cluster-parameters/auditConfig.txt,manual,5,0,0,0,0,5, +441,https://www.mongodb.com/docs/manual/reference/cluster-parameters/changeStreamOptions/,manual/manual/source/reference/cluster-parameters/changeStreamOptions.txt,manual,3,0,0,0,0,3, +442,https://www.mongodb.com/docs/manual/reference/cluster-parameters/defaultMaxTimeMS/,manual/manual/source/reference/cluster-parameters/defaultMaxTimeMS.txt,manual,6,1,1,0,0,6, +443,https://www.mongodb.com/docs/manual/reference/cluster-parameters/fleDisableSubstringPreviewParameterLimits/,manual/manual/source/reference/cluster-parameters/fleDisableSubstringPreviewParameterLimits.txt,manual,2,0,0,0,0,2, +444,https://www.mongodb.com/docs/manual/reference/collation-locales-defaults/,manual/manual/source/reference/collation-locales-defaults.txt,manual,11,0,0,0,0,9, +445,https://www.mongodb.com/docs/manual/reference/collation/,manual/manual/source/reference/collation.txt,manual,16,1,1,0,0,14, +446,https://www.mongodb.com/docs/manual/reference/command/,manual/manual/source/reference/command.txt,manual,3,0,0,0,0,3, +447,https://www.mongodb.com/docs/manual/reference/command/abortMoveCollection/,manual/manual/source/reference/command/abortMoveCollection.txt,manual,2,0,0,0,0,2, +448,https://www.mongodb.com/docs/manual/reference/command/abortReshardCollection/,manual/manual/source/reference/command/abortReshardCollection.txt,manual,2,0,0,0,0,2, +449,https://www.mongodb.com/docs/manual/reference/command/abortTransaction/,manual/manual/source/reference/command/abortTransaction.txt,manual,1,0,0,0,0,1, +450,https://www.mongodb.com/docs/manual/reference/command/abortUnshardCollection/,manual/manual/source/reference/command/abortUnshardCollection.txt,manual,2,0,0,0,0,2, +451,https://www.mongodb.com/docs/manual/reference/command/addShard/,manual/manual/source/reference/command/addShard.txt,manual,3,0,0,0,0,3, +452,https://www.mongodb.com/docs/manual/reference/command/addShardToZone/,manual/manual/source/reference/command/addShardToZone.txt,manual,3,0,0,0,0,3, +453,https://www.mongodb.com/docs/manual/reference/command/aggregate/,manual/manual/source/reference/command/aggregate.txt,manual,35,0,0,0,0,33, +454,https://www.mongodb.com/docs/manual/reference/command/analyzeShardKey/,manual/manual/source/reference/command/analyzeShardKey.txt,manual,12,0,0,0,0,9, +455,https://www.mongodb.com/docs/manual/reference/command/appendOplogNote/,manual/manual/source/reference/command/appendOplogNote.txt,manual,3,0,0,0,0,2, +456,https://www.mongodb.com/docs/manual/reference/command/applyOps/,manual/manual/source/reference/command/applyOps.txt,manual,0,0,0,0,0,0, +457,https://www.mongodb.com/docs/manual/reference/command/authenticate/,manual/manual/source/reference/command/authenticate.txt,manual,4,0,0,0,0,4, +458,https://www.mongodb.com/docs/manual/reference/command/autoCompact/,manual/manual/source/reference/command/autoCompact.txt,manual,2,0,0,0,0,2, +459,https://www.mongodb.com/docs/manual/reference/command/balancerCollectionStatus/,manual/manual/source/reference/command/balancerCollectionStatus.txt,manual,6,0,0,0,0,5, +460,https://www.mongodb.com/docs/manual/reference/command/balancerStart/,manual/manual/source/reference/command/balancerStart.txt,manual,2,0,0,0,0,2, +461,https://www.mongodb.com/docs/manual/reference/command/balancerStatus/,manual/manual/source/reference/command/balancerStatus.txt,manual,3,0,0,0,0,2, +462,https://www.mongodb.com/docs/manual/reference/command/balancerStop/,manual/manual/source/reference/command/balancerStop.txt,manual,2,0,0,0,0,2, +463,https://www.mongodb.com/docs/manual/reference/command/buildInfo/,manual/manual/source/reference/command/buildInfo.txt,manual,3,0,0,0,0,3, +464,https://www.mongodb.com/docs/manual/reference/command/bulkWrite/,manual/manual/source/reference/command/bulkWrite.txt,manual,7,0,0,4,0,7, +465,https://www.mongodb.com/docs/manual/reference/command/checkMetadataConsistency/,manual/manual/source/reference/command/checkMetadataConsistency.txt,manual,7,0,0,0,0,6, +466,https://www.mongodb.com/docs/manual/reference/command/cleanupOrphaned/,manual/manual/source/reference/command/cleanupOrphaned.txt,manual,1,0,0,0,0,1, +467,https://www.mongodb.com/docs/manual/reference/command/cleanupReshardCollection/,manual/manual/source/reference/command/cleanupReshardCollection.txt,manual,2,0,0,0,0,2, +468,https://www.mongodb.com/docs/manual/reference/command/clearJumboFlag/,manual/manual/source/reference/command/clearJumboFlag.txt,manual,12,0,0,0,0,12, +469,https://www.mongodb.com/docs/manual/reference/command/cloneCollectionAsCapped/,manual/manual/source/reference/command/cloneCollectionAsCapped.txt,manual,1,0,0,0,0,1, +470,https://www.mongodb.com/docs/manual/reference/command/collMod/,manual/manual/source/reference/command/collMod.txt,manual,17,0,0,0,0,17, +471,https://www.mongodb.com/docs/manual/reference/command/collStats/,manual/manual/source/reference/command/collStats.txt,manual,18,0,0,0,0,17, +472,https://www.mongodb.com/docs/manual/reference/command/commitReshardCollection/,manual/manual/source/reference/command/commitReshardCollection.txt,manual,2,0,0,0,0,2, +473,https://www.mongodb.com/docs/manual/reference/command/commitTransaction/,manual/manual/source/reference/command/commitTransaction.txt,manual,9,0,0,0,0,9, +474,https://www.mongodb.com/docs/manual/reference/command/compact/,manual/manual/source/reference/command/compact.txt,manual,8,2,2,0,0,8, +475,https://www.mongodb.com/docs/manual/reference/command/compactStructuredEncryptionData/,manual/manual/source/reference/command/compactStructuredEncryptionData.txt,manual,1,0,0,0,0,1, +476,https://www.mongodb.com/docs/manual/reference/command/configureCollectionBalancing/,manual/manual/source/reference/command/configureCollectionBalancing.txt,manual,6,0,0,0,0,6, +477,https://www.mongodb.com/docs/manual/reference/command/configureQueryAnalyzer/,manual/manual/source/reference/command/configureQueryAnalyzer.txt,manual,6,1,1,0,0,5, +478,https://www.mongodb.com/docs/manual/reference/command/connPoolStats/,manual/manual/source/reference/command/connPoolStats.txt,manual,6,0,0,0,0,5, +479,https://www.mongodb.com/docs/manual/reference/command/connectionStatus/,manual/manual/source/reference/command/connectionStatus.txt,manual,2,0,0,0,0,2, +480,https://www.mongodb.com/docs/manual/reference/command/convertToCapped/,manual/manual/source/reference/command/convertToCapped.txt,manual,5,0,0,0,0,5, +481,https://www.mongodb.com/docs/manual/reference/command/count/,manual/manual/source/reference/command/count.txt,manual,22,0,0,0,0,20, +482,https://www.mongodb.com/docs/manual/reference/command/create/,manual/manual/source/reference/command/create.txt,manual,41,0,0,0,0,39, +483,https://www.mongodb.com/docs/manual/reference/command/createIndexes/,manual/manual/source/reference/command/createIndexes.txt,manual,46,0,0,0,0,41, +484,https://www.mongodb.com/docs/manual/reference/command/createRole/,manual/manual/source/reference/command/createRole.txt,manual,4,0,0,0,0,4, +485,https://www.mongodb.com/docs/manual/reference/command/createSearchIndexes/,manual/manual/source/reference/command/createSearchIndexes.txt,manual,10,0,0,0,0,10, +486,https://www.mongodb.com/docs/manual/reference/command/createUser/,manual/manual/source/reference/command/createUser.txt,manual,6,0,0,0,0,6, +487,https://www.mongodb.com/docs/manual/reference/command/currentOp/,manual/manual/source/reference/command/currentOp.txt,manual,23,0,0,0,0,21, +488,https://www.mongodb.com/docs/manual/reference/command/dataSize/,manual/manual/source/reference/command/dataSize.txt,manual,2,0,0,0,0,2, +489,https://www.mongodb.com/docs/manual/reference/command/dbHash/,manual/manual/source/reference/command/dbHash.txt,manual,7,0,0,0,0,5, +490,https://www.mongodb.com/docs/manual/reference/command/dbStats/,manual/manual/source/reference/command/dbStats.txt,manual,19,0,0,0,0,18, +491,https://www.mongodb.com/docs/manual/reference/command/delete/,manual/manual/source/reference/command/delete.txt,manual,37,0,0,0,0,35, +492,https://www.mongodb.com/docs/manual/reference/command/distinct/,manual/manual/source/reference/command/distinct.txt,manual,44,0,0,0,0,41, +493,https://www.mongodb.com/docs/manual/reference/command/drop/,manual/manual/source/reference/command/drop.txt,manual,1,0,0,0,0,1, +494,https://www.mongodb.com/docs/manual/reference/command/dropAllRolesFromDatabase/,manual/manual/source/reference/command/dropAllRolesFromDatabase.txt,manual,3,0,0,0,0,3, +495,https://www.mongodb.com/docs/manual/reference/command/dropAllUsersFromDatabase/,manual/manual/source/reference/command/dropAllUsersFromDatabase.txt,manual,3,0,0,0,0,3, +496,https://www.mongodb.com/docs/manual/reference/command/dropConnections/,manual/manual/source/reference/command/dropConnections.txt,manual,6,0,0,0,0,6, +497,https://www.mongodb.com/docs/manual/reference/command/dropDatabase/,manual/manual/source/reference/command/dropDatabase.txt,manual,16,0,0,0,0,15, +498,https://www.mongodb.com/docs/manual/reference/command/dropIndexes/,manual/manual/source/reference/command/dropIndexes.txt,manual,5,0,0,0,0,5, +499,https://www.mongodb.com/docs/manual/reference/command/dropRole/,manual/manual/source/reference/command/dropRole.txt,manual,2,0,0,0,0,2, +500,https://www.mongodb.com/docs/manual/reference/command/dropSearchIndex/,manual/manual/source/reference/command/dropSearchIndex.txt,manual,5,0,0,0,0,5, +501,https://www.mongodb.com/docs/manual/reference/command/dropUser/,manual/manual/source/reference/command/dropUser.txt,manual,2,0,0,0,0,2, +502,https://www.mongodb.com/docs/manual/reference/command/enableSharding/,manual/manual/source/reference/command/enableSharding.txt,manual,3,0,0,0,0,3, +503,https://www.mongodb.com/docs/manual/reference/command/endSessions/,manual/manual/source/reference/command/endSessions.txt,manual,2,0,0,0,0,2, +504,https://www.mongodb.com/docs/manual/reference/command/explain/,manual/manual/source/reference/command/explain.txt,manual,6,0,0,0,0,6, +505,https://www.mongodb.com/docs/manual/reference/command/filemd5/,manual/manual/source/reference/command/filemd5.txt,manual,1,0,0,0,0,1, +506,https://www.mongodb.com/docs/manual/reference/command/find/,manual/manual/source/reference/command/find.txt,manual,28,0,0,0,0,26, +507,https://www.mongodb.com/docs/manual/reference/command/findAndModify/,manual/manual/source/reference/command/findAndModify.txt,manual,56,0,0,0,0,54, +508,https://www.mongodb.com/docs/manual/reference/command/flushRouterConfig/,manual/manual/source/reference/command/flushRouterConfig.txt,manual,3,0,0,0,0,3, +509,https://www.mongodb.com/docs/manual/reference/command/fsync/,manual/manual/source/reference/command/fsync.txt,manual,7,0,0,0,0,6, +510,https://www.mongodb.com/docs/manual/reference/command/fsyncUnlock/,manual/manual/source/reference/command/fsyncUnlock.txt,manual,5,0,0,0,0,5, +511,https://www.mongodb.com/docs/manual/reference/command/getAuditConfig/,manual/manual/source/reference/command/getAuditConfig.txt,manual,4,0,0,0,0,4, +512,https://www.mongodb.com/docs/manual/reference/command/getClusterParameter/,manual/manual/source/reference/command/getClusterParameter.txt,manual,4,0,0,0,0,4, +513,https://www.mongodb.com/docs/manual/reference/command/getCmdLineOpts/,manual/manual/source/reference/command/getCmdLineOpts.txt,manual,2,0,0,0,0,2, +514,https://www.mongodb.com/docs/manual/reference/command/getDefaultRWConcern/,manual/manual/source/reference/command/getDefaultRWConcern.txt,manual,3,0,0,0,0,3, +515,https://www.mongodb.com/docs/manual/reference/command/getLastError/,manual/manual/source/reference/command/getLastError.txt,manual,0,0,0,0,0,0, +516,https://www.mongodb.com/docs/manual/reference/command/getLog/,manual/manual/source/reference/command/getLog.txt,manual,8,0,0,0,0,8, +517,https://www.mongodb.com/docs/manual/reference/command/getMore/,manual/manual/source/reference/command/getMore.txt,manual,10,0,0,0,0,10, +518,https://www.mongodb.com/docs/manual/reference/command/getParameter/,manual/manual/source/reference/command/getParameter.txt,manual,9,0,0,0,0,9, +519,https://www.mongodb.com/docs/manual/reference/command/getShardMap/,manual/manual/source/reference/command/getShardMap.txt,manual,2,0,0,0,0,1, +520,https://www.mongodb.com/docs/manual/reference/command/grantPrivilegesToRole/,manual/manual/source/reference/command/grantPrivilegesToRole.txt,manual,2,0,0,0,0,2, +521,https://www.mongodb.com/docs/manual/reference/command/grantRolesToRole/,manual/manual/source/reference/command/grantRolesToRole.txt,manual,4,0,0,0,0,4, +522,https://www.mongodb.com/docs/manual/reference/command/grantRolesToUser/,manual/manual/source/reference/command/grantRolesToUser.txt,manual,6,0,0,0,0,6, +523,https://www.mongodb.com/docs/manual/reference/command/hello/,manual/manual/source/reference/command/hello.txt,manual,9,0,0,0,0,9, +524,https://www.mongodb.com/docs/manual/reference/command/hostInfo/,manual/manual/source/reference/command/hostInfo.txt,manual,2,0,0,0,0,2, +525,https://www.mongodb.com/docs/manual/reference/command/insert/,manual/manual/source/reference/command/insert.txt,manual,19,0,0,0,0,19, +526,https://www.mongodb.com/docs/manual/reference/command/invalidateUserCache/,manual/manual/source/reference/command/invalidateUserCache.txt,manual,1,0,0,0,0,1, +527,https://www.mongodb.com/docs/manual/reference/command/isdbgrid/,manual/manual/source/reference/command/isdbgrid.txt,manual,3,0,0,0,0,3, +528,https://www.mongodb.com/docs/manual/reference/command/killAllSessions/,manual/manual/source/reference/command/killAllSessions.txt,manual,3,0,0,0,0,3, +529,https://www.mongodb.com/docs/manual/reference/command/killAllSessionsByPattern/,manual/manual/source/reference/command/killAllSessionsByPattern.txt,manual,3,0,0,0,0,3, +530,https://www.mongodb.com/docs/manual/reference/command/killCursors/,manual/manual/source/reference/command/killCursors.txt,manual,13,0,0,0,0,13, +531,https://www.mongodb.com/docs/manual/reference/command/killOp/,manual/manual/source/reference/command/killOp.txt,manual,3,0,0,0,0,3, +532,https://www.mongodb.com/docs/manual/reference/command/killSessions/,manual/manual/source/reference/command/killSessions.txt,manual,2,0,0,0,0,2, +533,https://www.mongodb.com/docs/manual/reference/command/listCollections/,manual/manual/source/reference/command/listCollections.txt,manual,26,0,0,0,0,25, +534,https://www.mongodb.com/docs/manual/reference/command/listCommands/,manual/manual/source/reference/command/listCommands.txt,manual,1,0,0,0,0,1, +535,https://www.mongodb.com/docs/manual/reference/command/listDatabases/,manual/manual/source/reference/command/listDatabases.txt,manual,22,0,0,0,0,20, +536,https://www.mongodb.com/docs/manual/reference/command/listIndexes/,manual/manual/source/reference/command/listIndexes.txt,manual,22,3,3,0,0,15, +537,https://www.mongodb.com/docs/manual/reference/command/listShards/,manual/manual/source/reference/command/listShards.txt,manual,3,0,0,0,0,3, +538,https://www.mongodb.com/docs/manual/reference/command/lockInfo/,manual/manual/source/reference/command/lockInfo.txt,manual,2,0,0,0,0,2, +539,https://www.mongodb.com/docs/manual/reference/command/logApplicationMessage/,manual/manual/source/reference/command/logApplicationMessage.txt,manual,1,0,0,0,0,1, +540,https://www.mongodb.com/docs/manual/reference/command/logRotate/,manual/manual/source/reference/command/logRotate.txt,manual,5,0,0,0,0,4, +541,https://www.mongodb.com/docs/manual/reference/command/logout/,manual/manual/source/reference/command/logout.txt,manual,3,0,0,0,0,3, +542,https://www.mongodb.com/docs/manual/reference/command/mapReduce/,manual/manual/source/reference/command/mapReduce.txt,manual,63,0,0,0,0,60, +543,https://www.mongodb.com/docs/manual/reference/command/mergeAllChunksOnShard/,manual/manual/source/reference/command/mergeAllChunksOnShard.txt,manual,3,0,0,0,0,3, +544,https://www.mongodb.com/docs/manual/reference/command/mergeChunks/,manual/manual/source/reference/command/mergeChunks.txt,manual,6,0,0,0,0,5, +545,https://www.mongodb.com/docs/manual/reference/command/moveChunk/,manual/manual/source/reference/command/moveChunk.txt,manual,4,0,0,0,0,3, +546,https://www.mongodb.com/docs/manual/reference/command/moveCollection/,manual/manual/source/reference/command/moveCollection.txt,manual,2,0,0,0,0,2, +547,https://www.mongodb.com/docs/manual/reference/command/movePrimary/,manual/manual/source/reference/command/movePrimary.txt,manual,2,0,0,0,0,2, +548,https://www.mongodb.com/docs/manual/reference/command/moveRange/,manual/manual/source/reference/command/moveRange.txt,manual,1,0,0,0,0,1, +549,https://www.mongodb.com/docs/manual/reference/command/nav-administration/,manual/manual/source/reference/command/nav-administration.txt,manual,0,0,0,0,0,0, +550,https://www.mongodb.com/docs/manual/reference/command/nav-atlas-search/,manual/manual/source/reference/command/nav-atlas-search.txt,manual,0,0,0,0,0,0, +551,https://www.mongodb.com/docs/manual/reference/command/nav-auditing/,manual/manual/source/reference/command/nav-auditing.txt,manual,0,0,0,0,0,0, +552,https://www.mongodb.com/docs/manual/reference/command/nav-authentication/,manual/manual/source/reference/command/nav-authentication.txt,manual,0,0,0,0,0,0, +553,https://www.mongodb.com/docs/manual/reference/command/nav-diagnostic/,manual/manual/source/reference/command/nav-diagnostic.txt,manual,0,0,0,0,0,0, +554,https://www.mongodb.com/docs/manual/reference/command/nav-plan-cache/,manual/manual/source/reference/command/nav-plan-cache.txt,manual,0,0,0,0,0,0, +555,https://www.mongodb.com/docs/manual/reference/command/nav-replication/,manual/manual/source/reference/command/nav-replication.txt,manual,0,0,0,0,0,0, +556,https://www.mongodb.com/docs/manual/reference/command/nav-role-management/,manual/manual/source/reference/command/nav-role-management.txt,manual,0,0,0,0,0,0, +557,https://www.mongodb.com/docs/manual/reference/command/nav-sessions/,manual/manual/source/reference/command/nav-sessions.txt,manual,0,0,0,0,0,0, +558,https://www.mongodb.com/docs/manual/reference/command/nav-sharding/,manual/manual/source/reference/command/nav-sharding.txt,manual,0,0,0,0,0,0, +559,https://www.mongodb.com/docs/manual/reference/command/nav-user-management/,manual/manual/source/reference/command/nav-user-management.txt,manual,0,0,0,0,0,0, +560,https://www.mongodb.com/docs/manual/reference/command/ping/,manual/manual/source/reference/command/ping.txt,manual,1,0,0,0,0,1, +561,https://www.mongodb.com/docs/manual/reference/command/planCacheClear/,manual/manual/source/reference/command/planCacheClear.txt,manual,4,0,0,0,0,4, +562,https://www.mongodb.com/docs/manual/reference/command/planCacheClearFilters/,manual/manual/source/reference/command/planCacheClearFilters.txt,manual,6,0,0,0,0,6, +563,https://www.mongodb.com/docs/manual/reference/command/planCacheListFilters/,manual/manual/source/reference/command/planCacheListFilters.txt,manual,3,0,0,0,0,2, +564,https://www.mongodb.com/docs/manual/reference/command/planCacheSetFilter/,manual/manual/source/reference/command/planCacheSetFilter.txt,manual,5,0,0,0,0,5, +565,https://www.mongodb.com/docs/manual/reference/command/profile/,manual/manual/source/reference/command/profile.txt,manual,4,0,0,0,0,4, +566,https://www.mongodb.com/docs/manual/reference/command/reIndex/,manual/manual/source/reference/command/reIndex.txt,manual,1,0,0,0,0,1, +567,https://www.mongodb.com/docs/manual/reference/command/refineCollectionShardKey/,manual/manual/source/reference/command/refineCollectionShardKey.txt,manual,9,0,0,0,0,9, +568,https://www.mongodb.com/docs/manual/reference/command/refreshSessions/,manual/manual/source/reference/command/refreshSessions.txt,manual,2,0,0,0,0,2, +569,https://www.mongodb.com/docs/manual/reference/command/removeQuerySettings/,manual/manual/source/reference/command/removeQuerySettings.txt,manual,8,0,0,0,0,8, +570,https://www.mongodb.com/docs/manual/reference/command/removeShard/,manual/manual/source/reference/command/removeShard.txt,manual,6,0,0,0,0,6, +571,https://www.mongodb.com/docs/manual/reference/command/removeShardFromZone/,manual/manual/source/reference/command/removeShardFromZone.txt,manual,2,0,0,0,0,2, +572,https://www.mongodb.com/docs/manual/reference/command/renameCollection/,manual/manual/source/reference/command/renameCollection.txt,manual,3,0,0,0,0,3, +573,https://www.mongodb.com/docs/manual/reference/command/replSetAbortPrimaryCatchUp/,manual/manual/source/reference/command/replSetAbortPrimaryCatchUp.txt,manual,1,0,0,0,0,1, +574,https://www.mongodb.com/docs/manual/reference/command/replSetFreeze/,manual/manual/source/reference/command/replSetFreeze.txt,manual,2,0,0,0,0,2, +575,https://www.mongodb.com/docs/manual/reference/command/replSetGetConfig/,manual/manual/source/reference/command/replSetGetConfig.txt,manual,3,0,0,0,0,3, +576,https://www.mongodb.com/docs/manual/reference/command/replSetGetStatus/,manual/manual/source/reference/command/replSetGetStatus.txt,manual,11,0,0,0,0,11, +577,https://www.mongodb.com/docs/manual/reference/command/replSetInitiate/,manual/manual/source/reference/command/replSetInitiate.txt,manual,5,0,0,0,0,3, +578,https://www.mongodb.com/docs/manual/reference/command/replSetMaintenance/,manual/manual/source/reference/command/replSetMaintenance.txt,manual,1,0,0,0,0,1, +579,https://www.mongodb.com/docs/manual/reference/command/replSetReconfig/,manual/manual/source/reference/command/replSetReconfig.txt,manual,2,0,0,0,0,2, +580,https://www.mongodb.com/docs/manual/reference/command/replSetResizeOplog/,manual/manual/source/reference/command/replSetResizeOplog.txt,manual,9,0,0,0,0,9, +581,https://www.mongodb.com/docs/manual/reference/command/replSetStepDown/,manual/manual/source/reference/command/replSetStepDown.txt,manual,4,0,0,0,0,4, +582,https://www.mongodb.com/docs/manual/reference/command/replSetSyncFrom/,manual/manual/source/reference/command/replSetSyncFrom.txt,manual,1,0,0,0,0,1, +583,https://www.mongodb.com/docs/manual/reference/command/reshardCollection/,manual/manual/source/reference/command/reshardCollection.txt,manual,6,0,0,0,0,6, +584,https://www.mongodb.com/docs/manual/reference/command/revokePrivilegesFromRole/,manual/manual/source/reference/command/revokePrivilegesFromRole.txt,manual,5,0,0,0,0,5, +585,https://www.mongodb.com/docs/manual/reference/command/revokeRolesFromRole/,manual/manual/source/reference/command/revokeRolesFromRole.txt,manual,6,0,0,0,0,6, +586,https://www.mongodb.com/docs/manual/reference/command/revokeRolesFromUser/,manual/manual/source/reference/command/revokeRolesFromUser.txt,manual,6,0,0,0,0,6, +587,https://www.mongodb.com/docs/manual/reference/command/rolesInfo/,manual/manual/source/reference/command/rolesInfo.txt,manual,16,0,0,0,0,16, +588,https://www.mongodb.com/docs/manual/reference/command/rotateCertificates/,manual/manual/source/reference/command/rotateCertificates.txt,manual,3,0,0,0,0,3, +589,https://www.mongodb.com/docs/manual/reference/command/serverStatus/,manual/manual/source/reference/command/serverStatus.txt,manual,75,0,0,0,0,69, +590,https://www.mongodb.com/docs/manual/reference/command/setAllowMigrations/,manual/manual/source/reference/command/setAllowMigrations.txt,manual,2,0,0,0,0,2, +591,https://www.mongodb.com/docs/manual/reference/command/setAuditConfig/,manual/manual/source/reference/command/setAuditConfig.txt,manual,6,0,0,0,0,6, +592,https://www.mongodb.com/docs/manual/reference/command/setClusterParameter/,manual/manual/source/reference/command/setClusterParameter.txt,manual,1,0,0,0,0,1, +593,https://www.mongodb.com/docs/manual/reference/command/setDefaultRWConcern/,manual/manual/source/reference/command/setDefaultRWConcern.txt,manual,11,0,0,0,0,11, +594,https://www.mongodb.com/docs/manual/reference/command/setFeatureCompatibilityVersion/,manual/manual/source/reference/command/setFeatureCompatibilityVersion.txt,manual,9,0,0,0,0,9, +595,https://www.mongodb.com/docs/manual/reference/command/setIndexCommitQuorum/,manual/manual/source/reference/command/setIndexCommitQuorum.txt,manual,16,0,0,0,0,15, +596,https://www.mongodb.com/docs/manual/reference/command/setParameter/,manual/manual/source/reference/command/setParameter.txt,manual,1,0,0,0,0,1, +597,https://www.mongodb.com/docs/manual/reference/command/setQuerySettings/,manual/manual/source/reference/command/setQuerySettings.txt,manual,12,0,0,0,0,12, +598,https://www.mongodb.com/docs/manual/reference/command/setUserWriteBlockMode/,manual/manual/source/reference/command/setUserWriteBlockMode.txt,manual,6,0,0,0,0,5, +599,https://www.mongodb.com/docs/manual/reference/command/shardCollection/,manual/manual/source/reference/command/shardCollection.txt,manual,2,0,0,0,0,2, +600,https://www.mongodb.com/docs/manual/reference/command/shardConnPoolStats/,manual/manual/source/reference/command/shardConnPoolStats.txt,manual,2,0,0,0,0,2, +601,https://www.mongodb.com/docs/manual/reference/command/shardingState/,manual/manual/source/reference/command/shardingState.txt,manual,4,0,0,0,0,4, +602,https://www.mongodb.com/docs/manual/reference/command/shutdown/,manual/manual/source/reference/command/shutdown.txt,manual,4,0,0,0,0,4, +603,https://www.mongodb.com/docs/manual/reference/command/split/,manual/manual/source/reference/command/split.txt,manual,8,0,0,0,0,7, +604,https://www.mongodb.com/docs/manual/reference/command/startSession/,manual/manual/source/reference/command/startSession.txt,manual,3,0,0,0,0,3, +605,https://www.mongodb.com/docs/manual/reference/command/top/,manual/manual/source/reference/command/top.txt,manual,2,0,0,0,0,2, +606,https://www.mongodb.com/docs/manual/reference/command/transitionFromDedicatedConfigServer/,manual/manual/source/reference/command/transitionFromDedicatedConfigServer.txt,manual,4,0,0,0,0,4, +607,https://www.mongodb.com/docs/manual/reference/command/transitionToDedicatedConfigServer/,manual/manual/source/reference/command/transitionToDedicatedConfigServer.txt,manual,4,0,0,0,0,4, +608,https://www.mongodb.com/docs/manual/reference/command/unsetSharding/,manual/manual/source/reference/command/unsetSharding.txt,manual,0,0,0,0,0,0, +609,https://www.mongodb.com/docs/manual/reference/command/unshardCollection/,manual/manual/source/reference/command/unshardCollection.txt,manual,3,0,0,0,0,3, +610,https://www.mongodb.com/docs/manual/reference/command/update/,manual/manual/source/reference/command/update.txt,manual,48,0,0,16,0,46, +611,https://www.mongodb.com/docs/manual/reference/command/updateRole/,manual/manual/source/reference/command/updateRole.txt,manual,4,0,0,0,0,4, +612,https://www.mongodb.com/docs/manual/reference/command/updateSearchIndex/,manual/manual/source/reference/command/updateSearchIndex.txt,manual,6,0,0,0,0,6, +613,https://www.mongodb.com/docs/manual/reference/command/updateUser/,manual/manual/source/reference/command/updateUser.txt,manual,8,0,0,0,0,8, +614,https://www.mongodb.com/docs/manual/reference/command/updateZoneKeyRange/,manual/manual/source/reference/command/updateZoneKeyRange.txt,manual,5,0,0,0,0,5, +615,https://www.mongodb.com/docs/manual/reference/command/usersInfo/,manual/manual/source/reference/command/usersInfo.txt,manual,12,0,0,0,0,12, +616,https://www.mongodb.com/docs/manual/reference/command/validate/,manual/manual/source/reference/command/validate.txt,manual,26,0,0,0,0,25, +617,https://www.mongodb.com/docs/manual/reference/command/validateDBMetadata/,manual/manual/source/reference/command/validateDBMetadata.txt,manual,10,0,0,0,0,10, +618,https://www.mongodb.com/docs/manual/reference/command/whatsmyuri/,manual/manual/source/reference/command/whatsmyuri.txt,manual,0,0,0,0,0,0, +619,https://www.mongodb.com/docs/manual/reference/config-database/,manual/manual/source/reference/config-database.txt,manual,14,0,0,0,0,14, +620,https://www.mongodb.com/docs/manual/reference/configuration-file-settings-command-line-options-mapping/,manual/manual/source/reference/configuration-file-settings-command-line-options-mapping.txt,manual,0,0,0,0,0,0, +621,https://www.mongodb.com/docs/manual/reference/configuration-options/,manual/manual/source/reference/configuration-options.txt,manual,70,0,0,0,0,30, +622,https://www.mongodb.com/docs/manual/reference/connection-string-formats/,manual/manual/source/reference/connection-string-formats.txt,manual,10,0,0,0,0,1, +623,https://www.mongodb.com/docs/manual/reference/connection-string-options/,manual/manual/source/reference/connection-string-options.txt,manual,24,0,0,0,0,14, +624,https://www.mongodb.com/docs/manual/reference/connection-string/,manual/manual/source/reference/connection-string.txt,manual,24,0,0,0,0,20, +625,https://www.mongodb.com/docs/manual/reference/database-profiler/,manual/manual/source/reference/database-profiler.txt,manual,6,0,0,0,0,6, +626,https://www.mongodb.com/docs/manual/reference/database-references/,manual/manual/source/reference/database-references.txt,manual,5,0,0,0,0,3, +627,https://www.mongodb.com/docs/manual/reference/database-users/,manual/manual/source/reference/database-users.txt,manual,0,0,0,0,0,0, +628,https://www.mongodb.com/docs/manual/reference/ddl-operations/,manual/manual/source/reference/ddl-operations.txt,manual,2,0,0,0,0,2, +629,https://www.mongodb.com/docs/manual/reference/default-mongodb-port/,manual/manual/source/reference/default-mongodb-port.txt,manual,0,0,0,0,0,0, +630,https://www.mongodb.com/docs/manual/reference/delete-methods/,manual/manual/source/reference/delete-methods.txt,manual,0,0,0,0,0,0, +631,https://www.mongodb.com/docs/manual/reference/error-codes/,manual/manual/source/reference/error-codes.txt,manual,0,0,0,0,0,0, +632,https://www.mongodb.com/docs/manual/reference/exit-codes/,manual/manual/source/reference/exit-codes.txt,manual,0,0,0,0,0,0, +633,https://www.mongodb.com/docs/manual/reference/expansion-directives/,manual/manual/source/reference/expansion-directives.txt,manual,15,0,0,0,0,3, +634,https://www.mongodb.com/docs/manual/reference/explain-results/,manual/manual/source/reference/explain-results.txt,manual,11,0,0,0,0,10, +635,https://www.mongodb.com/docs/manual/reference/geojson/,manual/manual/source/reference/geojson.txt,manual,10,0,0,0,0,10, +636,https://www.mongodb.com/docs/manual/reference/glossary/,manual/manual/source/reference/glossary.txt,manual,0,0,0,0,0,0, +637,https://www.mongodb.com/docs/manual/reference/inconsistency-type/,manual/manual/source/reference/inconsistency-type.txt,manual,0,0,0,0,0,0, +638,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CollectionAuxiliaryMetadataMismatch/,manual/manual/source/reference/inconsistency-type/CollectionAuxiliaryMetadataMismatch.txt,manual,3,0,0,0,0,1, +639,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CollectionOptionsMismatch/,manual/manual/source/reference/inconsistency-type/CollectionOptionsMismatch.txt,manual,3,0,0,0,0,1, +640,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CollectionUUIDMismatch/,manual/manual/source/reference/inconsistency-type/CollectionUUIDMismatch.txt,manual,3,0,0,0,0,1, +641,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CorruptedChunkShardKey/,manual/manual/source/reference/inconsistency-type/CorruptedChunkShardKey.txt,manual,3,0,0,0,0,1, +642,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CorruptedZoneShardKey/,manual/manual/source/reference/inconsistency-type/CorruptedZoneShardKey.txt,manual,3,0,0,0,0,1, +643,https://www.mongodb.com/docs/manual/reference/inconsistency-type/HiddenShardedCollection/,manual/manual/source/reference/inconsistency-type/HiddenShardedCollection.txt,manual,3,0,0,0,0,1, +644,https://www.mongodb.com/docs/manual/reference/inconsistency-type/InconsistentIndex/,manual/manual/source/reference/inconsistency-type/InconsistentIndex.txt,manual,3,0,0,0,0,1, +645,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MisplacedCollection/,manual/manual/source/reference/inconsistency-type/MisplacedCollection.txt,manual,3,0,0,0,0,1, +646,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MissingLocalCollection/,manual/manual/source/reference/inconsistency-type/MissingLocalCollection.txt,manual,3,0,0,0,0,1, +647,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MissingRoutingTable/,manual/manual/source/reference/inconsistency-type/MissingRoutingTable.txt,manual,3,0,0,0,0,1, +648,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MissingShardKeyIndex/,manual/manual/source/reference/inconsistency-type/MissingShardKeyIndex.txt,manual,3,0,0,0,0,1, +649,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RangeDeletionMissingShardKeyIndex/,manual/manual/source/reference/inconsistency-type/RangeDeletionMissingShardKeyIndex.txt,manual,3,0,0,0,0,1, +650,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableMissingMaxKey/,manual/manual/source/reference/inconsistency-type/RoutingTableMissingMaxKey.txt,manual,3,0,0,0,0,1, +651,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableMissingMinKey/,manual/manual/source/reference/inconsistency-type/RoutingTableMissingMinKey.txt,manual,3,0,0,0,0,1, +652,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableRangeGap/,manual/manual/source/reference/inconsistency-type/RoutingTableRangeGap.txt,manual,3,0,0,0,0,1, +653,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableRangeOverlap/,manual/manual/source/reference/inconsistency-type/RoutingTableRangeOverlap.txt,manual,3,0,0,0,0,1, +654,https://www.mongodb.com/docs/manual/reference/inconsistency-type/ShardCatalogCacheCollectionMetadataMismatch/,manual/manual/source/reference/inconsistency-type/ShardCatalogCacheCollectionMetadataMismatch.txt,manual,3,0,0,0,0,1, +655,https://www.mongodb.com/docs/manual/reference/inconsistency-type/TrackedUnshardedCollectionHasInvalidKey/,manual/manual/source/reference/inconsistency-type/TrackedUnshardedCollectionHasInvalidKey.txt,manual,3,0,0,0,0,1, +656,https://www.mongodb.com/docs/manual/reference/inconsistency-type/TrackedUnshardedCollectionHasMultipleChunks/,manual/manual/source/reference/inconsistency-type/TrackedUnshardedCollectionHasMultipleChunks.txt,manual,3,0,0,0,0,1, +657,https://www.mongodb.com/docs/manual/reference/inconsistency-type/ZonesRangeOverlap/,manual/manual/source/reference/inconsistency-type/ZonesRangeOverlap.txt,manual,3,0,0,0,0,1, +658,https://www.mongodb.com/docs/manual/reference/indexes/,manual/manual/source/reference/indexes.txt,manual,0,0,0,0,0,0, +659,https://www.mongodb.com/docs/manual/reference/insert-methods/,manual/manual/source/reference/insert-methods.txt,manual,0,0,0,0,0,0, +660,https://www.mongodb.com/docs/manual/reference/installation-ubuntu-community-troubleshooting/,manual/manual/source/reference/installation-ubuntu-community-troubleshooting.txt,manual,16,0,0,0,0,0, +661,https://www.mongodb.com/docs/manual/reference/limits/,manual/manual/source/reference/limits.txt,manual,37,0,0,0,0,33, +662,https://www.mongodb.com/docs/manual/reference/local-database/,manual/manual/source/reference/local-database.txt,manual,1,0,0,0,0,1, +663,https://www.mongodb.com/docs/manual/reference/log-messages/,manual/manual/source/reference/log-messages.txt,manual,47,0,0,0,0,47, +664,https://www.mongodb.com/docs/manual/reference/map-reduce-to-aggregation-pipeline/,manual/manual/source/reference/map-reduce-to-aggregation-pipeline.txt,manual,13,0,0,0,0,13, +665,https://www.mongodb.com/docs/manual/reference/method/,manual/manual/source/reference/method.txt,manual,18,0,0,0,0,17, +666,https://www.mongodb.com/docs/manual/reference/method/BSONRegExp/,manual/manual/source/reference/method/BSONRegExp.txt,manual,6,1,1,0,0,6, +667,https://www.mongodb.com/docs/manual/reference/method/BinData/,manual/manual/source/reference/method/BinData.txt,manual,7,0,0,0,0,7, +668,https://www.mongodb.com/docs/manual/reference/method/Binary.createFromBase64/,manual/manual/source/reference/method/Binary.createFromBase64.txt,manual,3,0,0,0,0,3, +669,https://www.mongodb.com/docs/manual/reference/method/Binary.createFromHexString/,manual/manual/source/reference/method/Binary.createFromHexString.txt,manual,3,0,0,0,0,3, +670,https://www.mongodb.com/docs/manual/reference/method/Bulk.execute/,manual/manual/source/reference/method/Bulk.execute.txt,manual,12,0,0,0,0,12, +671,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.arrayFilters/,manual/manual/source/reference/method/Bulk.find.arrayFilters.txt,manual,4,0,0,0,0,4, +672,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.collation/,manual/manual/source/reference/method/Bulk.find.collation.txt,manual,12,1,1,0,0,10, +673,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.delete/,manual/manual/source/reference/method/Bulk.find.delete.txt,manual,3,0,0,0,0,3, +674,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.deleteOne/,manual/manual/source/reference/method/Bulk.find.deleteOne.txt,manual,3,0,0,0,0,3, +675,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.hint/,manual/manual/source/reference/method/Bulk.find.hint.txt,manual,4,0,0,0,0,4, +676,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.remove/,manual/manual/source/reference/method/Bulk.find.remove.txt,manual,0,0,0,0,0,0, +677,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.removeOne/,manual/manual/source/reference/method/Bulk.find.removeOne.txt,manual,0,0,0,0,0,0, +678,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.replaceOne/,manual/manual/source/reference/method/Bulk.find.replaceOne.txt,manual,1,0,0,0,0,1, +679,https://www.mongodb.com/docs/manual/reference/method/Bulk.find/,manual/manual/source/reference/method/Bulk.find.txt,manual,1,0,0,0,0,1, +680,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.update/,manual/manual/source/reference/method/Bulk.find.update.txt,manual,2,0,0,0,0,2, +681,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.updateOne/,manual/manual/source/reference/method/Bulk.find.updateOne.txt,manual,3,0,0,0,0,3, +682,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.upsert/,manual/manual/source/reference/method/Bulk.find.upsert.txt,manual,13,0,0,0,0,13, +683,https://www.mongodb.com/docs/manual/reference/method/Bulk.getOperations/,manual/manual/source/reference/method/Bulk.getOperations.txt,manual,2,0,0,0,0,2, +684,https://www.mongodb.com/docs/manual/reference/method/Bulk.insert/,manual/manual/source/reference/method/Bulk.insert.txt,manual,1,0,0,0,0,1, +685,https://www.mongodb.com/docs/manual/reference/method/Bulk.toString/,manual/manual/source/reference/method/Bulk.toString.txt,manual,2,0,0,0,0,2, +686,https://www.mongodb.com/docs/manual/reference/method/Bulk.tojson/,manual/manual/source/reference/method/Bulk.tojson.txt,manual,2,0,0,0,0,2, +687,https://www.mongodb.com/docs/manual/reference/method/Bulk/,manual/manual/source/reference/method/Bulk.txt,manual,8,0,0,0,0,8, +688,https://www.mongodb.com/docs/manual/reference/method/BulkWriteResult/,manual/manual/source/reference/method/BulkWriteResult.txt,manual,0,0,0,0,0,0, +689,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.createEncryptedCollection/,manual/manual/source/reference/method/ClientEncryption.createEncryptedCollection.txt,manual,8,0,0,0,0,8, +690,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.decrypt/,manual/manual/source/reference/method/ClientEncryption.decrypt.txt,manual,8,0,0,0,0,8, +691,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.encrypt/,manual/manual/source/reference/method/ClientEncryption.encrypt.txt,manual,15,0,0,0,0,15, +692,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.encryptExpression/,manual/manual/source/reference/method/ClientEncryption.encryptExpression.txt,manual,2,0,0,0,0,2, +693,https://www.mongodb.com/docs/manual/reference/method/Date/,manual/manual/source/reference/method/Date.txt,manual,6,0,0,0,0,6, +694,https://www.mongodb.com/docs/manual/reference/method/HexData/,manual/manual/source/reference/method/HexData.txt,manual,3,0,0,0,0,3, +695,https://www.mongodb.com/docs/manual/reference/method/KeyVault.addKeyAlternateName/,manual/manual/source/reference/method/KeyVault.addKeyAlternateName.txt,manual,8,0,0,0,0,6, +696,https://www.mongodb.com/docs/manual/reference/method/KeyVault.addKeyName/,manual/manual/source/reference/method/KeyVault.addKeyName.txt,manual,0,0,0,0,0,0, +697,https://www.mongodb.com/docs/manual/reference/method/KeyVault.createDataKey/,manual/manual/source/reference/method/KeyVault.createDataKey.txt,manual,0,0,0,0,0,0, +698,https://www.mongodb.com/docs/manual/reference/method/KeyVault.createKey/,manual/manual/source/reference/method/KeyVault.createKey.txt,manual,7,0,0,0,0,7, +699,https://www.mongodb.com/docs/manual/reference/method/KeyVault.deleteKey/,manual/manual/source/reference/method/KeyVault.deleteKey.txt,manual,8,0,0,0,0,6, +700,https://www.mongodb.com/docs/manual/reference/method/KeyVault.getKey/,manual/manual/source/reference/method/KeyVault.getKey.txt,manual,8,0,0,0,0,6, +701,https://www.mongodb.com/docs/manual/reference/method/KeyVault.getKeyByAltName/,manual/manual/source/reference/method/KeyVault.getKeyByAltName.txt,manual,8,0,0,0,0,6, +702,https://www.mongodb.com/docs/manual/reference/method/KeyVault.getKeys/,manual/manual/source/reference/method/KeyVault.getKeys.txt,manual,8,0,0,0,0,6, +703,https://www.mongodb.com/docs/manual/reference/method/KeyVault.removeKeyAltName/,manual/manual/source/reference/method/KeyVault.removeKeyAltName.txt,manual,0,0,0,0,0,0, +704,https://www.mongodb.com/docs/manual/reference/method/KeyVault.removeKeyAlternateName/,manual/manual/source/reference/method/KeyVault.removeKeyAlternateName.txt,manual,8,0,0,0,0,6, +705,https://www.mongodb.com/docs/manual/reference/method/KeyVault.rewrapManyDataKey/,manual/manual/source/reference/method/KeyVault.rewrapManyDataKey.txt,manual,10,0,0,0,0,9, +706,https://www.mongodb.com/docs/manual/reference/method/Mongo.bulkWrite/,manual/manual/source/reference/method/Mongo.bulkWrite.txt,manual,10,0,0,2,0,10, +707,https://www.mongodb.com/docs/manual/reference/method/Mongo.getDB/,manual/manual/source/reference/method/Mongo.getDB.txt,manual,1,0,0,0,0,1, +708,https://www.mongodb.com/docs/manual/reference/method/Mongo.getDBNames/,manual/manual/source/reference/method/Mongo.getDBNames.txt,manual,4,0,0,0,0,4, +709,https://www.mongodb.com/docs/manual/reference/method/Mongo.getDBs/,manual/manual/source/reference/method/Mongo.getDBs.txt,manual,2,0,0,0,0,2, +710,https://www.mongodb.com/docs/manual/reference/method/Mongo.getReadPrefMode/,manual/manual/source/reference/method/Mongo.getReadPrefMode.txt,manual,2,0,0,0,0,2, +711,https://www.mongodb.com/docs/manual/reference/method/Mongo.getReadPrefTagSet/,manual/manual/source/reference/method/Mongo.getReadPrefTagSet.txt,manual,2,0,0,0,0,2, +712,https://www.mongodb.com/docs/manual/reference/method/Mongo.getURI/,manual/manual/source/reference/method/Mongo.getURI.txt,manual,4,1,1,0,0,4, +713,https://www.mongodb.com/docs/manual/reference/method/Mongo.getWriteConcern/,manual/manual/source/reference/method/Mongo.getWriteConcern.txt,manual,4,0,0,0,0,4, +714,https://www.mongodb.com/docs/manual/reference/method/Mongo.setCausalConsistency/,manual/manual/source/reference/method/Mongo.setCausalConsistency.txt,manual,4,0,0,0,0,4, +715,https://www.mongodb.com/docs/manual/reference/method/Mongo.setReadPref/,manual/manual/source/reference/method/Mongo.setReadPref.txt,manual,2,0,0,0,0,2, +716,https://www.mongodb.com/docs/manual/reference/method/Mongo.setWriteConcern/,manual/manual/source/reference/method/Mongo.setWriteConcern.txt,manual,2,0,0,0,0,2, +717,https://www.mongodb.com/docs/manual/reference/method/Mongo.startSession/,manual/manual/source/reference/method/Mongo.startSession.txt,manual,2,0,0,0,0,2, +718,https://www.mongodb.com/docs/manual/reference/method/Mongo/,manual/manual/source/reference/method/Mongo.txt,manual,21,0,0,0,0,15, +719,https://www.mongodb.com/docs/manual/reference/method/Mongo.watch/,manual/manual/source/reference/method/Mongo.watch.txt,manual,9,0,0,0,0,9, +720,https://www.mongodb.com/docs/manual/reference/method/ObjectId.createFromBase64/,manual/manual/source/reference/method/ObjectId.createFromBase64.txt,manual,3,0,0,0,0,3, +721,https://www.mongodb.com/docs/manual/reference/method/ObjectId.createFromHexString/,manual/manual/source/reference/method/ObjectId.createFromHexString.txt,manual,3,0,0,0,0,3, +722,https://www.mongodb.com/docs/manual/reference/method/ObjectId.getTimestamp/,manual/manual/source/reference/method/ObjectId.getTimestamp.txt,manual,2,0,0,0,0,2, +723,https://www.mongodb.com/docs/manual/reference/method/ObjectId.toString/,manual/manual/source/reference/method/ObjectId.toString.txt,manual,4,0,0,0,0,4, +724,https://www.mongodb.com/docs/manual/reference/method/ObjectId/,manual/manual/source/reference/method/ObjectId.txt,manual,11,1,1,0,0,10, +725,https://www.mongodb.com/docs/manual/reference/method/PlanCache.clear/,manual/manual/source/reference/method/PlanCache.clear.txt,manual,2,0,0,0,0,2, +726,https://www.mongodb.com/docs/manual/reference/method/PlanCache.clearPlansByQuery/,manual/manual/source/reference/method/PlanCache.clearPlansByQuery.txt,manual,3,0,0,0,0,3, +727,https://www.mongodb.com/docs/manual/reference/method/PlanCache.help/,manual/manual/source/reference/method/PlanCache.help.txt,manual,1,0,0,0,0,1, +728,https://www.mongodb.com/docs/manual/reference/method/PlanCache.list/,manual/manual/source/reference/method/PlanCache.list.txt,manual,14,0,0,0,0,14, +729,https://www.mongodb.com/docs/manual/reference/method/Session.abortTransaction/,manual/manual/source/reference/method/Session.abortTransaction.txt,manual,4,0,0,0,0,4, +730,https://www.mongodb.com/docs/manual/reference/method/Session.commitTransaction/,manual/manual/source/reference/method/Session.commitTransaction.txt,manual,11,0,0,0,0,11, +731,https://www.mongodb.com/docs/manual/reference/method/Session.startTransaction/,manual/manual/source/reference/method/Session.startTransaction.txt,manual,12,0,0,0,0,12, +732,https://www.mongodb.com/docs/manual/reference/method/Session/,manual/manual/source/reference/method/Session.txt,manual,2,0,0,0,0,2, +733,https://www.mongodb.com/docs/manual/reference/method/Session.withTransaction/,manual/manual/source/reference/method/Session.withTransaction.txt,manual,3,0,0,0,0,3, +734,https://www.mongodb.com/docs/manual/reference/method/SessionOptions/,manual/manual/source/reference/method/SessionOptions.txt,manual,0,0,0,0,0,0, +735,https://www.mongodb.com/docs/manual/reference/method/UUID/,manual/manual/source/reference/method/UUID.txt,manual,5,0,0,0,0,5, +736,https://www.mongodb.com/docs/manual/reference/method/WriteResult/,manual/manual/source/reference/method/WriteResult.txt,manual,0,0,0,0,0,0, +737,https://www.mongodb.com/docs/manual/reference/method/connect/,manual/manual/source/reference/method/connect.txt,manual,1,0,0,0,0,1, +738,https://www.mongodb.com/docs/manual/reference/method/convertShardKeyToHashed/,manual/manual/source/reference/method/convertShardKeyToHashed.txt,manual,3,0,0,0,0,3, +739,https://www.mongodb.com/docs/manual/reference/method/cursor.addOption/,manual/manual/source/reference/method/cursor.addOption.txt,manual,1,0,0,0,0,1, +740,https://www.mongodb.com/docs/manual/reference/method/cursor.allowDiskUse/,manual/manual/source/reference/method/cursor.allowDiskUse.txt,manual,3,0,0,0,0,2, +741,https://www.mongodb.com/docs/manual/reference/method/cursor.batchSize/,manual/manual/source/reference/method/cursor.batchSize.txt,manual,1,0,0,0,0,1, +742,https://www.mongodb.com/docs/manual/reference/method/cursor.close/,manual/manual/source/reference/method/cursor.close.txt,manual,1,0,0,0,0,1, +743,https://www.mongodb.com/docs/manual/reference/method/cursor.collation/,manual/manual/source/reference/method/cursor.collation.txt,manual,14,0,0,0,0,12, +744,https://www.mongodb.com/docs/manual/reference/method/cursor.comment/,manual/manual/source/reference/method/cursor.comment.txt,manual,6,0,0,0,0,6, +745,https://www.mongodb.com/docs/manual/reference/method/cursor.count/,manual/manual/source/reference/method/cursor.count.txt,manual,8,0,0,0,0,8, +746,https://www.mongodb.com/docs/manual/reference/method/cursor.disableBlockWarnings/,manual/manual/source/reference/method/cursor.disableBlockWarnings.txt,manual,2,0,0,0,0,2, +747,https://www.mongodb.com/docs/manual/reference/method/cursor.explain/,manual/manual/source/reference/method/cursor.explain.txt,manual,2,0,0,0,0,2, +748,https://www.mongodb.com/docs/manual/reference/method/cursor.forEach/,manual/manual/source/reference/method/cursor.forEach.txt,manual,5,0,0,0,0,1, +749,https://www.mongodb.com/docs/manual/reference/method/cursor.hasNext/,manual/manual/source/reference/method/cursor.hasNext.txt,manual,0,0,0,0,0,0, +750,https://www.mongodb.com/docs/manual/reference/method/cursor.hint/,manual/manual/source/reference/method/cursor.hint.txt,manual,4,0,0,0,0,4, +751,https://www.mongodb.com/docs/manual/reference/method/cursor.isClosed/,manual/manual/source/reference/method/cursor.isClosed.txt,manual,0,0,0,0,0,0, +752,https://www.mongodb.com/docs/manual/reference/method/cursor.isExhausted/,manual/manual/source/reference/method/cursor.isExhausted.txt,manual,10,0,0,0,0,10, +753,https://www.mongodb.com/docs/manual/reference/method/cursor.itcount/,manual/manual/source/reference/method/cursor.itcount.txt,manual,1,0,0,0,0,1, +754,https://www.mongodb.com/docs/manual/reference/method/cursor.limit/,manual/manual/source/reference/method/cursor.limit.txt,manual,2,0,0,0,0,2, +755,https://www.mongodb.com/docs/manual/reference/method/cursor.map/,manual/manual/source/reference/method/cursor.map.txt,manual,4,0,0,0,0,4, +756,https://www.mongodb.com/docs/manual/reference/method/cursor.max/,manual/manual/source/reference/method/cursor.max.txt,manual,8,0,0,0,0,8, +757,https://www.mongodb.com/docs/manual/reference/method/cursor.maxAwaitTimeMS/,manual/manual/source/reference/method/cursor.maxAwaitTimeMS.txt,manual,2,0,0,0,0,2, +758,https://www.mongodb.com/docs/manual/reference/method/cursor.maxTimeMS/,manual/manual/source/reference/method/cursor.maxTimeMS.txt,manual,3,0,0,0,0,3, +759,https://www.mongodb.com/docs/manual/reference/method/cursor.min/,manual/manual/source/reference/method/cursor.min.txt,manual,8,0,0,0,0,8, +760,https://www.mongodb.com/docs/manual/reference/method/cursor.next/,manual/manual/source/reference/method/cursor.next.txt,manual,0,0,0,0,0,0, +761,https://www.mongodb.com/docs/manual/reference/method/cursor.noCursorTimeout/,manual/manual/source/reference/method/cursor.noCursorTimeout.txt,manual,2,0,0,0,0,2, +762,https://www.mongodb.com/docs/manual/reference/method/cursor.objsLeftInBatch/,manual/manual/source/reference/method/cursor.objsLeftInBatch.txt,manual,0,0,0,0,0,0, +763,https://www.mongodb.com/docs/manual/reference/method/cursor.pretty/,manual/manual/source/reference/method/cursor.pretty.txt,manual,4,0,0,0,0,4, +764,https://www.mongodb.com/docs/manual/reference/method/cursor.readConcern/,manual/manual/source/reference/method/cursor.readConcern.txt,manual,2,0,0,0,0,2, +765,https://www.mongodb.com/docs/manual/reference/method/cursor.readPref/,manual/manual/source/reference/method/cursor.readPref.txt,manual,2,0,0,0,0,2, +766,https://www.mongodb.com/docs/manual/reference/method/cursor.returnKey/,manual/manual/source/reference/method/cursor.returnKey.txt,manual,5,0,0,0,0,5, +767,https://www.mongodb.com/docs/manual/reference/method/cursor.showRecordId/,manual/manual/source/reference/method/cursor.showRecordId.txt,manual,4,0,0,0,0,4, +768,https://www.mongodb.com/docs/manual/reference/method/cursor.size/,manual/manual/source/reference/method/cursor.size.txt,manual,0,0,0,0,0,0, +769,https://www.mongodb.com/docs/manual/reference/method/cursor.skip/,manual/manual/source/reference/method/cursor.skip.txt,manual,6,0,0,0,0,6, +770,https://www.mongodb.com/docs/manual/reference/method/cursor.sort/,manual/manual/source/reference/method/cursor.sort.txt,manual,17,0,0,0,0,17, +771,https://www.mongodb.com/docs/manual/reference/method/cursor.tailable/,manual/manual/source/reference/method/cursor.tailable.txt,manual,1,0,0,0,0,1, +772,https://www.mongodb.com/docs/manual/reference/method/cursor.toArray/,manual/manual/source/reference/method/cursor.toArray.txt,manual,1,0,0,0,0,1, +773,https://www.mongodb.com/docs/manual/reference/method/cursor.tryNext/,manual/manual/source/reference/method/cursor.tryNext.txt,manual,0,0,0,0,0,0, +774,https://www.mongodb.com/docs/manual/reference/method/db.adminCommand/,manual/manual/source/reference/method/db.adminCommand.txt,manual,6,0,0,0,0,6, +775,https://www.mongodb.com/docs/manual/reference/method/db.aggregate/,manual/manual/source/reference/method/db.aggregate.txt,manual,13,0,0,0,0,11, +776,https://www.mongodb.com/docs/manual/reference/method/db.auth/,manual/manual/source/reference/method/db.auth.txt,manual,22,0,0,0,0,21, +777,https://www.mongodb.com/docs/manual/reference/method/db.changeUserPassword/,manual/manual/source/reference/method/db.changeUserPassword.txt,manual,4,0,0,0,0,4, +778,https://www.mongodb.com/docs/manual/reference/method/db.checkMetadataConsistency/,manual/manual/source/reference/method/db.checkMetadataConsistency.txt,manual,5,2,2,0,0,3, +779,https://www.mongodb.com/docs/manual/reference/method/db.collection.aggregate/,manual/manual/source/reference/method/db.collection.aggregate.txt,manual,38,1,1,0,0,36, +780,https://www.mongodb.com/docs/manual/reference/method/db.collection.analyzeShardKey/,manual/manual/source/reference/method/db.collection.analyzeShardKey.txt,manual,10,0,0,0,0,7, +781,https://www.mongodb.com/docs/manual/reference/method/db.collection.bulkWrite/,manual/manual/source/reference/method/db.collection.bulkWrite.txt,manual,24,0,0,2,0,23, +782,https://www.mongodb.com/docs/manual/reference/method/db.collection.checkMetadataConsistency/,manual/manual/source/reference/method/db.collection.checkMetadataConsistency.txt,manual,3,1,1,0,0,2, +783,https://www.mongodb.com/docs/manual/reference/method/db.collection.compactStructuredEncryptionData/,manual/manual/source/reference/method/db.collection.compactStructuredEncryptionData.txt,manual,0,0,0,0,0,0, +784,https://www.mongodb.com/docs/manual/reference/method/db.collection.configureQueryAnalyzer/,manual/manual/source/reference/method/db.collection.configureQueryAnalyzer.txt,manual,1,0,0,0,0,1, +785,https://www.mongodb.com/docs/manual/reference/method/db.collection.count/,manual/manual/source/reference/method/db.collection.count.txt,manual,19,0,0,0,0,17, +786,https://www.mongodb.com/docs/manual/reference/method/db.collection.countDocuments/,manual/manual/source/reference/method/db.collection.countDocuments.txt,manual,16,0,0,0,0,16, +787,https://www.mongodb.com/docs/manual/reference/method/db.collection.createIndex/,manual/manual/source/reference/method/db.collection.createIndex.txt,manual,53,0,0,0,0,49, +788,https://www.mongodb.com/docs/manual/reference/method/db.collection.createIndexes/,manual/manual/source/reference/method/db.collection.createIndexes.txt,manual,53,0,0,0,0,48, +789,https://www.mongodb.com/docs/manual/reference/method/db.collection.createSearchIndex/,manual/manual/source/reference/method/db.collection.createSearchIndex.txt,manual,9,0,0,0,0,9, +790,https://www.mongodb.com/docs/manual/reference/method/db.collection.dataSize/,manual/manual/source/reference/method/db.collection.dataSize.txt,manual,13,0,0,0,0,12, +791,https://www.mongodb.com/docs/manual/reference/method/db.collection.deleteMany/,manual/manual/source/reference/method/db.collection.deleteMany.txt,manual,35,0,0,0,0,33, +792,https://www.mongodb.com/docs/manual/reference/method/db.collection.deleteOne/,manual/manual/source/reference/method/db.collection.deleteOne.txt,manual,34,0,0,0,0,32, +793,https://www.mongodb.com/docs/manual/reference/method/db.collection.distinct/,manual/manual/source/reference/method/db.collection.distinct.txt,manual,36,0,0,0,0,33, +794,https://www.mongodb.com/docs/manual/reference/method/db.collection.drop/,manual/manual/source/reference/method/db.collection.drop.txt,manual,3,0,0,0,0,3, +795,https://www.mongodb.com/docs/manual/reference/method/db.collection.dropIndex/,manual/manual/source/reference/method/db.collection.dropIndex.txt,manual,8,2,2,0,0,6, +796,https://www.mongodb.com/docs/manual/reference/method/db.collection.dropIndexes/,manual/manual/source/reference/method/db.collection.dropIndexes.txt,manual,4,0,0,0,0,4, +797,https://www.mongodb.com/docs/manual/reference/method/db.collection.dropSearchIndex/,manual/manual/source/reference/method/db.collection.dropSearchIndex.txt,manual,4,0,0,0,0,4, +798,https://www.mongodb.com/docs/manual/reference/method/db.collection.estimatedDocumentCount/,manual/manual/source/reference/method/db.collection.estimatedDocumentCount.txt,manual,4,0,0,0,0,4, +799,https://www.mongodb.com/docs/manual/reference/method/db.collection.explain/,manual/manual/source/reference/method/db.collection.explain.txt,manual,12,0,0,0,0,11, +800,https://www.mongodb.com/docs/manual/reference/method/db.collection.find/,manual/manual/source/reference/method/db.collection.find.txt,manual,96,1,1,0,0,94, +801,https://www.mongodb.com/docs/manual/reference/method/db.collection.findAndModify/,manual/manual/source/reference/method/db.collection.findAndModify.txt,manual,72,0,0,0,0,68, +802,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOne/,manual/manual/source/reference/method/db.collection.findOne.txt,manual,28,0,0,0,0,28, +803,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndDelete/,manual/manual/source/reference/method/db.collection.findOneAndDelete.txt,manual,53,0,0,0,0,50, +804,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndReplace/,manual/manual/source/reference/method/db.collection.findOneAndReplace.txt,manual,53,0,0,0,0,51, +805,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndUpdate/,manual/manual/source/reference/method/db.collection.findOneAndUpdate.txt,manual,63,0,0,0,0,61, +806,https://www.mongodb.com/docs/manual/reference/method/db.collection.getIndexes/,manual/manual/source/reference/method/db.collection.getIndexes.txt,manual,17,0,0,0,0,16, +807,https://www.mongodb.com/docs/manual/reference/method/db.collection.getPlanCache/,manual/manual/source/reference/method/db.collection.getPlanCache.txt,manual,0,0,0,0,0,0, +808,https://www.mongodb.com/docs/manual/reference/method/db.collection.getSearchIndexes/,manual/manual/source/reference/method/db.collection.getSearchIndexes.txt,manual,7,0,0,0,0,7, +809,https://www.mongodb.com/docs/manual/reference/method/db.collection.getShardDistribution/,manual/manual/source/reference/method/db.collection.getShardDistribution.txt,manual,6,0,0,0,0,4, +810,https://www.mongodb.com/docs/manual/reference/method/db.collection.getShardLocation/,manual/manual/source/reference/method/db.collection.getShardLocation.txt,manual,7,3,3,0,0,7, +811,https://www.mongodb.com/docs/manual/reference/method/db.collection.getShardVersion/,manual/manual/source/reference/method/db.collection.getShardVersion.txt,manual,0,0,0,0,0,0, +812,https://www.mongodb.com/docs/manual/reference/method/db.collection.hideIndex/,manual/manual/source/reference/method/db.collection.hideIndex.txt,manual,5,0,0,0,0,5, +813,https://www.mongodb.com/docs/manual/reference/method/db.collection.initializeOrderedBulkOp/,manual/manual/source/reference/method/db.collection.initializeOrderedBulkOp.txt,manual,1,0,0,0,0,1, +814,https://www.mongodb.com/docs/manual/reference/method/db.collection.initializeUnorderedBulkOp/,manual/manual/source/reference/method/db.collection.initializeUnorderedBulkOp.txt,manual,1,0,0,0,0,1, +815,https://www.mongodb.com/docs/manual/reference/method/db.collection.insert/,manual/manual/source/reference/method/db.collection.insert.txt,manual,20,0,0,0,0,20, +816,https://www.mongodb.com/docs/manual/reference/method/db.collection.insertMany/,manual/manual/source/reference/method/db.collection.insertMany.txt,manual,20,0,0,0,0,20, +817,https://www.mongodb.com/docs/manual/reference/method/db.collection.insertOne/,manual/manual/source/reference/method/db.collection.insertOne.txt,manual,17,0,0,0,0,17, +818,https://www.mongodb.com/docs/manual/reference/method/db.collection.isCapped/,manual/manual/source/reference/method/db.collection.isCapped.txt,manual,0,0,0,0,0,0, +819,https://www.mongodb.com/docs/manual/reference/method/db.collection.latencyStats/,manual/manual/source/reference/method/db.collection.latencyStats.txt,manual,4,0,0,0,0,4, +820,https://www.mongodb.com/docs/manual/reference/method/db.collection.mapReduce/,manual/manual/source/reference/method/db.collection.mapReduce.txt,manual,60,0,0,0,0,57, +821,https://www.mongodb.com/docs/manual/reference/method/db.collection.reIndex/,manual/manual/source/reference/method/db.collection.reIndex.txt,manual,0,0,0,0,0,0, +822,https://www.mongodb.com/docs/manual/reference/method/db.collection.remove/,manual/manual/source/reference/method/db.collection.remove.txt,manual,31,0,0,0,0,29, +823,https://www.mongodb.com/docs/manual/reference/method/db.collection.renameCollection/,manual/manual/source/reference/method/db.collection.renameCollection.txt,manual,1,0,0,0,0,1, +824,https://www.mongodb.com/docs/manual/reference/method/db.collection.replaceOne/,manual/manual/source/reference/method/db.collection.replaceOne.txt,manual,41,0,0,0,0,39, +825,https://www.mongodb.com/docs/manual/reference/method/db.collection.stats/,manual/manual/source/reference/method/db.collection.stats.txt,manual,28,0,0,0,0,27, +826,https://www.mongodb.com/docs/manual/reference/method/db.collection.storageSize/,manual/manual/source/reference/method/db.collection.storageSize.txt,manual,13,0,0,0,0,12, +827,https://www.mongodb.com/docs/manual/reference/method/db.collection.totalIndexSize/,manual/manual/source/reference/method/db.collection.totalIndexSize.txt,manual,13,0,0,0,0,12, +828,https://www.mongodb.com/docs/manual/reference/method/db.collection.totalSize/,manual/manual/source/reference/method/db.collection.totalSize.txt,manual,13,0,0,0,0,12, +829,https://www.mongodb.com/docs/manual/reference/method/db.collection.unhideIndex/,manual/manual/source/reference/method/db.collection.unhideIndex.txt,manual,7,0,0,0,0,7, +830,https://www.mongodb.com/docs/manual/reference/method/db.collection.update/,manual/manual/source/reference/method/db.collection.update.txt,manual,40,0,0,19,0,38, +831,https://www.mongodb.com/docs/manual/reference/method/db.collection.updateMany/,manual/manual/source/reference/method/db.collection.updateMany.txt,manual,62,0,0,0,0,60, +832,https://www.mongodb.com/docs/manual/reference/method/db.collection.updateOne/,manual/manual/source/reference/method/db.collection.updateOne.txt,manual,65,0,0,0,0,63, +833,https://www.mongodb.com/docs/manual/reference/method/db.collection.updateSearchIndex/,manual/manual/source/reference/method/db.collection.updateSearchIndex.txt,manual,7,0,0,0,0,7, +834,https://www.mongodb.com/docs/manual/reference/method/db.collection.validate/,manual/manual/source/reference/method/db.collection.validate.txt,manual,18,0,0,0,0,17, +835,https://www.mongodb.com/docs/manual/reference/method/db.collection.watch/,manual/manual/source/reference/method/db.collection.watch.txt,manual,26,0,0,0,0,26, +836,https://www.mongodb.com/docs/manual/reference/method/db.commandHelp/,manual/manual/source/reference/method/db.commandHelp.txt,manual,0,0,0,0,0,0, +837,https://www.mongodb.com/docs/manual/reference/method/db.createCollection/,manual/manual/source/reference/method/db.createCollection.txt,manual,38,0,0,0,0,36, +838,https://www.mongodb.com/docs/manual/reference/method/db.createRole/,manual/manual/source/reference/method/db.createRole.txt,manual,6,0,0,0,0,6, +839,https://www.mongodb.com/docs/manual/reference/method/db.createUser/,manual/manual/source/reference/method/db.createUser.txt,manual,11,0,0,0,0,11, +840,https://www.mongodb.com/docs/manual/reference/method/db.createView/,manual/manual/source/reference/method/db.createView.txt,manual,11,0,0,0,0,9, +841,https://www.mongodb.com/docs/manual/reference/method/db.currentOp/,manual/manual/source/reference/method/db.currentOp.txt,manual,10,0,0,0,0,10, +842,https://www.mongodb.com/docs/manual/reference/method/db.dropAllRoles/,manual/manual/source/reference/method/db.dropAllRoles.txt,manual,2,0,0,0,0,2, +843,https://www.mongodb.com/docs/manual/reference/method/db.dropAllUsers/,manual/manual/source/reference/method/db.dropAllUsers.txt,manual,2,0,0,0,0,2, +844,https://www.mongodb.com/docs/manual/reference/method/db.dropDatabase/,manual/manual/source/reference/method/db.dropDatabase.txt,manual,15,0,0,0,0,14, +845,https://www.mongodb.com/docs/manual/reference/method/db.dropRole/,manual/manual/source/reference/method/db.dropRole.txt,manual,1,0,0,0,0,1, +846,https://www.mongodb.com/docs/manual/reference/method/db.dropUser/,manual/manual/source/reference/method/db.dropUser.txt,manual,1,0,0,0,0,1, +847,https://www.mongodb.com/docs/manual/reference/method/db.fsyncLock/,manual/manual/source/reference/method/db.fsyncLock.txt,manual,5,0,0,0,0,4, +848,https://www.mongodb.com/docs/manual/reference/method/db.fsyncUnlock/,manual/manual/source/reference/method/db.fsyncUnlock.txt,manual,6,0,0,0,0,5, +849,https://www.mongodb.com/docs/manual/reference/method/db.getCollection/,manual/manual/source/reference/method/db.getCollection.txt,manual,3,0,0,0,0,3, +850,https://www.mongodb.com/docs/manual/reference/method/db.getCollectionInfos/,manual/manual/source/reference/method/db.getCollectionInfos.txt,manual,29,4,4,0,0,28, +851,https://www.mongodb.com/docs/manual/reference/method/db.getCollectionNames/,manual/manual/source/reference/method/db.getCollectionNames.txt,manual,23,0,0,0,0,22, +852,https://www.mongodb.com/docs/manual/reference/method/db.getLastError/,manual/manual/source/reference/method/db.getLastError.txt,manual,0,0,0,0,0,0, +853,https://www.mongodb.com/docs/manual/reference/method/db.getLastErrorObj/,manual/manual/source/reference/method/db.getLastErrorObj.txt,manual,0,0,0,0,0,0, +854,https://www.mongodb.com/docs/manual/reference/method/db.getLogComponents/,manual/manual/source/reference/method/db.getLogComponents.txt,manual,1,0,0,0,0,0, +855,https://www.mongodb.com/docs/manual/reference/method/db.getMongo/,manual/manual/source/reference/method/db.getMongo.txt,manual,0,0,0,0,0,0, +856,https://www.mongodb.com/docs/manual/reference/method/db.getName/,manual/manual/source/reference/method/db.getName.txt,manual,1,0,0,0,0,1, +857,https://www.mongodb.com/docs/manual/reference/method/db.getProfilingStatus/,manual/manual/source/reference/method/db.getProfilingStatus.txt,manual,0,0,0,0,0,0, +858,https://www.mongodb.com/docs/manual/reference/method/db.getReplicationInfo/,manual/manual/source/reference/method/db.getReplicationInfo.txt,manual,0,0,0,0,0,0, +859,https://www.mongodb.com/docs/manual/reference/method/db.getRole/,manual/manual/source/reference/method/db.getRole.txt,manual,6,0,0,0,0,6, +860,https://www.mongodb.com/docs/manual/reference/method/db.getRoles/,manual/manual/source/reference/method/db.getRoles.txt,manual,4,0,0,0,0,4, +861,https://www.mongodb.com/docs/manual/reference/method/db.getSiblingDB/,manual/manual/source/reference/method/db.getSiblingDB.txt,manual,2,0,0,0,0,2, +862,https://www.mongodb.com/docs/manual/reference/method/db.getUser/,manual/manual/source/reference/method/db.getUser.txt,manual,6,0,0,0,0,5, +863,https://www.mongodb.com/docs/manual/reference/method/db.getUsers/,manual/manual/source/reference/method/db.getUsers.txt,manual,5,0,0,0,0,4, +864,https://www.mongodb.com/docs/manual/reference/method/db.grantPrivilegesToRole/,manual/manual/source/reference/method/db.grantPrivilegesToRole.txt,manual,5,0,0,0,0,5, +865,https://www.mongodb.com/docs/manual/reference/method/db.grantRolesToRole/,manual/manual/source/reference/method/db.grantRolesToRole.txt,manual,4,0,0,0,0,4, +866,https://www.mongodb.com/docs/manual/reference/method/db.grantRolesToUser/,manual/manual/source/reference/method/db.grantRolesToUser.txt,manual,6,0,0,0,0,6, +867,https://www.mongodb.com/docs/manual/reference/method/db.hello/,manual/manual/source/reference/method/db.hello.txt,manual,0,0,0,0,0,0, +868,https://www.mongodb.com/docs/manual/reference/method/db.help/,manual/manual/source/reference/method/db.help.txt,manual,0,0,0,0,0,0, +869,https://www.mongodb.com/docs/manual/reference/method/db.hostInfo/,manual/manual/source/reference/method/db.hostInfo.txt,manual,1,0,0,0,0,1, +870,https://www.mongodb.com/docs/manual/reference/method/db.killOp/,manual/manual/source/reference/method/db.killOp.txt,manual,9,0,0,0,0,9, +871,https://www.mongodb.com/docs/manual/reference/method/db.listCommands/,manual/manual/source/reference/method/db.listCommands.txt,manual,0,0,0,0,0,0, +872,https://www.mongodb.com/docs/manual/reference/method/db.logout/,manual/manual/source/reference/method/db.logout.txt,manual,2,0,0,0,0,2, +873,https://www.mongodb.com/docs/manual/reference/method/db.printCollectionStats/,manual/manual/source/reference/method/db.printCollectionStats.txt,manual,0,0,0,0,0,0, +874,https://www.mongodb.com/docs/manual/reference/method/db.printReplicationInfo/,manual/manual/source/reference/method/db.printReplicationInfo.txt,manual,1,0,0,0,0,0, +875,https://www.mongodb.com/docs/manual/reference/method/db.printSecondaryReplicationInfo/,manual/manual/source/reference/method/db.printSecondaryReplicationInfo.txt,manual,1,0,0,0,0,1, +876,https://www.mongodb.com/docs/manual/reference/method/db.printShardingStatus/,manual/manual/source/reference/method/db.printShardingStatus.txt,manual,0,0,0,0,0,0, +877,https://www.mongodb.com/docs/manual/reference/method/db.removeUser/,manual/manual/source/reference/method/db.removeUser.txt,manual,0,0,0,0,0,0, +878,https://www.mongodb.com/docs/manual/reference/method/db.revokePrivilegesFromRole/,manual/manual/source/reference/method/db.revokePrivilegesFromRole.txt,manual,7,0,0,0,0,7, +879,https://www.mongodb.com/docs/manual/reference/method/db.revokeRolesFromRole/,manual/manual/source/reference/method/db.revokeRolesFromRole.txt,manual,6,0,0,0,0,6, +880,https://www.mongodb.com/docs/manual/reference/method/db.revokeRolesFromUser/,manual/manual/source/reference/method/db.revokeRolesFromUser.txt,manual,6,0,0,0,0,6, +881,https://www.mongodb.com/docs/manual/reference/method/db.rotateCertificates/,manual/manual/source/reference/method/db.rotateCertificates.txt,manual,3,0,0,0,0,3, +882,https://www.mongodb.com/docs/manual/reference/method/db.runCommand/,manual/manual/source/reference/method/db.runCommand.txt,manual,2,0,0,0,0,2, +883,https://www.mongodb.com/docs/manual/reference/method/db.serverBuildInfo/,manual/manual/source/reference/method/db.serverBuildInfo.txt,manual,0,0,0,0,0,0, +884,https://www.mongodb.com/docs/manual/reference/method/db.serverCmdLineOpts/,manual/manual/source/reference/method/db.serverCmdLineOpts.txt,manual,0,0,0,0,0,0, +885,https://www.mongodb.com/docs/manual/reference/method/db.serverStatus/,manual/manual/source/reference/method/db.serverStatus.txt,manual,7,0,0,0,0,7, +886,https://www.mongodb.com/docs/manual/reference/method/db.setLogLevel/,manual/manual/source/reference/method/db.setLogLevel.txt,manual,9,3,3,0,0,9, +887,https://www.mongodb.com/docs/manual/reference/method/db.setProfilingLevel/,manual/manual/source/reference/method/db.setProfilingLevel.txt,manual,8,0,0,0,0,8, +888,https://www.mongodb.com/docs/manual/reference/method/db.shutdownServer/,manual/manual/source/reference/method/db.shutdownServer.txt,manual,4,0,0,0,0,4, +889,https://www.mongodb.com/docs/manual/reference/method/db.stats/,manual/manual/source/reference/method/db.stats.txt,manual,20,0,0,0,0,18, +890,https://www.mongodb.com/docs/manual/reference/method/db.updateRole/,manual/manual/source/reference/method/db.updateRole.txt,manual,6,0,0,0,0,6, +891,https://www.mongodb.com/docs/manual/reference/method/db.updateUser/,manual/manual/source/reference/method/db.updateUser.txt,manual,9,0,0,0,0,9, +892,https://www.mongodb.com/docs/manual/reference/method/db.version/,manual/manual/source/reference/method/db.version.txt,manual,0,0,0,0,0,0, +893,https://www.mongodb.com/docs/manual/reference/method/db.watch/,manual/manual/source/reference/method/db.watch.txt,manual,7,0,0,0,0,7, +894,https://www.mongodb.com/docs/manual/reference/method/getClientEncryption/,manual/manual/source/reference/method/getClientEncryption.txt,manual,7,0,0,0,0,7, +895,https://www.mongodb.com/docs/manual/reference/method/getKeyVault/,manual/manual/source/reference/method/getKeyVault.txt,manual,7,0,0,0,0,7, +896,https://www.mongodb.com/docs/manual/reference/method/hostname/,manual/manual/source/reference/method/hostname.txt,manual,0,0,0,0,0,0, +897,https://www.mongodb.com/docs/manual/reference/method/passwordPrompt/,manual/manual/source/reference/method/passwordPrompt.txt,manual,4,0,0,0,0,4, +898,https://www.mongodb.com/docs/manual/reference/method/rs.add/,manual/manual/source/reference/method/rs.add.txt,manual,9,0,0,0,0,7, +899,https://www.mongodb.com/docs/manual/reference/method/rs.addArb/,manual/manual/source/reference/method/rs.addArb.txt,manual,2,0,0,0,0,0, +900,https://www.mongodb.com/docs/manual/reference/method/rs.conf/,manual/manual/source/reference/method/rs.conf.txt,manual,14,0,0,0,0,12, +901,https://www.mongodb.com/docs/manual/reference/method/rs.freeze/,manual/manual/source/reference/method/rs.freeze.txt,manual,0,0,0,0,0,0, +902,https://www.mongodb.com/docs/manual/reference/method/rs.help/,manual/manual/source/reference/method/rs.help.txt,manual,0,0,0,0,0,0, +903,https://www.mongodb.com/docs/manual/reference/method/rs.initiate/,manual/manual/source/reference/method/rs.initiate.txt,manual,3,0,0,0,0,1, +904,https://www.mongodb.com/docs/manual/reference/method/rs.printReplicationInfo/,manual/manual/source/reference/method/rs.printReplicationInfo.txt,manual,1,0,0,0,0,0, +905,https://www.mongodb.com/docs/manual/reference/method/rs.printSecondaryReplicationInfo/,manual/manual/source/reference/method/rs.printSecondaryReplicationInfo.txt,manual,1,0,0,0,0,1, +906,https://www.mongodb.com/docs/manual/reference/method/rs.reconfig/,manual/manual/source/reference/method/rs.reconfig.txt,manual,6,0,0,0,0,6, +907,https://www.mongodb.com/docs/manual/reference/method/rs.reconfigForPSASet/,manual/manual/source/reference/method/rs.reconfigForPSASet.txt,manual,4,0,0,0,0,4, +908,https://www.mongodb.com/docs/manual/reference/method/rs.remove/,manual/manual/source/reference/method/rs.remove.txt,manual,1,0,0,0,0,1, +909,https://www.mongodb.com/docs/manual/reference/method/rs.status/,manual/manual/source/reference/method/rs.status.txt,manual,0,0,0,0,0,0, +910,https://www.mongodb.com/docs/manual/reference/method/rs.stepDown/,manual/manual/source/reference/method/rs.stepDown.txt,manual,0,0,0,0,0,0, +911,https://www.mongodb.com/docs/manual/reference/method/rs.syncFrom/,manual/manual/source/reference/method/rs.syncFrom.txt,manual,1,0,0,0,0,1, +912,https://www.mongodb.com/docs/manual/reference/method/sh.abortMoveCollection/,manual/manual/source/reference/method/sh.abortMoveCollection.txt,manual,2,0,0,0,0,2, +913,https://www.mongodb.com/docs/manual/reference/method/sh.abortReshardCollection/,manual/manual/source/reference/method/sh.abortReshardCollection.txt,manual,2,0,0,0,0,2, +914,https://www.mongodb.com/docs/manual/reference/method/sh.abortUnshardCollection/,manual/manual/source/reference/method/sh.abortUnshardCollection.txt,manual,2,0,0,0,0,2, +915,https://www.mongodb.com/docs/manual/reference/method/sh.addShard/,manual/manual/source/reference/method/sh.addShard.txt,manual,3,0,0,0,0,3, +916,https://www.mongodb.com/docs/manual/reference/method/sh.addShardTag/,manual/manual/source/reference/method/sh.addShardTag.txt,manual,1,0,0,0,0,1, +917,https://www.mongodb.com/docs/manual/reference/method/sh.addShardToZone/,manual/manual/source/reference/method/sh.addShardToZone.txt,manual,2,0,0,0,0,2, +918,https://www.mongodb.com/docs/manual/reference/method/sh.addTagRange/,manual/manual/source/reference/method/sh.addTagRange.txt,manual,1,0,0,0,0,1, +919,https://www.mongodb.com/docs/manual/reference/method/sh.balancerCollectionStatus/,manual/manual/source/reference/method/sh.balancerCollectionStatus.txt,manual,5,0,0,0,0,5, +920,https://www.mongodb.com/docs/manual/reference/method/sh.checkMetadataConsistency/,manual/manual/source/reference/method/sh.checkMetadataConsistency.txt,manual,3,1,1,0,0,2, +921,https://www.mongodb.com/docs/manual/reference/method/sh.commitReshardCollection/,manual/manual/source/reference/method/sh.commitReshardCollection.txt,manual,2,0,0,0,0,2, +922,https://www.mongodb.com/docs/manual/reference/method/sh.disableAutoMerger/,manual/manual/source/reference/method/sh.disableAutoMerger.txt,manual,2,0,0,0,0,2, +923,https://www.mongodb.com/docs/manual/reference/method/sh.disableAutoSplit/,manual/manual/source/reference/method/sh.disableAutoSplit.txt,manual,2,0,0,0,0,2, +924,https://www.mongodb.com/docs/manual/reference/method/sh.disableBalancing/,manual/manual/source/reference/method/sh.disableBalancing.txt,manual,0,0,0,0,0,0, +925,https://www.mongodb.com/docs/manual/reference/method/sh.disableMigrations/,manual/manual/source/reference/method/sh.disableMigrations.txt,manual,0,0,0,0,0,0, +926,https://www.mongodb.com/docs/manual/reference/method/sh.enableAutoMerger/,manual/manual/source/reference/method/sh.enableAutoMerger.txt,manual,2,0,0,0,0,2, +927,https://www.mongodb.com/docs/manual/reference/method/sh.enableAutoSplit/,manual/manual/source/reference/method/sh.enableAutoSplit.txt,manual,2,0,0,0,0,2, +928,https://www.mongodb.com/docs/manual/reference/method/sh.enableBalancing/,manual/manual/source/reference/method/sh.enableBalancing.txt,manual,0,0,0,0,0,0, +929,https://www.mongodb.com/docs/manual/reference/method/sh.enableMigrations/,manual/manual/source/reference/method/sh.enableMigrations.txt,manual,0,0,0,0,0,0, +930,https://www.mongodb.com/docs/manual/reference/method/sh.enableSharding/,manual/manual/source/reference/method/sh.enableSharding.txt,manual,2,0,0,0,0,2, +931,https://www.mongodb.com/docs/manual/reference/method/sh.getBalancerState/,manual/manual/source/reference/method/sh.getBalancerState.txt,manual,0,0,0,0,0,0, +932,https://www.mongodb.com/docs/manual/reference/method/sh.getShardedDataDistribution/,manual/manual/source/reference/method/sh.getShardedDataDistribution.txt,manual,3,0,0,0,0,3, +933,https://www.mongodb.com/docs/manual/reference/method/sh.help/,manual/manual/source/reference/method/sh.help.txt,manual,0,0,0,0,0,0, +934,https://www.mongodb.com/docs/manual/reference/method/sh.isBalancerRunning/,manual/manual/source/reference/method/sh.isBalancerRunning.txt,manual,1,0,0,0,0,0, +935,https://www.mongodb.com/docs/manual/reference/method/sh.isConfigShardEnabled/,manual/manual/source/reference/method/sh.isConfigShardEnabled.txt,manual,5,1,1,0,0,5, +936,https://www.mongodb.com/docs/manual/reference/method/sh.listShards/,manual/manual/source/reference/method/sh.listShards.txt,manual,3,1,1,0,0,3, +937,https://www.mongodb.com/docs/manual/reference/method/sh.moveChunk/,manual/manual/source/reference/method/sh.moveChunk.txt,manual,1,0,0,0,0,1, +938,https://www.mongodb.com/docs/manual/reference/method/sh.moveCollection/,manual/manual/source/reference/method/sh.moveCollection.txt,manual,2,0,0,0,0,2, +939,https://www.mongodb.com/docs/manual/reference/method/sh.moveRange/,manual/manual/source/reference/method/sh.moveRange.txt,manual,3,1,1,0,0,2, +940,https://www.mongodb.com/docs/manual/reference/method/sh.removeRangeFromZone/,manual/manual/source/reference/method/sh.removeRangeFromZone.txt,manual,3,0,0,0,0,3, +941,https://www.mongodb.com/docs/manual/reference/method/sh.removeShardFromZone/,manual/manual/source/reference/method/sh.removeShardFromZone.txt,manual,1,0,0,0,0,1, +942,https://www.mongodb.com/docs/manual/reference/method/sh.removeShardTag/,manual/manual/source/reference/method/sh.removeShardTag.txt,manual,0,0,0,0,0,0, +943,https://www.mongodb.com/docs/manual/reference/method/sh.removeTagRange/,manual/manual/source/reference/method/sh.removeTagRange.txt,manual,1,0,0,0,0,1, +944,https://www.mongodb.com/docs/manual/reference/method/sh.reshardCollection/,manual/manual/source/reference/method/sh.reshardCollection.txt,manual,8,0,0,0,0,8, +945,https://www.mongodb.com/docs/manual/reference/method/sh.setBalancerState/,manual/manual/source/reference/method/sh.setBalancerState.txt,manual,0,0,0,0,0,0, +946,https://www.mongodb.com/docs/manual/reference/method/sh.shardAndDistributeCollection/,manual/manual/source/reference/method/sh.shardAndDistributeCollection.txt,manual,2,0,0,0,0,2, +947,https://www.mongodb.com/docs/manual/reference/method/sh.shardCollection/,manual/manual/source/reference/method/sh.shardCollection.txt,manual,2,0,0,0,0,2, +948,https://www.mongodb.com/docs/manual/reference/method/sh.splitAt/,manual/manual/source/reference/method/sh.splitAt.txt,manual,1,0,0,0,0,1, +949,https://www.mongodb.com/docs/manual/reference/method/sh.splitFind/,manual/manual/source/reference/method/sh.splitFind.txt,manual,1,0,0,0,0,1, +950,https://www.mongodb.com/docs/manual/reference/method/sh.startAutoMerger/,manual/manual/source/reference/method/sh.startAutoMerger.txt,manual,2,0,0,0,0,2, +951,https://www.mongodb.com/docs/manual/reference/method/sh.startBalancer/,manual/manual/source/reference/method/sh.startBalancer.txt,manual,0,0,0,0,0,0, +952,https://www.mongodb.com/docs/manual/reference/method/sh.status/,manual/manual/source/reference/method/sh.status.txt,manual,12,0,0,0,0,11, +953,https://www.mongodb.com/docs/manual/reference/method/sh.stopAutoMerger/,manual/manual/source/reference/method/sh.stopAutoMerger.txt,manual,2,0,0,0,0,2, +954,https://www.mongodb.com/docs/manual/reference/method/sh.stopBalancer/,manual/manual/source/reference/method/sh.stopBalancer.txt,manual,0,0,0,0,0,0, +955,https://www.mongodb.com/docs/manual/reference/method/sh.unshardCollection/,manual/manual/source/reference/method/sh.unshardCollection.txt,manual,2,0,0,0,0,1, +956,https://www.mongodb.com/docs/manual/reference/method/sh.updateZoneKeyRange/,manual/manual/source/reference/method/sh.updateZoneKeyRange.txt,manual,20,0,0,0,0,20, +957,https://www.mongodb.com/docs/manual/reference/method/sh.waitForBalancer/,manual/manual/source/reference/method/sh.waitForBalancer.txt,manual,0,0,0,0,0,0, +958,https://www.mongodb.com/docs/manual/reference/method/sh.waitForBalancerOff/,manual/manual/source/reference/method/sh.waitForBalancerOff.txt,manual,0,0,0,0,0,0, +959,https://www.mongodb.com/docs/manual/reference/method/sh.waitForPingChange/,manual/manual/source/reference/method/sh.waitForPingChange.txt,manual,0,0,0,0,0,0, +960,https://www.mongodb.com/docs/manual/reference/method/sp.createStreamProcessor/,manual/manual/source/reference/method/sp.createStreamProcessor.txt,manual,2,0,0,0,0,0, +961,https://www.mongodb.com/docs/manual/reference/method/sp.listConnections/,manual/manual/source/reference/method/sp.listConnections.txt,manual,3,1,1,0,0,1, +962,https://www.mongodb.com/docs/manual/reference/method/sp.listStreamProcessors/,manual/manual/source/reference/method/sp.listStreamProcessors.txt,manual,5,2,2,0,0,2, +963,https://www.mongodb.com/docs/manual/reference/method/sp.listWorkspaceDefaults/,manual/manual/source/reference/method/sp.listWorkspaceDefaults.txt,manual,3,1,1,0,0,2, +964,https://www.mongodb.com/docs/manual/reference/method/sp.process/,manual/manual/source/reference/method/sp.process.txt,manual,2,0,0,0,0,0, +965,https://www.mongodb.com/docs/manual/reference/method/sp.processor.drop/,manual/manual/source/reference/method/sp.processor.drop.txt,manual,2,0,0,0,0,0, +966,https://www.mongodb.com/docs/manual/reference/method/sp.processor.sample/,manual/manual/source/reference/method/sp.processor.sample.txt,manual,3,1,1,0,0,1, +967,https://www.mongodb.com/docs/manual/reference/method/sp.processor.start/,manual/manual/source/reference/method/sp.processor.start.txt,manual,2,0,0,0,0,1, +968,https://www.mongodb.com/docs/manual/reference/method/sp.processor.stats/,manual/manual/source/reference/method/sp.processor.stats.txt,manual,3,1,1,0,0,1, +969,https://www.mongodb.com/docs/manual/reference/method/sp.processor.stop/,manual/manual/source/reference/method/sp.processor.stop.txt,manual,2,0,0,0,0,1, +970,https://www.mongodb.com/docs/manual/reference/mongo/,manual/manual/source/reference/mongo.txt,manual,0,0,0,0,0,0, +971,https://www.mongodb.com/docs/manual/reference/mongodb-defaults/,manual/manual/source/reference/mongodb-defaults.txt,manual,1,0,0,0,0,0, +972,https://www.mongodb.com/docs/manual/reference/mongodb-extended-json-v1/,manual/manual/source/reference/mongodb-extended-json-v1.txt,manual,8,0,0,0,0,8, +973,https://www.mongodb.com/docs/manual/reference/mongodb-extended-json/,manual/manual/source/reference/mongodb-extended-json.txt,manual,16,0,0,0,0,16, +974,https://www.mongodb.com/docs/manual/reference/mongodb-wire-protocol/,manual/manual/source/reference/mongodb-wire-protocol.txt,manual,3,0,0,0,0,1, +975,https://www.mongodb.com/docs/manual/reference/mql/,manual/manual/source/reference/mql.txt,manual,0,0,0,0,0,0, +976,https://www.mongodb.com/docs/manual/reference/mql/accumulators/,manual/manual/source/reference/mql/accumulators.txt,manual,0,0,0,0,0,0, +977,https://www.mongodb.com/docs/manual/reference/mql/aggregation-stages/,manual/manual/source/reference/mql/aggregation-stages.txt,manual,2,0,0,0,0,2, +978,https://www.mongodb.com/docs/manual/reference/mql/crud-commands/,manual/manual/source/reference/mql/crud-commands.txt,manual,0,0,0,0,0,0, +979,https://www.mongodb.com/docs/manual/reference/mql/expressions/,manual/manual/source/reference/mql/expressions.txt,manual,2,0,0,0,0,2, +980,https://www.mongodb.com/docs/manual/reference/mql/projection/,manual/manual/source/reference/mql/projection.txt,manual,0,0,0,0,0,0, +981,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/,manual/manual/source/reference/mql/query-predicates.txt,manual,0,0,0,0,0,0, +982,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/arrays/,manual/manual/source/reference/mql/query-predicates/arrays.txt,manual,0,0,0,0,0,0, +983,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/bitwise/,manual/manual/source/reference/mql/query-predicates/bitwise.txt,manual,0,0,0,0,0,0, +984,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/comparison/,manual/manual/source/reference/mql/query-predicates/comparison.txt,manual,0,0,0,0,0,0, +985,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/data-type/,manual/manual/source/reference/mql/query-predicates/data-type.txt,manual,0,0,0,0,0,0, +986,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/geospatial/,manual/manual/source/reference/mql/query-predicates/geospatial.txt,manual,0,0,0,0,0,0, +987,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/logical/,manual/manual/source/reference/mql/query-predicates/logical.txt,manual,0,0,0,0,0,0, +988,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/misc/,manual/manual/source/reference/mql/query-predicates/misc.txt,manual,0,0,0,0,0,0, +989,https://www.mongodb.com/docs/manual/reference/mql/update/,manual/manual/source/reference/mql/update.txt,manual,2,0,0,0,0,2, +990,https://www.mongodb.com/docs/manual/reference/non-root-user-permissions/,manual/manual/source/reference/non-root-user-permissions.txt,manual,12,0,0,0,0,0, +991,https://www.mongodb.com/docs/manual/reference/operator/aggregation/abs/,manual/manual/source/reference/operator/aggregation/abs.txt,manual,4,0,0,0,0,4, +992,https://www.mongodb.com/docs/manual/reference/operator/aggregation/accumulator/,manual/manual/source/reference/operator/aggregation/accumulator.txt,manual,19,0,0,0,0,19, +993,https://www.mongodb.com/docs/manual/reference/operator/aggregation/acos/,manual/manual/source/reference/operator/aggregation/acos.txt,manual,8,0,0,0,0,8, +994,https://www.mongodb.com/docs/manual/reference/operator/aggregation/acosh/,manual/manual/source/reference/operator/aggregation/acosh.txt,manual,8,0,0,0,0,8, +995,https://www.mongodb.com/docs/manual/reference/operator/aggregation/add/,manual/manual/source/reference/operator/aggregation/add.txt,manual,9,1,1,0,0,8, +996,https://www.mongodb.com/docs/manual/reference/operator/aggregation/addFields/,manual/manual/source/reference/operator/aggregation/addFields.txt,manual,23,0,0,0,23,0, +997,https://www.mongodb.com/docs/manual/reference/operator/aggregation/addToSet/,manual/manual/source/reference/operator/aggregation/addToSet.txt,manual,7,0,0,0,0,6, +998,https://www.mongodb.com/docs/manual/reference/operator/aggregation/allElementsTrue/,manual/manual/source/reference/operator/aggregation/allElementsTrue.txt,manual,4,0,0,0,0,4, +999,https://www.mongodb.com/docs/manual/reference/operator/aggregation/and/,manual/manual/source/reference/operator/aggregation/and.txt,manual,6,0,0,0,0,6, +1000,https://www.mongodb.com/docs/manual/reference/operator/aggregation/anyElementTrue/,manual/manual/source/reference/operator/aggregation/anyElementTrue.txt,manual,4,1,1,0,0,4, +1001,https://www.mongodb.com/docs/manual/reference/operator/aggregation/arrayElemAt/,manual/manual/source/reference/operator/aggregation/arrayElemAt.txt,manual,4,0,0,0,0,4, +1002,https://www.mongodb.com/docs/manual/reference/operator/aggregation/arrayToObject/,manual/manual/source/reference/operator/aggregation/arrayToObject.txt,manual,10,0,0,0,0,9, +1003,https://www.mongodb.com/docs/manual/reference/operator/aggregation/asin/,manual/manual/source/reference/operator/aggregation/asin.txt,manual,8,0,0,0,0,8, +1004,https://www.mongodb.com/docs/manual/reference/operator/aggregation/asinh/,manual/manual/source/reference/operator/aggregation/asinh.txt,manual,7,0,0,0,0,7, +1005,https://www.mongodb.com/docs/manual/reference/operator/aggregation/atan/,manual/manual/source/reference/operator/aggregation/atan.txt,manual,7,0,0,0,0,7, +1006,https://www.mongodb.com/docs/manual/reference/operator/aggregation/atan2/,manual/manual/source/reference/operator/aggregation/atan2.txt,manual,7,0,0,0,0,7, +1007,https://www.mongodb.com/docs/manual/reference/operator/aggregation/atanh/,manual/manual/source/reference/operator/aggregation/atanh.txt,manual,8,0,0,0,0,8, +1008,https://www.mongodb.com/docs/manual/reference/operator/aggregation/avg/,manual/manual/source/reference/operator/aggregation/avg.txt,manual,12,0,0,0,0,9, +1009,https://www.mongodb.com/docs/manual/reference/operator/aggregation/binarySize/,manual/manual/source/reference/operator/aggregation/binarySize.txt,manual,8,0,0,0,0,8, +1010,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitAnd/,manual/manual/source/reference/operator/aggregation/bitAnd.txt,manual,6,0,0,0,0,6, +1011,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitNot/,manual/manual/source/reference/operator/aggregation/bitNot.txt,manual,4,0,0,0,0,4, +1012,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitOr/,manual/manual/source/reference/operator/aggregation/bitOr.txt,manual,6,0,0,0,0,6, +1013,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitXor/,manual/manual/source/reference/operator/aggregation/bitXor.txt,manual,4,0,0,0,0,4, +1014,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bottom/,manual/manual/source/reference/operator/aggregation/bottom.txt,manual,8,0,0,0,0,7, +1015,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bottomN/,manual/manual/source/reference/operator/aggregation/bottomN.txt,manual,14,0,0,0,0,11, +1016,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bsonSize/,manual/manual/source/reference/operator/aggregation/bsonSize.txt,manual,10,0,0,0,0,9, +1017,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bucket/,manual/manual/source/reference/operator/aggregation/bucket.txt,manual,14,0,0,0,14,0, +1018,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bucketAuto/,manual/manual/source/reference/operator/aggregation/bucketAuto.txt,manual,16,0,0,0,16,0, +1019,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ceil/,manual/manual/source/reference/operator/aggregation/ceil.txt,manual,4,0,0,0,0,4, +1020,https://www.mongodb.com/docs/manual/reference/operator/aggregation/changeStream/,manual/manual/source/reference/operator/aggregation/changeStream.txt,manual,7,0,0,0,5,0, +1021,https://www.mongodb.com/docs/manual/reference/operator/aggregation/changeStreamSplitLargeEvent/,manual/manual/source/reference/operator/aggregation/changeStreamSplitLargeEvent.txt,manual,22,0,0,0,22,0, +1022,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cmp/,manual/manual/source/reference/operator/aggregation/cmp.txt,manual,4,0,0,0,0,4, +1023,https://www.mongodb.com/docs/manual/reference/operator/aggregation/collStats/,manual/manual/source/reference/operator/aggregation/collStats.txt,manual,19,0,0,0,18,1, +1024,https://www.mongodb.com/docs/manual/reference/operator/aggregation/concat/,manual/manual/source/reference/operator/aggregation/concat.txt,manual,4,0,0,0,0,4, +1025,https://www.mongodb.com/docs/manual/reference/operator/aggregation/concatArrays/,manual/manual/source/reference/operator/aggregation/concatArrays.txt,manual,8,0,0,0,0,8, +1026,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cond/,manual/manual/source/reference/operator/aggregation/cond.txt,manual,6,0,0,0,0,6, +1027,https://www.mongodb.com/docs/manual/reference/operator/aggregation/convert/,manual/manual/source/reference/operator/aggregation/convert.txt,manual,12,4,4,0,0,12, +1028,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cos/,manual/manual/source/reference/operator/aggregation/cos.txt,manual,8,0,0,0,0,8, +1029,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cosh/,manual/manual/source/reference/operator/aggregation/cosh.txt,manual,7,0,0,0,0,7, +1030,https://www.mongodb.com/docs/manual/reference/operator/aggregation/count-accumulator/,manual/manual/source/reference/operator/aggregation/count-accumulator.txt,manual,6,0,0,0,0,5, +1031,https://www.mongodb.com/docs/manual/reference/operator/aggregation/count/,manual/manual/source/reference/operator/aggregation/count.txt,manual,10,0,0,0,10,0, +1032,https://www.mongodb.com/docs/manual/reference/operator/aggregation/covariancePop/,manual/manual/source/reference/operator/aggregation/covariancePop.txt,manual,4,0,0,0,0,3, +1033,https://www.mongodb.com/docs/manual/reference/operator/aggregation/covarianceSamp/,manual/manual/source/reference/operator/aggregation/covarianceSamp.txt,manual,4,0,0,0,0,3, +1034,https://www.mongodb.com/docs/manual/reference/operator/aggregation/currentOp/,manual/manual/source/reference/operator/aggregation/currentOp.txt,manual,26,0,0,0,15,9, +1035,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateAdd/,manual/manual/source/reference/operator/aggregation/dateAdd.txt,manual,13,0,0,0,0,13, +1036,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateDiff/,manual/manual/source/reference/operator/aggregation/dateDiff.txt,manual,11,0,0,0,0,11, +1037,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateFromParts/,manual/manual/source/reference/operator/aggregation/dateFromParts.txt,manual,11,0,0,0,0,11, +1038,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateFromString/,manual/manual/source/reference/operator/aggregation/dateFromString.txt,manual,12,0,0,0,0,12, +1039,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateSubtract/,manual/manual/source/reference/operator/aggregation/dateSubtract.txt,manual,12,0,0,0,0,12, +1040,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateToParts/,manual/manual/source/reference/operator/aggregation/dateToParts.txt,manual,7,0,0,0,0,7, +1041,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateToString/,manual/manual/source/reference/operator/aggregation/dateToString.txt,manual,4,0,0,0,0,4, +1042,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateTrunc/,manual/manual/source/reference/operator/aggregation/dateTrunc.txt,manual,6,0,0,0,0,5, +1043,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dayOfMonth/,manual/manual/source/reference/operator/aggregation/dayOfMonth.txt,manual,5,0,0,0,0,5, +1044,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dayOfWeek/,manual/manual/source/reference/operator/aggregation/dayOfWeek.txt,manual,5,0,0,0,0,5, +1045,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dayOfYear/,manual/manual/source/reference/operator/aggregation/dayOfYear.txt,manual,5,0,0,0,0,5, +1046,https://www.mongodb.com/docs/manual/reference/operator/aggregation/degreesToRadians/,manual/manual/source/reference/operator/aggregation/degreesToRadians.txt,manual,4,0,0,0,0,3, +1047,https://www.mongodb.com/docs/manual/reference/operator/aggregation/denseRank/,manual/manual/source/reference/operator/aggregation/denseRank.txt,manual,9,0,0,0,0,8, +1048,https://www.mongodb.com/docs/manual/reference/operator/aggregation/densify/,manual/manual/source/reference/operator/aggregation/densify.txt,manual,16,0,0,0,11,0, +1049,https://www.mongodb.com/docs/manual/reference/operator/aggregation/derivative/,manual/manual/source/reference/operator/aggregation/derivative.txt,manual,4,0,0,0,0,3, +1050,https://www.mongodb.com/docs/manual/reference/operator/aggregation/divide/,manual/manual/source/reference/operator/aggregation/divide.txt,manual,4,0,0,0,0,4, +1051,https://www.mongodb.com/docs/manual/reference/operator/aggregation/documentNumber/,manual/manual/source/reference/operator/aggregation/documentNumber.txt,manual,7,0,0,0,0,6, +1052,https://www.mongodb.com/docs/manual/reference/operator/aggregation/documents/,manual/manual/source/reference/operator/aggregation/documents.txt,manual,8,0,0,0,8,0, +1053,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrContains/,manual/manual/source/reference/operator/aggregation/encStrContains.txt,manual,3,0,0,0,0,3, +1054,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrEndsWith/,manual/manual/source/reference/operator/aggregation/encStrEndsWith.txt,manual,2,0,0,0,0,2, +1055,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrNormalizedEq/,manual/manual/source/reference/operator/aggregation/encStrNormalizedEq.txt,manual,2,0,0,0,0,2, +1056,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrStartsWith/,manual/manual/source/reference/operator/aggregation/encStrStartsWith.txt,manual,2,0,0,0,0,2, +1057,https://www.mongodb.com/docs/manual/reference/operator/aggregation/eq/,manual/manual/source/reference/operator/aggregation/eq.txt,manual,4,0,0,0,0,4, +1058,https://www.mongodb.com/docs/manual/reference/operator/aggregation/exp/,manual/manual/source/reference/operator/aggregation/exp.txt,manual,4,0,0,0,0,4, +1059,https://www.mongodb.com/docs/manual/reference/operator/aggregation/expMovingAvg/,manual/manual/source/reference/operator/aggregation/expMovingAvg.txt,manual,8,0,0,0,0,5, +1060,https://www.mongodb.com/docs/manual/reference/operator/aggregation/facet/,manual/manual/source/reference/operator/aggregation/facet.txt,manual,8,0,0,0,8,0, +1061,https://www.mongodb.com/docs/manual/reference/operator/aggregation/fill/,manual/manual/source/reference/operator/aggregation/fill.txt,manual,22,0,0,0,21,0, +1062,https://www.mongodb.com/docs/manual/reference/operator/aggregation/filter/,manual/manual/source/reference/operator/aggregation/filter.txt,manual,12,5,5,0,0,12, +1063,https://www.mongodb.com/docs/manual/reference/operator/aggregation/first/,manual/manual/source/reference/operator/aggregation/first.txt,manual,10,0,0,0,0,10, +1064,https://www.mongodb.com/docs/manual/reference/operator/aggregation/firstN/,manual/manual/source/reference/operator/aggregation/firstN.txt,manual,18,0,0,0,0,17, +1065,https://www.mongodb.com/docs/manual/reference/operator/aggregation/floor/,manual/manual/source/reference/operator/aggregation/floor.txt,manual,4,0,0,0,0,4, +1066,https://www.mongodb.com/docs/manual/reference/operator/aggregation/function/,manual/manual/source/reference/operator/aggregation/function.txt,manual,7,0,0,0,0,7, +1067,https://www.mongodb.com/docs/manual/reference/operator/aggregation/geoNear/,manual/manual/source/reference/operator/aggregation/geoNear.txt,manual,18,0,0,0,18,0, +1068,https://www.mongodb.com/docs/manual/reference/operator/aggregation/getField/,manual/manual/source/reference/operator/aggregation/getField.txt,manual,11,0,0,0,0,11, +1069,https://www.mongodb.com/docs/manual/reference/operator/aggregation/graphLookup/,manual/manual/source/reference/operator/aggregation/graphLookup.txt,manual,23,0,0,0,23,0, +1070,https://www.mongodb.com/docs/manual/reference/operator/aggregation/group/,manual/manual/source/reference/operator/aggregation/group.txt,manual,28,0,0,0,24,0, +1071,https://www.mongodb.com/docs/manual/reference/operator/aggregation/gt/,manual/manual/source/reference/operator/aggregation/gt.txt,manual,4,0,0,0,0,4, +1072,https://www.mongodb.com/docs/manual/reference/operator/aggregation/gte/,manual/manual/source/reference/operator/aggregation/gte.txt,manual,4,0,0,0,0,4, +1073,https://www.mongodb.com/docs/manual/reference/operator/aggregation/hour/,manual/manual/source/reference/operator/aggregation/hour.txt,manual,5,0,0,0,0,5, +1074,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ifNull/,manual/manual/source/reference/operator/aggregation/ifNull.txt,manual,6,0,0,0,0,5, +1075,https://www.mongodb.com/docs/manual/reference/operator/aggregation/in/,manual/manual/source/reference/operator/aggregation/in.txt,manual,4,0,0,0,0,4, +1076,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexOfArray/,manual/manual/source/reference/operator/aggregation/indexOfArray.txt,manual,4,0,0,0,0,4, +1077,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexOfBytes/,manual/manual/source/reference/operator/aggregation/indexOfBytes.txt,manual,4,0,0,0,0,4, +1078,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexOfCP/,manual/manual/source/reference/operator/aggregation/indexOfCP.txt,manual,4,0,0,0,0,4, +1079,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexStats/,manual/manual/source/reference/operator/aggregation/indexStats.txt,manual,7,0,0,0,7,0, +1080,https://www.mongodb.com/docs/manual/reference/operator/aggregation/integral/,manual/manual/source/reference/operator/aggregation/integral.txt,manual,4,0,0,0,0,3, +1081,https://www.mongodb.com/docs/manual/reference/operator/aggregation/interface/,manual/manual/source/reference/operator/aggregation/interface.txt,manual,0,0,0,0,0,0, +1082,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isArray/,manual/manual/source/reference/operator/aggregation/isArray.txt,manual,3,0,0,0,0,3, +1083,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isNumber/,manual/manual/source/reference/operator/aggregation/isNumber.txt,manual,7,0,0,0,0,7, +1084,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isoDayOfWeek/,manual/manual/source/reference/operator/aggregation/isoDayOfWeek.txt,manual,5,0,0,0,0,5, +1085,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isoWeek/,manual/manual/source/reference/operator/aggregation/isoWeek.txt,manual,5,0,0,0,0,5, +1086,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isoWeekYear/,manual/manual/source/reference/operator/aggregation/isoWeekYear.txt,manual,5,0,0,0,0,5, +1087,https://www.mongodb.com/docs/manual/reference/operator/aggregation/last/,manual/manual/source/reference/operator/aggregation/last.txt,manual,7,0,0,0,0,7, +1088,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lastN/,manual/manual/source/reference/operator/aggregation/lastN.txt,manual,18,0,0,0,0,17, +1089,https://www.mongodb.com/docs/manual/reference/operator/aggregation/let/,manual/manual/source/reference/operator/aggregation/let.txt,manual,5,0,0,0,0,2, +1090,https://www.mongodb.com/docs/manual/reference/operator/aggregation/limit/,manual/manual/source/reference/operator/aggregation/limit.txt,manual,4,0,0,0,4,0, +1091,https://www.mongodb.com/docs/manual/reference/operator/aggregation/linearFill/,manual/manual/source/reference/operator/aggregation/linearFill.txt,manual,8,0,0,0,0,7, +1092,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listClusterCatalog/,manual/manual/source/reference/operator/aggregation/listClusterCatalog.txt,manual,9,0,0,0,5,2, +1093,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listLocalSessions/,manual/manual/source/reference/operator/aggregation/listLocalSessions.txt,manual,7,0,0,0,7,0, +1094,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listSampledQueries/,manual/manual/source/reference/operator/aggregation/listSampledQueries.txt,manual,7,0,0,0,5,0, +1095,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listSearchIndexes/,manual/manual/source/reference/operator/aggregation/listSearchIndexes.txt,manual,14,1,1,0,12,2, +1096,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listSessions/,manual/manual/source/reference/operator/aggregation/listSessions.txt,manual,7,0,0,0,7,0, +1097,https://www.mongodb.com/docs/manual/reference/operator/aggregation/literal/,manual/manual/source/reference/operator/aggregation/literal.txt,manual,6,0,0,0,0,5, +1098,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ln/,manual/manual/source/reference/operator/aggregation/ln.txt,manual,4,0,0,0,0,4, +1099,https://www.mongodb.com/docs/manual/reference/operator/aggregation/locf/,manual/manual/source/reference/operator/aggregation/locf.txt,manual,6,0,0,0,0,5, +1100,https://www.mongodb.com/docs/manual/reference/operator/aggregation/log/,manual/manual/source/reference/operator/aggregation/log.txt,manual,4,0,0,0,0,4, +1101,https://www.mongodb.com/docs/manual/reference/operator/aggregation/log10/,manual/manual/source/reference/operator/aggregation/log10.txt,manual,4,0,0,0,0,4, +1102,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lookup/,manual/manual/source/reference/operator/aggregation/lookup.txt,manual,46,0,0,0,35,0, +1103,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lt/,manual/manual/source/reference/operator/aggregation/lt.txt,manual,4,0,0,0,0,4, +1104,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lte/,manual/manual/source/reference/operator/aggregation/lte.txt,manual,4,0,0,0,0,4, +1105,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ltrim/,manual/manual/source/reference/operator/aggregation/ltrim.txt,manual,4,0,0,0,0,4, +1106,https://www.mongodb.com/docs/manual/reference/operator/aggregation/map/,manual/manual/source/reference/operator/aggregation/map.txt,manual,10,0,0,0,0,10, +1107,https://www.mongodb.com/docs/manual/reference/operator/aggregation/match/,manual/manual/source/reference/operator/aggregation/match.txt,manual,12,1,1,0,12,0, +1108,https://www.mongodb.com/docs/manual/reference/operator/aggregation/max/,manual/manual/source/reference/operator/aggregation/max.txt,manual,12,0,0,0,0,9, +1109,https://www.mongodb.com/docs/manual/reference/operator/aggregation/maxN-array-element/,manual/manual/source/reference/operator/aggregation/maxN-array-element.txt,manual,4,0,0,0,0,4, +1110,https://www.mongodb.com/docs/manual/reference/operator/aggregation/maxN/,manual/manual/source/reference/operator/aggregation/maxN.txt,manual,10,0,0,0,0,9, +1111,https://www.mongodb.com/docs/manual/reference/operator/aggregation/median/,manual/manual/source/reference/operator/aggregation/median.txt,manual,9,0,0,0,0,9, +1112,https://www.mongodb.com/docs/manual/reference/operator/aggregation/merge/,manual/manual/source/reference/operator/aggregation/merge.txt,manual,55,0,0,0,49,6, +1113,https://www.mongodb.com/docs/manual/reference/operator/aggregation/mergeObjects/,manual/manual/source/reference/operator/aggregation/mergeObjects.txt,manual,9,0,0,0,0,7, +1114,https://www.mongodb.com/docs/manual/reference/operator/aggregation/meta/,manual/manual/source/reference/operator/aggregation/meta.txt,manual,20,0,0,0,10,9, +1115,https://www.mongodb.com/docs/manual/reference/operator/aggregation/millisecond/,manual/manual/source/reference/operator/aggregation/millisecond.txt,manual,5,0,0,0,0,5, +1116,https://www.mongodb.com/docs/manual/reference/operator/aggregation/min/,manual/manual/source/reference/operator/aggregation/min.txt,manual,12,0,0,0,0,9, +1117,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minMaxScaler/,manual/manual/source/reference/operator/aggregation/minMaxScaler.txt,manual,8,1,1,0,0,4, +1118,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minN-array-element/,manual/manual/source/reference/operator/aggregation/minN-array-element.txt,manual,4,0,0,0,0,4, +1119,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minN/,manual/manual/source/reference/operator/aggregation/minN.txt,manual,10,0,0,0,0,9, +1120,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minute/,manual/manual/source/reference/operator/aggregation/minute.txt,manual,5,0,0,0,0,5, +1121,https://www.mongodb.com/docs/manual/reference/operator/aggregation/mod/,manual/manual/source/reference/operator/aggregation/mod.txt,manual,7,0,0,0,0,5, +1122,https://www.mongodb.com/docs/manual/reference/operator/aggregation/month/,manual/manual/source/reference/operator/aggregation/month.txt,manual,5,0,0,0,0,5, +1123,https://www.mongodb.com/docs/manual/reference/operator/aggregation/multiply/,manual/manual/source/reference/operator/aggregation/multiply.txt,manual,5,0,0,0,0,5, +1124,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ne/,manual/manual/source/reference/operator/aggregation/ne.txt,manual,4,0,0,0,0,4, +1125,https://www.mongodb.com/docs/manual/reference/operator/aggregation/not/,manual/manual/source/reference/operator/aggregation/not.txt,manual,4,0,0,0,0,4, +1126,https://www.mongodb.com/docs/manual/reference/operator/aggregation/objectToArray/,manual/manual/source/reference/operator/aggregation/objectToArray.txt,manual,10,0,0,0,0,10, +1127,https://www.mongodb.com/docs/manual/reference/operator/aggregation/or/,manual/manual/source/reference/operator/aggregation/or.txt,manual,6,0,0,0,0,6, +1128,https://www.mongodb.com/docs/manual/reference/operator/aggregation/out/,manual/manual/source/reference/operator/aggregation/out.txt,manual,16,0,0,0,16,0, +1129,https://www.mongodb.com/docs/manual/reference/operator/aggregation/percentile/,manual/manual/source/reference/operator/aggregation/percentile.txt,manual,11,0,0,0,0,11, +1130,https://www.mongodb.com/docs/manual/reference/operator/aggregation/planCacheStats/,manual/manual/source/reference/operator/aggregation/planCacheStats.txt,manual,14,0,0,0,10,2, +1131,https://www.mongodb.com/docs/manual/reference/operator/aggregation/pow/,manual/manual/source/reference/operator/aggregation/pow.txt,manual,4,0,0,0,0,4, +1132,https://www.mongodb.com/docs/manual/reference/operator/aggregation/project/,manual/manual/source/reference/operator/aggregation/project.txt,manual,75,0,0,0,75,0, +1133,https://www.mongodb.com/docs/manual/reference/operator/aggregation/push/,manual/manual/source/reference/operator/aggregation/push.txt,manual,7,0,0,0,0,6, +1134,https://www.mongodb.com/docs/manual/reference/operator/aggregation/querySettings/,manual/manual/source/reference/operator/aggregation/querySettings.txt,manual,8,0,0,0,8,0, +1135,https://www.mongodb.com/docs/manual/reference/operator/aggregation/queryStats/,manual/manual/source/reference/operator/aggregation/queryStats.txt,manual,10,0,0,0,10,0, +1136,https://www.mongodb.com/docs/manual/reference/operator/aggregation/queryStats/toggle-logging/,manual/manual/source/reference/operator/aggregation/queryStats/toggle-logging.txt,manual,2,0,0,0,0,2, +1137,https://www.mongodb.com/docs/manual/reference/operator/aggregation/radiansToDegrees/,manual/manual/source/reference/operator/aggregation/radiansToDegrees.txt,manual,4,0,0,0,0,3, +1138,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rand/,manual/manual/source/reference/operator/aggregation/rand.txt,manual,8,0,0,0,0,8, +1139,https://www.mongodb.com/docs/manual/reference/operator/aggregation/range/,manual/manual/source/reference/operator/aggregation/range.txt,manual,4,0,0,0,0,4, +1140,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rank/,manual/manual/source/reference/operator/aggregation/rank.txt,manual,9,0,0,0,0,8, +1141,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rankFusion/,manual/manual/source/reference/operator/aggregation/rankFusion.txt,manual,8,0,0,0,7,0, +1142,https://www.mongodb.com/docs/manual/reference/operator/aggregation/redact/,manual/manual/source/reference/operator/aggregation/redact.txt,manual,8,0,0,0,7,0, +1143,https://www.mongodb.com/docs/manual/reference/operator/aggregation/reduce/,manual/manual/source/reference/operator/aggregation/reduce.txt,manual,15,0,0,0,0,15, +1144,https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexFind/,manual/manual/source/reference/operator/aggregation/regexFind.txt,manual,47,1,1,0,0,43, +1145,https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexFindAll/,manual/manual/source/reference/operator/aggregation/regexFindAll.txt,manual,40,1,1,0,0,40, +1146,https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexMatch/,manual/manual/source/reference/operator/aggregation/regexMatch.txt,manual,27,1,1,0,0,27, +1147,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceAll/,manual/manual/source/reference/operator/aggregation/replaceAll.txt,manual,9,1,1,0,0,9, +1148,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceOne/,manual/manual/source/reference/operator/aggregation/replaceOne.txt,manual,8,1,1,0,0,8, +1149,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceRoot/,manual/manual/source/reference/operator/aggregation/replaceRoot.txt,manual,23,0,0,0,23,0, +1150,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceWith/,manual/manual/source/reference/operator/aggregation/replaceWith.txt,manual,31,0,0,0,31,0, +1151,https://www.mongodb.com/docs/manual/reference/operator/aggregation/reverseArray/,manual/manual/source/reference/operator/aggregation/reverseArray.txt,manual,4,0,0,0,0,4, +1152,https://www.mongodb.com/docs/manual/reference/operator/aggregation/round/,manual/manual/source/reference/operator/aggregation/round.txt,manual,10,0,0,0,0,10, +1153,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rtrim/,manual/manual/source/reference/operator/aggregation/rtrim.txt,manual,4,0,0,0,0,4, +1154,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sample/,manual/manual/source/reference/operator/aggregation/sample.txt,manual,5,0,0,0,5,0, +1155,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sampleRate/,manual/manual/source/reference/operator/aggregation/sampleRate.txt,manual,6,0,0,0,0,6, +1156,https://www.mongodb.com/docs/manual/reference/operator/aggregation/score/,manual/manual/source/reference/operator/aggregation/score.txt,manual,4,0,0,0,0,4, +1157,https://www.mongodb.com/docs/manual/reference/operator/aggregation/scoreFusion/,manual/manual/source/reference/operator/aggregation/scoreFusion.txt,manual,5,0,0,0,0,5, +1158,https://www.mongodb.com/docs/manual/reference/operator/aggregation/search/,manual/manual/source/reference/operator/aggregation/search.txt,manual,0,0,0,0,0,0, +1159,https://www.mongodb.com/docs/manual/reference/operator/aggregation/searchMeta/,manual/manual/source/reference/operator/aggregation/searchMeta.txt,manual,0,0,0,0,0,0, +1160,https://www.mongodb.com/docs/manual/reference/operator/aggregation/second/,manual/manual/source/reference/operator/aggregation/second.txt,manual,5,0,0,0,0,5, +1161,https://www.mongodb.com/docs/manual/reference/operator/aggregation/set/,manual/manual/source/reference/operator/aggregation/set.txt,manual,24,0,0,0,24,0, +1162,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setDifference/,manual/manual/source/reference/operator/aggregation/setDifference.txt,manual,4,0,0,0,0,4, +1163,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setEquals/,manual/manual/source/reference/operator/aggregation/setEquals.txt,manual,4,0,0,0,0,4, +1164,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setField/,manual/manual/source/reference/operator/aggregation/setField.txt,manual,22,0,0,0,0,22, +1165,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setIntersection/,manual/manual/source/reference/operator/aggregation/setIntersection.txt,manual,12,0,0,0,0,12, +1166,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setIsSubset/,manual/manual/source/reference/operator/aggregation/setIsSubset.txt,manual,4,0,0,0,0,4, +1167,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setUnion/,manual/manual/source/reference/operator/aggregation/setUnion.txt,manual,8,0,0,0,0,8, +1168,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setWindowFields/,manual/manual/source/reference/operator/aggregation/setWindowFields.txt,manual,21,0,0,0,20,0, +1169,https://www.mongodb.com/docs/manual/reference/operator/aggregation/shardedDataDistribution/,manual/manual/source/reference/operator/aggregation/shardedDataDistribution.txt,manual,9,0,0,0,8,0, +1170,https://www.mongodb.com/docs/manual/reference/operator/aggregation/shift/,manual/manual/source/reference/operator/aggregation/shift.txt,manual,6,0,0,0,0,5, +1171,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sigmoid/,manual/manual/source/reference/operator/aggregation/sigmoid.txt,manual,4,0,0,0,0,4, +1172,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sin/,manual/manual/source/reference/operator/aggregation/sin.txt,manual,8,0,0,0,0,8, +1173,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sinh/,manual/manual/source/reference/operator/aggregation/sinh.txt,manual,7,0,0,0,0,7, +1174,https://www.mongodb.com/docs/manual/reference/operator/aggregation/size/,manual/manual/source/reference/operator/aggregation/size.txt,manual,4,0,0,0,0,4, +1175,https://www.mongodb.com/docs/manual/reference/operator/aggregation/skip/,manual/manual/source/reference/operator/aggregation/skip.txt,manual,4,0,0,0,4,0, +1176,https://www.mongodb.com/docs/manual/reference/operator/aggregation/slice/,manual/manual/source/reference/operator/aggregation/slice.txt,manual,5,0,0,0,0,5, +1177,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sort/,manual/manual/source/reference/operator/aggregation/sort.txt,manual,14,0,0,0,13,1, +1178,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sortArray/,manual/manual/source/reference/operator/aggregation/sortArray.txt,manual,15,0,0,0,0,15, +1179,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sortByCount/,manual/manual/source/reference/operator/aggregation/sortByCount.txt,manual,12,0,0,0,12,0, +1180,https://www.mongodb.com/docs/manual/reference/operator/aggregation/split/,manual/manual/source/reference/operator/aggregation/split.txt,manual,4,0,0,0,0,4, +1181,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sqrt/,manual/manual/source/reference/operator/aggregation/sqrt.txt,manual,4,0,0,0,0,4, +1182,https://www.mongodb.com/docs/manual/reference/operator/aggregation/stdDevPop/,manual/manual/source/reference/operator/aggregation/stdDevPop.txt,manual,12,0,0,0,0,9, +1183,https://www.mongodb.com/docs/manual/reference/operator/aggregation/stdDevSamp/,manual/manual/source/reference/operator/aggregation/stdDevSamp.txt,manual,9,0,0,0,0,6, +1184,https://www.mongodb.com/docs/manual/reference/operator/aggregation/strLenBytes/,manual/manual/source/reference/operator/aggregation/strLenBytes.txt,manual,4,0,0,0,0,4, +1185,https://www.mongodb.com/docs/manual/reference/operator/aggregation/strLenCP/,manual/manual/source/reference/operator/aggregation/strLenCP.txt,manual,4,0,0,0,0,4, +1186,https://www.mongodb.com/docs/manual/reference/operator/aggregation/strcasecmp/,manual/manual/source/reference/operator/aggregation/strcasecmp.txt,manual,4,0,0,0,0,4, +1187,https://www.mongodb.com/docs/manual/reference/operator/aggregation/substr/,manual/manual/source/reference/operator/aggregation/substr.txt,manual,4,0,0,0,0,4, +1188,https://www.mongodb.com/docs/manual/reference/operator/aggregation/substrBytes/,manual/manual/source/reference/operator/aggregation/substrBytes.txt,manual,7,0,0,0,0,7, +1189,https://www.mongodb.com/docs/manual/reference/operator/aggregation/substrCP/,manual/manual/source/reference/operator/aggregation/substrCP.txt,manual,7,0,0,0,0,7, +1190,https://www.mongodb.com/docs/manual/reference/operator/aggregation/subtract/,manual/manual/source/reference/operator/aggregation/subtract.txt,manual,9,0,0,0,0,9, +1191,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sum/,manual/manual/source/reference/operator/aggregation/sum.txt,manual,13,0,0,0,0,11, +1192,https://www.mongodb.com/docs/manual/reference/operator/aggregation/switch/,manual/manual/source/reference/operator/aggregation/switch.txt,manual,4,0,0,0,0,4, +1193,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tan/,manual/manual/source/reference/operator/aggregation/tan.txt,manual,8,0,0,0,0,8, +1194,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tanh/,manual/manual/source/reference/operator/aggregation/tanh.txt,manual,7,0,0,0,0,7, +1195,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toBool/,manual/manual/source/reference/operator/aggregation/toBool.txt,manual,5,0,0,0,0,5, +1196,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toDate/,manual/manual/source/reference/operator/aggregation/toDate.txt,manual,5,0,0,0,0,5, +1197,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toDecimal/,manual/manual/source/reference/operator/aggregation/toDecimal.txt,manual,5,0,0,0,0,5, +1198,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toDouble/,manual/manual/source/reference/operator/aggregation/toDouble.txt,manual,5,0,0,0,0,5, +1199,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toHashedIndexKey/,manual/manual/source/reference/operator/aggregation/toHashedIndexKey.txt,manual,3,0,0,0,0,3, +1200,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toInt/,manual/manual/source/reference/operator/aggregation/toInt.txt,manual,5,0,0,0,0,5, +1201,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toLong/,manual/manual/source/reference/operator/aggregation/toLong.txt,manual,5,0,0,0,0,5, +1202,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toLower/,manual/manual/source/reference/operator/aggregation/toLower.txt,manual,4,0,0,0,0,4, +1203,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toObjectId/,manual/manual/source/reference/operator/aggregation/toObjectId.txt,manual,5,0,0,0,0,5, +1204,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toString/,manual/manual/source/reference/operator/aggregation/toString.txt,manual,5,0,0,0,0,5, +1205,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toUUID/,manual/manual/source/reference/operator/aggregation/toUUID.txt,manual,5,0,0,0,0,5, +1206,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toUpper/,manual/manual/source/reference/operator/aggregation/toUpper.txt,manual,4,0,0,0,0,4, +1207,https://www.mongodb.com/docs/manual/reference/operator/aggregation/top/,manual/manual/source/reference/operator/aggregation/top.txt,manual,8,0,0,0,0,7, +1208,https://www.mongodb.com/docs/manual/reference/operator/aggregation/topN/,manual/manual/source/reference/operator/aggregation/topN.txt,manual,14,0,0,0,0,11, +1209,https://www.mongodb.com/docs/manual/reference/operator/aggregation/trim/,manual/manual/source/reference/operator/aggregation/trim.txt,manual,4,0,0,0,0,4, +1210,https://www.mongodb.com/docs/manual/reference/operator/aggregation/trunc/,manual/manual/source/reference/operator/aggregation/trunc.txt,manual,8,0,0,0,0,8, +1211,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tsIncrement/,manual/manual/source/reference/operator/aggregation/tsIncrement.txt,manual,8,0,0,0,0,7, +1212,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tsSecond/,manual/manual/source/reference/operator/aggregation/tsSecond.txt,manual,8,0,0,0,0,7, +1213,https://www.mongodb.com/docs/manual/reference/operator/aggregation/type/,manual/manual/source/reference/operator/aggregation/type.txt,manual,6,2,2,5,0,6, +1214,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unionWith/,manual/manual/source/reference/operator/aggregation/unionWith.txt,manual,27,0,0,0,24,0, +1215,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unset/,manual/manual/source/reference/operator/aggregation/unset.txt,manual,14,0,0,0,14,0, +1216,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unsetField/,manual/manual/source/reference/operator/aggregation/unsetField.txt,manual,10,0,0,0,0,10, +1217,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unwind/,manual/manual/source/reference/operator/aggregation/unwind.txt,manual,30,0,0,0,30,0, +1218,https://www.mongodb.com/docs/manual/reference/operator/aggregation/vectorSearch/,manual/manual/source/reference/operator/aggregation/vectorSearch.txt,manual,0,0,0,0,0,0, +1219,https://www.mongodb.com/docs/manual/reference/operator/aggregation/week/,manual/manual/source/reference/operator/aggregation/week.txt,manual,5,0,0,0,0,5, +1220,https://www.mongodb.com/docs/manual/reference/operator/aggregation/year/,manual/manual/source/reference/operator/aggregation/year.txt,manual,5,0,0,0,0,5, +1221,https://www.mongodb.com/docs/manual/reference/operator/aggregation/zip/,manual/manual/source/reference/operator/aggregation/zip.txt,manual,7,0,0,0,0,7, +1222,https://www.mongodb.com/docs/manual/reference/operator/projection/elemMatch/,manual/manual/source/reference/operator/projection/elemMatch.txt,manual,28,0,0,0,13,15, +1223,https://www.mongodb.com/docs/manual/reference/operator/projection/positional/,manual/manual/source/reference/operator/projection/positional.txt,manual,25,0,0,0,0,25, +1224,https://www.mongodb.com/docs/manual/reference/operator/projection/slice/,manual/manual/source/reference/operator/projection/slice.txt,manual,26,0,0,0,0,26, +1225,https://www.mongodb.com/docs/manual/reference/operator/query/all/,manual/manual/source/reference/operator/query/all.txt,manual,14,0,0,0,0,14, +1226,https://www.mongodb.com/docs/manual/reference/operator/query/and/,manual/manual/source/reference/operator/query/and.txt,manual,12,0,0,0,0,12, +1227,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAllClear/,manual/manual/source/reference/operator/query/bitsAllClear.txt,manual,8,0,0,0,0,8, +1228,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAllSet/,manual/manual/source/reference/operator/query/bitsAllSet.txt,manual,8,0,0,0,0,8, +1229,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAnyClear/,manual/manual/source/reference/operator/query/bitsAnyClear.txt,manual,8,0,0,0,0,8, +1230,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAnySet/,manual/manual/source/reference/operator/query/bitsAnySet.txt,manual,8,0,0,0,0,8, +1231,https://www.mongodb.com/docs/manual/reference/operator/query/box/,manual/manual/source/reference/operator/query/box.txt,manual,2,0,0,0,0,2, +1232,https://www.mongodb.com/docs/manual/reference/operator/query/center/,manual/manual/source/reference/operator/query/center.txt,manual,2,0,0,0,0,2, +1233,https://www.mongodb.com/docs/manual/reference/operator/query/centerSphere/,manual/manual/source/reference/operator/query/centerSphere.txt,manual,2,0,0,0,0,2, +1234,https://www.mongodb.com/docs/manual/reference/operator/query/elemMatch/,manual/manual/source/reference/operator/query/elemMatch.txt,manual,15,0,0,0,0,15, +1235,https://www.mongodb.com/docs/manual/reference/operator/query/eq/,manual/manual/source/reference/operator/query/eq.txt,manual,20,0,0,0,0,20, +1236,https://www.mongodb.com/docs/manual/reference/operator/query/exists/,manual/manual/source/reference/operator/query/exists.txt,manual,11,0,0,0,0,11, +1237,https://www.mongodb.com/docs/manual/reference/operator/query/expr/,manual/manual/source/reference/operator/query/expr.txt,manual,7,0,0,0,0,7, +1238,https://www.mongodb.com/docs/manual/reference/operator/query/geoIntersects/,manual/manual/source/reference/operator/query/geoIntersects.txt,manual,4,0,0,0,0,4, +1239,https://www.mongodb.com/docs/manual/reference/operator/query/geoWithin/,manual/manual/source/reference/operator/query/geoWithin.txt,manual,5,0,0,0,0,5, +1240,https://www.mongodb.com/docs/manual/reference/operator/query/geometry/,manual/manual/source/reference/operator/query/geometry.txt,manual,2,0,0,0,0,2, +1241,https://www.mongodb.com/docs/manual/reference/operator/query/gt/,manual/manual/source/reference/operator/query/gt.txt,manual,6,0,0,0,0,6, +1242,https://www.mongodb.com/docs/manual/reference/operator/query/gte/,manual/manual/source/reference/operator/query/gte.txt,manual,6,0,0,0,0,6, +1243,https://www.mongodb.com/docs/manual/reference/operator/query/in/,manual/manual/source/reference/operator/query/in.txt,manual,7,0,0,0,0,7, +1244,https://www.mongodb.com/docs/manual/reference/operator/query/jsonSchema/,manual/manual/source/reference/operator/query/jsonSchema.txt,manual,3,0,0,0,0,3, +1245,https://www.mongodb.com/docs/manual/reference/operator/query/lt/,manual/manual/source/reference/operator/query/lt.txt,manual,5,0,0,0,0,5, +1246,https://www.mongodb.com/docs/manual/reference/operator/query/lte/,manual/manual/source/reference/operator/query/lte.txt,manual,5,0,0,0,0,5, +1247,https://www.mongodb.com/docs/manual/reference/operator/query/maxDistance/,manual/manual/source/reference/operator/query/maxDistance.txt,manual,1,0,0,0,0,1, +1248,https://www.mongodb.com/docs/manual/reference/operator/query/minDistance/,manual/manual/source/reference/operator/query/minDistance.txt,manual,2,0,0,0,0,2, +1249,https://www.mongodb.com/docs/manual/reference/operator/query/mod/,manual/manual/source/reference/operator/query/mod.txt,manual,18,0,0,0,0,13, +1250,https://www.mongodb.com/docs/manual/reference/operator/query/ne/,manual/manual/source/reference/operator/query/ne.txt,manual,15,2,2,0,0,13, +1251,https://www.mongodb.com/docs/manual/reference/operator/query/near/,manual/manual/source/reference/operator/query/near.txt,manual,4,0,0,0,0,4, +1252,https://www.mongodb.com/docs/manual/reference/operator/query/nearSphere/,manual/manual/source/reference/operator/query/nearSphere.txt,manual,5,0,0,0,0,5, +1253,https://www.mongodb.com/docs/manual/reference/operator/query/nin/,manual/manual/source/reference/operator/query/nin.txt,manual,5,0,0,0,0,5, +1254,https://www.mongodb.com/docs/manual/reference/operator/query/nor/,manual/manual/source/reference/operator/query/nor.txt,manual,4,0,0,0,0,4, +1255,https://www.mongodb.com/docs/manual/reference/operator/query/not/,manual/manual/source/reference/operator/query/not.txt,manual,8,0,0,0,1,7, +1256,https://www.mongodb.com/docs/manual/reference/operator/query/or/,manual/manual/source/reference/operator/query/or.txt,manual,9,0,0,0,0,9, +1257,https://www.mongodb.com/docs/manual/reference/operator/query/polygon/,manual/manual/source/reference/operator/query/polygon.txt,manual,2,0,0,0,0,2, +1258,https://www.mongodb.com/docs/manual/reference/operator/query/regex/,manual/manual/source/reference/operator/query/regex.txt,manual,31,0,0,0,0,30, +1259,https://www.mongodb.com/docs/manual/reference/operator/query/size/,manual/manual/source/reference/operator/query/size.txt,manual,3,0,0,0,0,3, +1260,https://www.mongodb.com/docs/manual/reference/operator/query/text/,manual/manual/source/reference/operator/query/text.txt,manual,46,0,0,0,0,42, +1261,https://www.mongodb.com/docs/manual/reference/operator/query/type/,manual/manual/source/reference/operator/query/type.txt,manual,24,0,0,0,0,24, +1262,https://www.mongodb.com/docs/manual/reference/operator/query/where/,manual/manual/source/reference/operator/query/where.txt,manual,5,0,0,0,0,5, +1263,https://www.mongodb.com/docs/manual/reference/operator/update-array/,manual/manual/source/reference/operator/update-array.txt,manual,0,0,0,0,0,0, +1264,https://www.mongodb.com/docs/manual/reference/operator/update-bitwise/,manual/manual/source/reference/operator/update-bitwise.txt,manual,0,0,0,0,0,0, +1265,https://www.mongodb.com/docs/manual/reference/operator/update-field/,manual/manual/source/reference/operator/update-field.txt,manual,0,0,0,0,0,0, +1266,https://www.mongodb.com/docs/manual/reference/operator/update/addToSet/,manual/manual/source/reference/operator/update/addToSet.txt,manual,12,0,0,0,0,12, +1267,https://www.mongodb.com/docs/manual/reference/operator/update/bit/,manual/manual/source/reference/operator/update/bit.txt,manual,11,0,0,0,0,11, +1268,https://www.mongodb.com/docs/manual/reference/operator/update/currentDate/,manual/manual/source/reference/operator/update/currentDate.txt,manual,8,0,0,0,0,8, +1269,https://www.mongodb.com/docs/manual/reference/operator/update/each/,manual/manual/source/reference/operator/update/each.txt,manual,6,0,0,0,0,6, +1270,https://www.mongodb.com/docs/manual/reference/operator/update/inc/,manual/manual/source/reference/operator/update/inc.txt,manual,4,0,0,0,0,4, +1271,https://www.mongodb.com/docs/manual/reference/operator/update/max/,manual/manual/source/reference/operator/update/max.txt,manual,9,0,0,0,0,9, +1272,https://www.mongodb.com/docs/manual/reference/operator/update/min/,manual/manual/source/reference/operator/update/min.txt,manual,9,0,0,0,0,9, +1273,https://www.mongodb.com/docs/manual/reference/operator/update/mul/,manual/manual/source/reference/operator/update/mul.txt,manual,10,0,0,0,0,10, +1274,https://www.mongodb.com/docs/manual/reference/operator/update/pop/,manual/manual/source/reference/operator/update/pop.txt,manual,7,0,0,0,0,7, +1275,https://www.mongodb.com/docs/manual/reference/operator/update/position/,manual/manual/source/reference/operator/update/position.txt,manual,10,0,0,0,0,10, +1276,https://www.mongodb.com/docs/manual/reference/operator/update/positional-all/,manual/manual/source/reference/operator/update/positional-all.txt,manual,18,0,0,0,0,18, +1277,https://www.mongodb.com/docs/manual/reference/operator/update/positional-filtered/,manual/manual/source/reference/operator/update/positional-filtered.txt,manual,23,0,0,0,0,23, +1278,https://www.mongodb.com/docs/manual/reference/operator/update/positional/,manual/manual/source/reference/operator/update/positional.txt,manual,16,0,0,0,0,16, +1279,https://www.mongodb.com/docs/manual/reference/operator/update/pull/,manual/manual/source/reference/operator/update/pull.txt,manual,17,0,0,0,0,17, +1280,https://www.mongodb.com/docs/manual/reference/operator/update/pullAll/,manual/manual/source/reference/operator/update/pullAll.txt,manual,4,0,0,0,0,4, +1281,https://www.mongodb.com/docs/manual/reference/operator/update/push/,manual/manual/source/reference/operator/update/push.txt,manual,13,0,0,0,0,13, +1282,https://www.mongodb.com/docs/manual/reference/operator/update/rename/,manual/manual/source/reference/operator/update/rename.txt,manual,8,0,0,0,0,8, +1283,https://www.mongodb.com/docs/manual/reference/operator/update/set/,manual/manual/source/reference/operator/update/set.txt,manual,9,0,0,0,0,9, +1284,https://www.mongodb.com/docs/manual/reference/operator/update/setOnInsert/,manual/manual/source/reference/operator/update/setOnInsert.txt,manual,3,0,0,0,0,3, +1285,https://www.mongodb.com/docs/manual/reference/operator/update/slice/,manual/manual/source/reference/operator/update/slice.txt,manual,13,0,0,0,0,13, +1286,https://www.mongodb.com/docs/manual/reference/operator/update/sort/,manual/manual/source/reference/operator/update/sort.txt,manual,13,0,0,0,0,13, +1287,https://www.mongodb.com/docs/manual/reference/operator/update/unset/,manual/manual/source/reference/operator/update/unset.txt,manual,4,0,0,0,0,4, +1288,https://www.mongodb.com/docs/manual/reference/parameters/,manual/manual/source/reference/parameters.txt,manual,230,0,0,0,0,219, +1289,https://www.mongodb.com/docs/manual/reference/privilege-actions/,manual/manual/source/reference/privilege-actions.txt,manual,1,0,0,0,0,1, +1290,https://www.mongodb.com/docs/manual/reference/program/,manual/manual/source/reference/program.txt,manual,0,0,0,0,0,0, +1291,https://www.mongodb.com/docs/manual/reference/program/install_compass/,manual/manual/source/reference/program/install_compass.txt,manual,4,0,0,0,0,2, +1292,https://www.mongodb.com/docs/manual/reference/program/mongod.exe/,manual/manual/source/reference/program/mongod.exe.txt,manual,0,0,0,0,0,0, +1293,https://www.mongodb.com/docs/manual/reference/program/mongod/,manual/manual/source/reference/program/mongod.txt,manual,24,0,0,0,0,20, +1294,https://www.mongodb.com/docs/manual/reference/program/mongokerberos/,manual/manual/source/reference/program/mongokerberos.txt,manual,4,0,0,0,0,2, +1295,https://www.mongodb.com/docs/manual/reference/program/mongoldap/,manual/manual/source/reference/program/mongoldap.txt,manual,7,0,0,0,0,5, +1296,https://www.mongodb.com/docs/manual/reference/program/mongos.exe/,manual/manual/source/reference/program/mongos.exe.txt,manual,0,0,0,0,0,0, +1297,https://www.mongodb.com/docs/manual/reference/program/mongos/,manual/manual/source/reference/program/mongos.txt,manual,21,0,0,0,0,18, +1298,https://www.mongodb.com/docs/manual/reference/read-concern-available/,manual/manual/source/reference/read-concern-available.txt,manual,0,0,0,0,0,0, +1299,https://www.mongodb.com/docs/manual/reference/read-concern-linearizable/,manual/manual/source/reference/read-concern-linearizable.txt,manual,11,0,0,0,0,11, +1300,https://www.mongodb.com/docs/manual/reference/read-concern-local/,manual/manual/source/reference/read-concern-local.txt,manual,8,0,0,0,0,8, +1301,https://www.mongodb.com/docs/manual/reference/read-concern-majority/,manual/manual/source/reference/read-concern-majority.txt,manual,0,0,0,0,0,0, +1302,https://www.mongodb.com/docs/manual/reference/read-concern-snapshot/,manual/manual/source/reference/read-concern-snapshot.txt,manual,1,0,0,0,0,1, +1303,https://www.mongodb.com/docs/manual/reference/read-concern/,manual/manual/source/reference/read-concern.txt,manual,13,0,0,0,0,13, +1304,https://www.mongodb.com/docs/manual/reference/replica-configuration/,manual/manual/source/reference/replica-configuration.txt,manual,15,0,0,0,0,11, +1305,https://www.mongodb.com/docs/manual/reference/replica-set-protocol-versions/,manual/manual/source/reference/replica-set-protocol-versions.txt,manual,0,0,0,0,0,0, +1306,https://www.mongodb.com/docs/manual/reference/replica-states/,manual/manual/source/reference/replica-states.txt,manual,2,0,0,0,0,2, +1307,https://www.mongodb.com/docs/manual/reference/replication/,manual/manual/source/reference/replication.txt,manual,0,0,0,0,0,0, +1308,https://www.mongodb.com/docs/manual/reference/resource-document/,manual/manual/source/reference/resource-document.txt,manual,8,0,0,0,0,8, +1309,https://www.mongodb.com/docs/manual/reference/sbe/,manual/manual/source/reference/sbe.txt,manual,0,0,0,0,0,0, +1310,https://www.mongodb.com/docs/manual/reference/security/,manual/manual/source/reference/security.txt,manual,0,0,0,0,0,0, +1311,https://www.mongodb.com/docs/manual/reference/server-sessions/,manual/manual/source/reference/server-sessions.txt,manual,0,0,0,0,0,0, +1312,https://www.mongodb.com/docs/manual/reference/sharding/,manual/manual/source/reference/sharding.txt,manual,0,0,0,0,0,0, +1313,https://www.mongodb.com/docs/manual/reference/sql-aggregation-comparison/,manual/manual/source/reference/sql-aggregation-comparison.txt,manual,1,0,0,0,0,1, +1314,https://www.mongodb.com/docs/manual/reference/sql-comparison/,manual/manual/source/reference/sql-comparison.txt,manual,12,0,0,0,0,12, +1315,https://www.mongodb.com/docs/manual/reference/stable-api-changelog/,manual/manual/source/reference/stable-api-changelog.txt,manual,0,0,0,0,0,0, +1316,https://www.mongodb.com/docs/manual/reference/stable-api-reference/,manual/manual/source/reference/stable-api-reference.txt,manual,1,0,0,0,0,0, +1317,https://www.mongodb.com/docs/manual/reference/stable-api/,manual/manual/source/reference/stable-api.txt,manual,46,0,0,0,19,0, +1318,https://www.mongodb.com/docs/manual/reference/supported-shard-direct-commands/,manual/manual/source/reference/supported-shard-direct-commands.txt,manual,0,0,0,0,0,0, +1319,https://www.mongodb.com/docs/manual/reference/system-collections/,manual/manual/source/reference/system-collections.txt,manual,0,0,0,0,0,0, +1320,https://www.mongodb.com/docs/manual/reference/system-roles-collection/,manual/manual/source/reference/system-roles-collection.txt,manual,7,0,0,0,0,7, +1321,https://www.mongodb.com/docs/manual/reference/system-users-collection/,manual/manual/source/reference/system-users-collection.txt,manual,3,0,0,0,0,3, +1322,https://www.mongodb.com/docs/manual/reference/text-search-languages/,manual/manual/source/reference/text-search-languages.txt,manual,0,0,0,0,0,0, +1323,https://www.mongodb.com/docs/manual/reference/ulimit/,manual/manual/source/reference/ulimit.txt,manual,10,0,0,0,0,10, +1324,https://www.mongodb.com/docs/manual/reference/update-methods/,manual/manual/source/reference/update-methods.txt,manual,0,0,0,0,0,0, +1325,https://www.mongodb.com/docs/manual/reference/versioning/,manual/manual/source/reference/versioning.txt,manual,0,0,0,0,0,0, +1326,https://www.mongodb.com/docs/manual/reference/write-concern/,manual/manual/source/reference/write-concern.txt,manual,12,0,0,0,0,11, +1327,https://www.mongodb.com/docs/manual/reference/write-concern/write-lifecycle/,manual/manual/source/reference/write-concern/write-lifecycle.txt,manual,0,0,0,0,0,0, +1328,https://www.mongodb.com/docs/manual/release-notes/,manual/manual/source/release-notes.txt,manual,0,0,0,0,0,0, +1329,https://www.mongodb.com/docs/manual/release-notes/7.0-changelog/,manual/manual/source/release-notes/7.0-changelog.txt,manual,0,0,0,0,0,0, +1330,https://www.mongodb.com/docs/manual/release-notes/7.0-compatibility/,manual/manual/source/release-notes/7.0-compatibility.txt,manual,3,0,0,0,0,3, +1331,https://www.mongodb.com/docs/manual/release-notes/7.0-downgrade/,manual/manual/source/release-notes/7.0-downgrade.txt,manual,0,0,0,0,0,0, +1332,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-replica-set/,manual/manual/source/release-notes/7.0-upgrade-replica-set.txt,manual,5,0,0,0,0,5, +1333,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-sharded-cluster/,manual/manual/source/release-notes/7.0-upgrade-sharded-cluster.txt,manual,22,0,0,0,0,18, +1334,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-standalone/,manual/manual/source/release-notes/7.0-upgrade-standalone.txt,manual,6,0,0,0,0,6, +1335,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade/,manual/manual/source/release-notes/7.0-upgrade.txt,manual,0,0,0,0,0,0, +1336,https://www.mongodb.com/docs/manual/release-notes/7.0/,manual/manual/source/release-notes/7.0.txt,manual,2,0,0,0,0,1, +1337,https://www.mongodb.com/docs/manual/release-notes/8.0-changelog/,manual/manual/source/release-notes/8.0-changelog.txt,manual,0,0,0,0,0,0, +1338,https://www.mongodb.com/docs/manual/release-notes/8.0-compatibility/,manual/manual/source/release-notes/8.0-compatibility.txt,manual,3,0,0,0,0,2, +1339,https://www.mongodb.com/docs/manual/release-notes/8.0-downgrade/,manual/manual/source/release-notes/8.0-downgrade.txt,manual,0,0,0,0,0,0, +1340,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade-replica-set/,manual/manual/source/release-notes/8.0-upgrade-replica-set.txt,manual,6,0,0,0,0,6, +1341,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade-sharded-cluster/,manual/manual/source/release-notes/8.0-upgrade-sharded-cluster.txt,manual,23,0,0,0,0,19, +1342,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade-standalone/,manual/manual/source/release-notes/8.0-upgrade-standalone.txt,manual,6,0,0,0,0,6, +1343,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade/,manual/manual/source/release-notes/8.0-upgrade.txt,manual,0,0,0,0,0,0, +1344,https://www.mongodb.com/docs/manual/release-notes/8.0/,manual/manual/source/release-notes/8.0.txt,manual,1,0,0,0,0,1, +1345,https://www.mongodb.com/docs/manual/release-notes/8.2-changelog/,manual/manual/source/release-notes/8.2-changelog.txt,manual,0,0,0,0,0,0, +1346,https://www.mongodb.com/docs/manual/release-notes/8.2-compatibility/,manual/manual/source/release-notes/8.2-compatibility.txt,manual,0,0,0,0,0,0, +1347,https://www.mongodb.com/docs/manual/release-notes/8.2-downgrade/,manual/manual/source/release-notes/8.2-downgrade.txt,manual,0,0,0,0,0,0, +1348,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade-replica-set/,manual/manual/source/release-notes/8.2-upgrade-replica-set.txt,manual,6,0,0,0,0,6, +1349,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade-sharded-cluster/,manual/manual/source/release-notes/8.2-upgrade-sharded-cluster.txt,manual,23,0,0,0,0,19, +1350,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade-standalone/,manual/manual/source/release-notes/8.2-upgrade-standalone.txt,manual,6,0,0,0,0,6, +1351,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade/,manual/manual/source/release-notes/8.2-upgrade.txt,manual,0,0,0,0,0,0, +1352,https://www.mongodb.com/docs/manual/release-notes/8.2/,manual/manual/source/release-notes/8.2.txt,manual,1,0,0,0,0,1, +1353,https://www.mongodb.com/docs/manual/release-notes/drivers-write-concern/,manual/manual/source/release-notes/drivers-write-concern.txt,manual,0,0,0,0,0,0, +1354,https://www.mongodb.com/docs/manual/replication/,manual/manual/source/replication.txt,manual,12,0,0,0,0,12, +1355,https://www.mongodb.com/docs/manual/security/,manual/manual/source/security.txt,manual,0,0,0,0,0,0, +1356,https://www.mongodb.com/docs/manual/self-managed-deployments/,manual/manual/source/self-managed-deployments.txt,manual,0,0,0,0,0,0, +1357,https://www.mongodb.com/docs/manual/sharding/,manual/manual/source/sharding.txt,manual,9,0,0,0,0,8, +1358,https://www.mongodb.com/docs/manual/storage/,manual/manual/source/storage.txt,manual,0,0,0,0,0,0, +1359,https://www.mongodb.com/docs/manual/support/,manual/manual/source/support.txt,manual,0,0,0,0,0,0, +1360,https://www.mongodb.com/docs/manual/text-search/,manual/manual/source/text-search.txt,manual,0,0,0,0,0,0, +1361,https://www.mongodb.com/docs/manual/tutorial/,manual/manual/source/tutorial.txt,manual,0,0,0,0,0,0, +1362,https://www.mongodb.com/docs/manual/tutorial/add-member-to-shard/,manual/manual/source/tutorial/add-member-to-shard.txt,manual,6,0,0,0,0,6, +1363,https://www.mongodb.com/docs/manual/tutorial/add-replica-set-arbiter/,manual/manual/source/tutorial/add-replica-set-arbiter.txt,manual,5,0,0,0,0,3, +1364,https://www.mongodb.com/docs/manual/tutorial/add-shards-to-shard-cluster/,manual/manual/source/tutorial/add-shards-to-shard-cluster.txt,manual,2,0,0,0,0,2, +1365,https://www.mongodb.com/docs/manual/tutorial/adjust-replica-set-member-priority/,manual/manual/source/tutorial/adjust-replica-set-member-priority.txt,manual,3,0,0,0,0,3, +1366,https://www.mongodb.com/docs/manual/tutorial/aggregation-complete-examples/,manual/manual/source/tutorial/aggregation-complete-examples.txt,manual,0,0,0,0,0,0, +1367,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/filtered-subset/,manual/manual/source/tutorial/aggregation-examples/filtered-subset.txt,manual,122,0,0,44,43,8, +1368,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/group-and-total/,manual/manual/source/tutorial/aggregation-examples/group-and-total.txt,manual,145,0,0,52,51,8, +1369,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/multi-field-join/,manual/manual/source/tutorial/aggregation-examples/multi-field-join.txt,manual,144,0,0,55,52,8, +1370,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/one-to-one-join/,manual/manual/source/tutorial/aggregation-examples/one-to-one-join.txt,manual,122,0,0,43,42,8, +1371,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/unpack-arrays/,manual/manual/source/tutorial/aggregation-examples/unpack-arrays.txt,manual,133,0,0,47,46,8, +1372,https://www.mongodb.com/docs/manual/tutorial/analyze-query-plan/,manual/manual/source/tutorial/analyze-query-plan.txt,manual,17,0,0,0,17,0, +1373,https://www.mongodb.com/docs/manual/tutorial/authenticate-a-user/,manual/manual/source/tutorial/authenticate-a-user.txt,manual,3,0,0,0,0,3, +1374,https://www.mongodb.com/docs/manual/tutorial/authenticate-nativeldap-activedirectory/,manual/manual/source/tutorial/authenticate-nativeldap-activedirectory.txt,manual,14,0,0,0,0,8, +1375,https://www.mongodb.com/docs/manual/tutorial/backup-and-restore-tools/,manual/manual/source/tutorial/backup-and-restore-tools.txt,manual,11,0,0,0,0,10, +1376,https://www.mongodb.com/docs/manual/tutorial/backup-sharded-cluster-metadata/,manual/manual/source/tutorial/backup-sharded-cluster-metadata.txt,manual,0,0,0,0,0,0, +1377,https://www.mongodb.com/docs/manual/tutorial/backup-sharded-cluster-with-database-dumps/,manual/manual/source/tutorial/backup-sharded-cluster-with-database-dumps.txt,manual,13,3,3,0,0,11, +1378,https://www.mongodb.com/docs/manual/tutorial/backup-sharded-cluster-with-filesystem-snapshots/,manual/manual/source/tutorial/backup-sharded-cluster-with-filesystem-snapshots.txt,manual,13,3,3,0,0,11, +1379,https://www.mongodb.com/docs/manual/tutorial/backup-with-filesystem-snapshots/,manual/manual/source/tutorial/backup-with-filesystem-snapshots.txt,manual,9,0,0,0,0,9, +1380,https://www.mongodb.com/docs/manual/tutorial/build-indexes-on-replica-sets/,manual/manual/source/tutorial/build-indexes-on-replica-sets.txt,manual,9,0,0,0,0,7, +1381,https://www.mongodb.com/docs/manual/tutorial/build-indexes-on-sharded-clusters/,manual/manual/source/tutorial/build-indexes-on-sharded-clusters.txt,manual,14,1,1,0,0,12, +1382,https://www.mongodb.com/docs/manual/tutorial/change-hostnames-in-a-replica-set/,manual/manual/source/tutorial/change-hostnames-in-a-replica-set.txt,manual,20,0,0,0,0,20, +1383,https://www.mongodb.com/docs/manual/tutorial/change-oplog-size/,manual/manual/source/tutorial/change-oplog-size.txt,manual,4,0,0,0,0,4, +1384,https://www.mongodb.com/docs/manual/tutorial/change-own-password-and-custom-data/,manual/manual/source/tutorial/change-own-password-and-custom-data.txt,manual,8,0,0,0,0,8, +1385,https://www.mongodb.com/docs/manual/tutorial/change-replica-set-wiredtiger/,manual/manual/source/tutorial/change-replica-set-wiredtiger.txt,manual,4,0,0,0,0,4, +1386,https://www.mongodb.com/docs/manual/tutorial/change-sharded-cluster-wiredtiger/,manual/manual/source/tutorial/change-sharded-cluster-wiredtiger.txt,manual,12,0,0,0,0,12, +1387,https://www.mongodb.com/docs/manual/tutorial/change-standalone-wiredtiger/,manual/manual/source/tutorial/change-standalone-wiredtiger.txt,manual,3,0,0,0,0,3, +1388,https://www.mongodb.com/docs/manual/tutorial/clear-jumbo-flag/,manual/manual/source/tutorial/clear-jumbo-flag.txt,manual,11,0,0,0,0,8, +1389,https://www.mongodb.com/docs/manual/tutorial/configure-a-delayed-replica-set-member/,manual/manual/source/tutorial/configure-a-delayed-replica-set-member.txt,manual,1,0,0,0,0,1, +1390,https://www.mongodb.com/docs/manual/tutorial/configure-a-hidden-replica-set-member/,manual/manual/source/tutorial/configure-a-hidden-replica-set-member.txt,manual,2,0,0,0,0,2, +1391,https://www.mongodb.com/docs/manual/tutorial/configure-a-non-voting-replica-set-member/,manual/manual/source/tutorial/configure-a-non-voting-replica-set-member.txt,manual,4,0,0,0,0,4, +1392,https://www.mongodb.com/docs/manual/tutorial/configure-audit-filters/,manual/manual/source/tutorial/configure-audit-filters.txt,manual,24,0,0,0,0,16, +1393,https://www.mongodb.com/docs/manual/tutorial/configure-auditing/,manual/manual/source/tutorial/configure-auditing.txt,manual,11,0,0,0,0,6, +1394,https://www.mongodb.com/docs/manual/tutorial/configure-encryption/,manual/manual/source/tutorial/configure-encryption.txt,manual,7,0,0,0,0,5, +1395,https://www.mongodb.com/docs/manual/tutorial/configure-fips/,manual/manual/source/tutorial/configure-fips.txt,manual,9,0,0,0,0,8, +1396,https://www.mongodb.com/docs/manual/tutorial/configure-ldap-sasl-activedirectory/,manual/manual/source/tutorial/configure-ldap-sasl-activedirectory.txt,manual,15,0,0,0,0,8, +1397,https://www.mongodb.com/docs/manual/tutorial/configure-ldap-sasl-openldap/,manual/manual/source/tutorial/configure-ldap-sasl-openldap.txt,manual,13,0,0,0,0,5, +1398,https://www.mongodb.com/docs/manual/tutorial/configure-linux-iptables-firewall/,manual/manual/source/tutorial/configure-linux-iptables-firewall.txt,manual,12,0,0,0,0,12, +1399,https://www.mongodb.com/docs/manual/tutorial/configure-rate-limiter/,manual/manual/source/tutorial/configure-rate-limiter.txt,manual,2,0,0,0,0,2, +1400,https://www.mongodb.com/docs/manual/tutorial/configure-replica-set-secondary-sync-target/,manual/manual/source/tutorial/configure-replica-set-secondary-sync-target.txt,manual,2,0,0,0,0,2, +1401,https://www.mongodb.com/docs/manual/tutorial/configure-replica-set-tag-sets/,manual/manual/source/tutorial/configure-replica-set-tag-sets.txt,manual,10,0,0,0,0,10, +1402,https://www.mongodb.com/docs/manual/tutorial/configure-scram-client-authentication/,manual/manual/source/tutorial/configure-scram-client-authentication.txt,manual,9,0,0,0,0,9, +1403,https://www.mongodb.com/docs/manual/tutorial/configure-secondary-only-replica-set-member/,manual/manual/source/tutorial/configure-secondary-only-replica-set-member.txt,manual,3,0,0,0,0,3, +1404,https://www.mongodb.com/docs/manual/tutorial/configure-ssl-clients/,manual/manual/source/tutorial/configure-ssl-clients.txt,manual,18,0,0,0,0,17, +1405,https://www.mongodb.com/docs/manual/tutorial/configure-ssl/,manual/manual/source/tutorial/configure-ssl.txt,manual,39,0,0,0,0,19, +1406,https://www.mongodb.com/docs/manual/tutorial/configure-windows-netsh-firewall/,manual/manual/source/tutorial/configure-windows-netsh-firewall.txt,manual,13,0,0,0,0,0, +1407,https://www.mongodb.com/docs/manual/tutorial/configure-x509-client-authentication/,manual/manual/source/tutorial/configure-x509-client-authentication.txt,manual,10,0,0,0,0,9, +1408,https://www.mongodb.com/docs/manual/tutorial/configure-x509-member-authentication/,manual/manual/source/tutorial/configure-x509-member-authentication.txt,manual,27,0,0,0,0,17, +1409,https://www.mongodb.com/docs/manual/tutorial/connection-pool-performance-tuning/,manual/manual/source/tutorial/connection-pool-performance-tuning.txt,manual,0,0,0,0,0,0, +1410,https://www.mongodb.com/docs/manual/tutorial/control-access-to-mongodb-windows-with-kerberos-authentication/,manual/manual/source/tutorial/control-access-to-mongodb-windows-with-kerberos-authentication.txt,manual,11,0,0,0,0,11, +1411,https://www.mongodb.com/docs/manual/tutorial/control-access-to-mongodb-with-kerberos-authentication/,manual/manual/source/tutorial/control-access-to-mongodb-with-kerberos-authentication.txt,manual,20,0,0,0,0,18, +1412,https://www.mongodb.com/docs/manual/tutorial/convert-command-line-options-to-yaml/,manual/manual/source/tutorial/convert-command-line-options-to-yaml.txt,manual,6,0,0,0,0,4, +1413,https://www.mongodb.com/docs/manual/tutorial/convert-replica-set-to-embedded-config-server/,manual/manual/source/tutorial/convert-replica-set-to-embedded-config-server.txt,manual,4,0,0,0,0,4, +1414,https://www.mongodb.com/docs/manual/tutorial/convert-replica-set-to-replicated-shard-cluster/,manual/manual/source/tutorial/convert-replica-set-to-replicated-shard-cluster.txt,manual,55,0,0,0,0,42, +1415,https://www.mongodb.com/docs/manual/tutorial/convert-secondary-into-arbiter/,manual/manual/source/tutorial/convert-secondary-into-arbiter.txt,manual,16,0,0,0,0,16, +1416,https://www.mongodb.com/docs/manual/tutorial/convert-sharded-cluster-to-replica-set/,manual/manual/source/tutorial/convert-sharded-cluster-to-replica-set.txt,manual,9,0,0,0,0,9, +1417,https://www.mongodb.com/docs/manual/tutorial/convert-standalone-to-replica-set/,manual/manual/source/tutorial/convert-standalone-to-replica-set.txt,manual,11,0,0,0,0,5, +1418,https://www.mongodb.com/docs/manual/tutorial/create-a-vulnerability-report/,manual/manual/source/tutorial/create-a-vulnerability-report.txt,manual,0,0,0,0,0,0, +1419,https://www.mongodb.com/docs/manual/tutorial/create-chunks-in-sharded-cluster/,manual/manual/source/tutorial/create-chunks-in-sharded-cluster.txt,manual,3,0,0,0,0,3, +1420,https://www.mongodb.com/docs/manual/tutorial/create-queries-that-ensure-selectivity/,manual/manual/source/tutorial/create-queries-that-ensure-selectivity.txt,manual,3,0,0,0,0,3, +1421,https://www.mongodb.com/docs/manual/tutorial/create-users/,manual/manual/source/tutorial/create-users.txt,manual,12,0,0,0,0,12, +1422,https://www.mongodb.com/docs/manual/tutorial/deploy-geographically-distributed-replica-set/,manual/manual/source/tutorial/deploy-geographically-distributed-replica-set.txt,manual,10,0,0,0,0,7, +1423,https://www.mongodb.com/docs/manual/tutorial/deploy-replica-set-for-testing/,manual/manual/source/tutorial/deploy-replica-set-for-testing.txt,manual,11,0,0,0,0,8, +1424,https://www.mongodb.com/docs/manual/tutorial/deploy-replica-set-with-keyfile-access-control/,manual/manual/source/tutorial/deploy-replica-set-with-keyfile-access-control.txt,manual,11,0,0,0,0,10, +1425,https://www.mongodb.com/docs/manual/tutorial/deploy-replica-set/,manual/manual/source/tutorial/deploy-replica-set.txt,manual,9,0,0,0,0,6, +1426,https://www.mongodb.com/docs/manual/tutorial/deploy-shard-cluster/,manual/manual/source/tutorial/deploy-shard-cluster.txt,manual,17,0,0,0,0,14, +1427,https://www.mongodb.com/docs/manual/tutorial/deploy-sharded-cluster-with-keyfile-access-control/,manual/manual/source/tutorial/deploy-sharded-cluster-with-keyfile-access-control.txt,manual,21,0,0,0,0,18, +1428,https://www.mongodb.com/docs/manual/tutorial/develop-mongodb-locally-with-tls/,manual/manual/source/tutorial/develop-mongodb-locally-with-tls.txt,manual,6,0,0,0,0,2, +1429,https://www.mongodb.com/docs/manual/tutorial/disable-transparent-huge-pages/,manual/manual/source/tutorial/disable-transparent-huge-pages.txt,manual,20,0,0,0,0,18, +1430,https://www.mongodb.com/docs/manual/tutorial/drop-a-hashed-shard-key-index/,manual/manual/source/tutorial/drop-a-hashed-shard-key-index.txt,manual,5,0,0,0,0,4, +1431,https://www.mongodb.com/docs/manual/tutorial/enable-authentication/,manual/manual/source/tutorial/enable-authentication.txt,manual,0,0,0,0,0,0, +1432,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set-without-downtime/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-replica-set-without-downtime.txt,manual,12,0,0,0,0,10, +1433,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-replica-set.txt,manual,1,0,0,0,0,1, +1434,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster-no-downtime/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster-no-downtime.txt,manual,20,0,0,0,0,16, +1435,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster.txt,manual,18,0,0,0,0,15, +1436,https://www.mongodb.com/docs/manual/tutorial/equality-sort-range-guideline/,manual/manual/source/tutorial/equality-sort-range-guideline.txt,manual,6,0,0,0,0,6, +1437,https://www.mongodb.com/docs/manual/tutorial/evaluate-operation-performance/,manual/manual/source/tutorial/evaluate-operation-performance.txt,manual,0,0,0,0,0,0, +1438,https://www.mongodb.com/docs/manual/tutorial/expand-replica-set/,manual/manual/source/tutorial/expand-replica-set.txt,manual,5,0,0,0,0,3, +1439,https://www.mongodb.com/docs/manual/tutorial/expire-data/,manual/manual/source/tutorial/expire-data.txt,manual,12,0,0,0,0,9, +1440,https://www.mongodb.com/docs/manual/tutorial/explain-slow-queries/,manual/manual/source/tutorial/explain-slow-queries.txt,manual,1,0,0,0,0,1, +1441,https://www.mongodb.com/docs/manual/tutorial/find-slow-queries-with-database-profiler/,manual/manual/source/tutorial/find-slow-queries-with-database-profiler.txt,manual,7,3,3,0,0,7, +1442,https://www.mongodb.com/docs/manual/tutorial/force-member-to-be-primary/,manual/manual/source/tutorial/force-member-to-be-primary.txt,manual,6,0,0,0,0,6, +1443,https://www.mongodb.com/docs/manual/tutorial/geospatial-tutorial/,manual/manual/source/tutorial/geospatial-tutorial.txt,manual,11,0,0,0,0,11, +1444,https://www.mongodb.com/docs/manual/tutorial/getting-started/,manual/manual/source/tutorial/getting-started.txt,manual,0,0,0,0,0,0, +1445,https://www.mongodb.com/docs/manual/tutorial/implement-field-level-redaction/,manual/manual/source/tutorial/implement-field-level-redaction.txt,manual,3,0,0,0,0,1, +1446,https://www.mongodb.com/docs/manual/tutorial/insert-documents/,manual/manual/source/tutorial/insert-documents.txt,manual,57,0,0,0,25,9, +1447,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-amazon-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-amazon-tarball.txt,manual,11,0,0,0,0,9, +1448,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-amazon/,manual/manual/source/tutorial/install-mongodb-enterprise-on-amazon.txt,manual,21,0,0,0,0,17, +1449,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-debian-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-debian-tarball.txt,manual,10,0,0,0,0,9, +1450,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-debian/,manual/manual/source/tutorial/install-mongodb-enterprise-on-debian.txt,manual,22,0,0,0,0,22, +1451,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-os-x/,manual/manual/source/tutorial/install-mongodb-enterprise-on-os-x.txt,manual,10,0,0,0,0,9, +1452,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-red-hat-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-red-hat-tarball.txt,manual,26,0,0,0,0,25, +1453,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-red-hat/,manual/manual/source/tutorial/install-mongodb-enterprise-on-red-hat.txt,manual,28,0,0,0,0,24, +1454,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-suse-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-suse-tarball.txt,manual,10,0,0,0,0,9, +1455,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-suse/,manual/manual/source/tutorial/install-mongodb-enterprise-on-suse.txt,manual,14,0,0,0,0,13, +1456,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-ubuntu-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-ubuntu-tarball.txt,manual,13,0,0,0,0,12, +1457,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-ubuntu/,manual/manual/source/tutorial/install-mongodb-enterprise-on-ubuntu.txt,manual,26,0,0,0,0,26, +1458,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-windows-unattended/,manual/manual/source/tutorial/install-mongodb-enterprise-on-windows-unattended.txt,manual,6,0,0,0,0,1, +1459,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-windows-zip/,manual/manual/source/tutorial/install-mongodb-enterprise-on-windows-zip.txt,manual,8,0,0,0,0,1, +1460,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-windows/,manual/manual/source/tutorial/install-mongodb-enterprise-on-windows.txt,manual,6,0,0,0,0,1, +1461,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-with-docker/,manual/manual/source/tutorial/install-mongodb-enterprise-with-docker.txt,manual,11,0,0,0,0,11, +1462,https://www.mongodb.com/docs/manual/tutorial/iterate-a-cursor/,manual/manual/source/tutorial/iterate-a-cursor.txt,manual,22,10,10,0,0,22, +1463,https://www.mongodb.com/docs/manual/tutorial/kerberos-auth-activedirectory-authz/,manual/manual/source/tutorial/kerberos-auth-activedirectory-authz.txt,manual,22,0,0,0,0,12, +1464,https://www.mongodb.com/docs/manual/tutorial/list-users/,manual/manual/source/tutorial/list-users.txt,manual,1,0,0,0,0,1, +1465,https://www.mongodb.com/docs/manual/tutorial/long-running-queries/,manual/manual/source/tutorial/long-running-queries.txt,manual,17,0,0,0,7,0, +1466,https://www.mongodb.com/docs/manual/tutorial/manage-chained-replication/,manual/manual/source/tutorial/manage-chained-replication.txt,manual,4,0,0,0,0,4, +1467,https://www.mongodb.com/docs/manual/tutorial/manage-indexes/,manual/manual/source/tutorial/manage-indexes.txt,manual,17,0,0,0,0,17, +1468,https://www.mongodb.com/docs/manual/tutorial/manage-journaling/,manual/manual/source/tutorial/manage-journaling.txt,manual,9,0,0,0,0,9, +1469,https://www.mongodb.com/docs/manual/tutorial/manage-mongodb-processes/,manual/manual/source/tutorial/manage-mongodb-processes.txt,manual,11,0,0,0,0,9, +1470,https://www.mongodb.com/docs/manual/tutorial/manage-shard-zone/,manual/manual/source/tutorial/manage-shard-zone.txt,manual,6,0,0,0,0,6, +1471,https://www.mongodb.com/docs/manual/tutorial/manage-shard-zone/update-existing-shard-zone/,manual/manual/source/tutorial/manage-shard-zone/update-existing-shard-zone.txt,manual,6,0,0,0,0,5, +1472,https://www.mongodb.com/docs/manual/tutorial/manage-sharded-cluster-balancer/,manual/manual/source/tutorial/manage-sharded-cluster-balancer.txt,manual,21,0,0,0,0,21, +1473,https://www.mongodb.com/docs/manual/tutorial/manage-the-database-profiler/,manual/manual/source/tutorial/manage-the-database-profiler.txt,manual,21,0,0,0,0,21, +1474,https://www.mongodb.com/docs/manual/tutorial/manage-users-and-roles/,manual/manual/source/tutorial/manage-users-and-roles.txt,manual,12,0,0,0,0,12, +1475,https://www.mongodb.com/docs/manual/tutorial/map-reduce-examples/,manual/manual/source/tutorial/map-reduce-examples.txt,manual,24,0,0,0,0,24, +1476,https://www.mongodb.com/docs/manual/tutorial/measure-index-use/,manual/manual/source/tutorial/measure-index-use.txt,manual,5,0,0,0,0,5, +1477,https://www.mongodb.com/docs/manual/tutorial/merge-chunks-in-sharded-cluster/,manual/manual/source/tutorial/merge-chunks-in-sharded-cluster.txt,manual,8,0,0,0,0,5, +1478,https://www.mongodb.com/docs/manual/tutorial/migrate-chunks-in-sharded-cluster/,manual/manual/source/tutorial/migrate-chunks-in-sharded-cluster.txt,manual,2,0,0,0,0,2, +1479,https://www.mongodb.com/docs/manual/tutorial/migrate-sharded-cluster-to-new-hardware/,manual/manual/source/tutorial/migrate-sharded-cluster-to-new-hardware.txt,manual,11,0,0,0,0,11, +1480,https://www.mongodb.com/docs/manual/tutorial/mitigate-psa-performance-issues/,manual/manual/source/tutorial/mitigate-psa-performance-issues.txt,manual,1,0,0,0,0,1, +1481,https://www.mongodb.com/docs/manual/tutorial/model-data-for-atomic-operations/,manual/manual/source/tutorial/model-data-for-atomic-operations.txt,manual,3,0,0,0,0,3, +1482,https://www.mongodb.com/docs/manual/tutorial/model-data-for-keyword-search/,manual/manual/source/tutorial/model-data-for-keyword-search.txt,manual,3,0,0,0,0,3, +1483,https://www.mongodb.com/docs/manual/tutorial/model-embedded-many-to-many-relationships-between-documents/,manual/manual/source/tutorial/model-embedded-many-to-many-relationships-between-documents.txt,manual,1,0,0,0,0,1, +1484,https://www.mongodb.com/docs/manual/tutorial/model-embedded-one-to-many-relationships-between-documents/,manual/manual/source/tutorial/model-embedded-one-to-many-relationships-between-documents.txt,manual,2,0,0,0,0,2, +1485,https://www.mongodb.com/docs/manual/tutorial/model-embedded-one-to-one-relationships-between-documents/,manual/manual/source/tutorial/model-embedded-one-to-one-relationships-between-documents.txt,manual,2,0,0,0,0,2, +1486,https://www.mongodb.com/docs/manual/tutorial/model-iot-data/,manual/manual/source/tutorial/model-iot-data.txt,manual,4,0,0,0,0,4, +1487,https://www.mongodb.com/docs/manual/tutorial/model-monetary-data/,manual/manual/source/tutorial/model-monetary-data.txt,manual,12,0,0,0,0,12, +1488,https://www.mongodb.com/docs/manual/tutorial/model-referenced-one-to-many-relationships-between-documents/,manual/manual/source/tutorial/model-referenced-one-to-many-relationships-between-documents.txt,manual,3,0,0,0,0,3, +1489,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-ancestors-array/,manual/manual/source/tutorial/model-tree-structures-with-ancestors-array.txt,manual,4,0,0,0,0,4, +1490,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-child-references/,manual/manual/source/tutorial/model-tree-structures-with-child-references.txt,manual,4,0,0,0,0,4, +1491,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-materialized-paths/,manual/manual/source/tutorial/model-tree-structures-with-materialized-paths.txt,manual,5,0,0,0,0,5, +1492,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-nested-sets/,manual/manual/source/tutorial/model-tree-structures-with-nested-sets.txt,manual,2,0,0,0,0,2, +1493,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-parent-references/,manual/manual/source/tutorial/model-tree-structures-with-parent-references.txt,manual,4,0,0,0,0,4, +1494,https://www.mongodb.com/docs/manual/tutorial/modify-chunk-size-in-sharded-cluster/,manual/manual/source/tutorial/modify-chunk-size-in-sharded-cluster.txt,manual,2,0,0,0,0,2, +1495,https://www.mongodb.com/docs/manual/tutorial/modify-psa-replica-set-safely/,manual/manual/source/tutorial/modify-psa-replica-set-safely.txt,manual,2,0,0,0,0,2, +1496,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/advanced-guidance/architecture/,manual/manual/source/tutorial/mongot-sizing/advanced-guidance/architecture.txt,manual,0,0,0,0,0,0, +1497,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/advanced-guidance/hardware/,manual/manual/source/tutorial/mongot-sizing/advanced-guidance/hardware.txt,manual,1,0,0,0,0,1, +1498,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/advanced-guidance/resource-allocation/,manual/manual/source/tutorial/mongot-sizing/advanced-guidance/resource-allocation.txt,manual,2,0,0,0,0,0, +1499,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/introduction/,manual/manual/source/tutorial/mongot-sizing/introduction.txt,manual,0,0,0,0,0,0, +1500,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/quick-start/,manual/manual/source/tutorial/mongot-sizing/quick-start.txt,manual,0,0,0,0,0,0, +1501,https://www.mongodb.com/docs/manual/tutorial/monitor-slow-queries/,manual/manual/source/tutorial/monitor-slow-queries.txt,manual,2,1,1,0,0,2, +1502,https://www.mongodb.com/docs/manual/tutorial/move-a-collection/,manual/manual/source/tutorial/move-a-collection.txt,manual,5,0,0,0,0,5, +1503,https://www.mongodb.com/docs/manual/tutorial/operation-rejection-filters/,manual/manual/source/tutorial/operation-rejection-filters.txt,manual,12,0,0,0,0,12, +1504,https://www.mongodb.com/docs/manual/tutorial/perform-incremental-map-reduce/,manual/manual/source/tutorial/perform-incremental-map-reduce.txt,manual,23,0,0,0,0,23, +1505,https://www.mongodb.com/docs/manual/tutorial/perform-maintence-on-replica-set-members/,manual/manual/source/tutorial/perform-maintence-on-replica-set-members.txt,manual,11,0,0,0,0,9, +1506,https://www.mongodb.com/docs/manual/tutorial/project-fields-from-query-results/,manual/manual/source/tutorial/project-fields-from-query-results.txt,manual,207,14,14,0,54,66, +1507,https://www.mongodb.com/docs/manual/tutorial/query-array-of-documents/,manual/manual/source/tutorial/query-array-of-documents.txt,manual,127,0,0,0,54,28, +1508,https://www.mongodb.com/docs/manual/tutorial/query-arrays/,manual/manual/source/tutorial/query-arrays.txt,manual,182,0,0,0,76,36, +1509,https://www.mongodb.com/docs/manual/tutorial/query-documents/,manual/manual/source/tutorial/query-documents.txt,manual,152,0,0,0,66,29, +1510,https://www.mongodb.com/docs/manual/tutorial/query-documents/specify-query-timeout/,manual/manual/source/tutorial/query-documents/specify-query-timeout.txt,manual,0,0,0,0,0,0, +1511,https://www.mongodb.com/docs/manual/tutorial/query-embedded-documents/,manual/manual/source/tutorial/query-embedded-documents.txt,manual,131,0,0,2,58,27, +1512,https://www.mongodb.com/docs/manual/tutorial/query-for-null-fields/,manual/manual/source/tutorial/query-for-null-fields.txt,manual,73,0,0,0,30,18, +1513,https://www.mongodb.com/docs/manual/tutorial/reconfigure-replica-set-with-unavailable-members/,manual/manual/source/tutorial/reconfigure-replica-set-with-unavailable-members.txt,manual,3,0,0,0,0,3, +1514,https://www.mongodb.com/docs/manual/tutorial/recover-data-following-unexpected-shutdown/,manual/manual/source/tutorial/recover-data-following-unexpected-shutdown.txt,manual,2,0,0,0,0,1, +1515,https://www.mongodb.com/docs/manual/tutorial/remove-documents/,manual/manual/source/tutorial/remove-documents.txt,manual,100,0,0,0,46,19, +1516,https://www.mongodb.com/docs/manual/tutorial/remove-replica-set-member/,manual/manual/source/tutorial/remove-replica-set-member.txt,manual,6,0,0,0,0,6, +1517,https://www.mongodb.com/docs/manual/tutorial/remove-shards-from-cluster/,manual/manual/source/tutorial/remove-shards-from-cluster.txt,manual,12,0,0,0,0,12, +1518,https://www.mongodb.com/docs/manual/tutorial/rename-unsharded-replica-set/,manual/manual/source/tutorial/rename-unsharded-replica-set.txt,manual,1,0,0,0,0,1, +1519,https://www.mongodb.com/docs/manual/tutorial/replace-config-server/,manual/manual/source/tutorial/replace-config-server.txt,manual,5,0,0,0,0,5, +1520,https://www.mongodb.com/docs/manual/tutorial/replace-replica-set-member/,manual/manual/source/tutorial/replace-replica-set-member.txt,manual,1,0,0,0,0,1, +1521,https://www.mongodb.com/docs/manual/tutorial/resharding-back-to-same-key/,manual/manual/source/tutorial/resharding-back-to-same-key.txt,manual,6,0,0,0,0,4, +1522,https://www.mongodb.com/docs/manual/tutorial/resharding-for-adding-and-removing-shards/,manual/manual/source/tutorial/resharding-for-adding-and-removing-shards.txt,manual,5,0,0,0,0,3, +1523,https://www.mongodb.com/docs/manual/tutorial/restart-sharded-cluster/,manual/manual/source/tutorial/restart-sharded-cluster.txt,manual,11,0,0,0,0,11, +1524,https://www.mongodb.com/docs/manual/tutorial/restore-replica-set-from-backup/,manual/manual/source/tutorial/restore-replica-set-from-backup.txt,manual,6,0,0,0,0,6, +1525,https://www.mongodb.com/docs/manual/tutorial/restore-sharded-cluster/,manual/manual/source/tutorial/restore-sharded-cluster.txt,manual,51,0,0,0,0,44, +1526,https://www.mongodb.com/docs/manual/tutorial/resync-replica-set-member/,manual/manual/source/tutorial/resync-replica-set-member.txt,manual,0,0,0,0,0,0, +1527,https://www.mongodb.com/docs/manual/tutorial/rotate-encryption-key/,manual/manual/source/tutorial/rotate-encryption-key.txt,manual,7,0,0,0,0,7, +1528,https://www.mongodb.com/docs/manual/tutorial/rotate-key-replica-set/,manual/manual/source/tutorial/rotate-key-replica-set.txt,manual,6,0,0,0,0,6, +1529,https://www.mongodb.com/docs/manual/tutorial/rotate-key-sharded-cluster/,manual/manual/source/tutorial/rotate-key-sharded-cluster.txt,manual,14,0,0,0,0,14, +1530,https://www.mongodb.com/docs/manual/tutorial/rotate-log-files/,manual/manual/source/tutorial/rotate-log-files.txt,manual,7,0,0,0,0,7, +1531,https://www.mongodb.com/docs/manual/tutorial/rotate-x509-member-cert/,manual/manual/source/tutorial/rotate-x509-member-cert.txt,manual,8,0,0,0,0,4, +1532,https://www.mongodb.com/docs/manual/tutorial/rotate-x509-membership-certificates/,manual/manual/source/tutorial/rotate-x509-membership-certificates.txt,manual,8,0,0,0,0,4, +1533,https://www.mongodb.com/docs/manual/tutorial/rotate-x509-to-extensionValue/,manual/manual/source/tutorial/rotate-x509-to-extensionValue.txt,manual,8,0,0,0,0,4, +1534,https://www.mongodb.com/docs/manual/tutorial/schedule-backup-window-for-sharded-clusters/,manual/manual/source/tutorial/schedule-backup-window-for-sharded-clusters.txt,manual,1,0,0,0,0,1, +1535,https://www.mongodb.com/docs/manual/tutorial/shard-collection-with-unique-index/,manual/manual/source/tutorial/shard-collection-with-unique-index.txt,manual,6,3,3,0,0,6, +1536,https://www.mongodb.com/docs/manual/tutorial/sharding-distribute-collections-with-zones/,manual/manual/source/tutorial/sharding-distribute-collections-with-zones.txt,manual,6,0,0,0,0,6, +1537,https://www.mongodb.com/docs/manual/tutorial/sharding-high-availability-writes/,manual/manual/source/tutorial/sharding-high-availability-writes.txt,manual,11,0,0,0,0,11, +1538,https://www.mongodb.com/docs/manual/tutorial/sharding-segmenting-data-by-location/,manual/manual/source/tutorial/sharding-segmenting-data-by-location.txt,manual,16,0,0,0,0,16, +1539,https://www.mongodb.com/docs/manual/tutorial/sharding-segmenting-shards/,manual/manual/source/tutorial/sharding-segmenting-shards.txt,manual,10,0,0,0,0,10, +1540,https://www.mongodb.com/docs/manual/tutorial/sharding-tiered-hardware-for-varying-slas/,manual/manual/source/tutorial/sharding-tiered-hardware-for-varying-slas.txt,manual,15,0,0,0,0,15, +1541,https://www.mongodb.com/docs/manual/tutorial/sort-results-with-indexes/,manual/manual/source/tutorial/sort-results-with-indexes.txt,manual,25,0,0,0,0,20, +1542,https://www.mongodb.com/docs/manual/tutorial/split-chunks-in-sharded-cluster/,manual/manual/source/tutorial/split-chunks-in-sharded-cluster.txt,manual,2,0,0,0,0,2, +1543,https://www.mongodb.com/docs/manual/tutorial/start-a-sharded-cluster-with-config-shard/,manual/manual/source/tutorial/start-a-sharded-cluster-with-config-shard.txt,manual,12,1,1,0,0,10, +1544,https://www.mongodb.com/docs/manual/tutorial/stop-moving-a-collection/,manual/manual/source/tutorial/stop-moving-a-collection.txt,manual,4,0,0,0,0,4, +1545,https://www.mongodb.com/docs/manual/tutorial/stop-unsharding-collection/,manual/manual/source/tutorial/stop-unsharding-collection.txt,manual,3,0,0,0,0,3, +1546,https://www.mongodb.com/docs/manual/tutorial/store-javascript-function-on-server/,manual/manual/source/tutorial/store-javascript-function-on-server.txt,manual,8,2,2,0,0,8, +1547,https://www.mongodb.com/docs/manual/tutorial/terminate-running-operations/,manual/manual/source/tutorial/terminate-running-operations.txt,manual,4,0,0,0,0,4, +1548,https://www.mongodb.com/docs/manual/tutorial/text-search-in-aggregation/,manual/manual/source/tutorial/text-search-in-aggregation.txt,manual,5,0,0,0,0,5, +1549,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-kerberos/,manual/manual/source/tutorial/troubleshoot-kerberos.txt,manual,5,0,0,0,0,5, +1550,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-map-function/,manual/manual/source/tutorial/troubleshoot-map-function.txt,manual,6,0,0,0,0,6, +1551,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-reduce-function/,manual/manual/source/tutorial/troubleshoot-reduce-function.txt,manual,18,0,0,0,0,18, +1552,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-replica-sets/,manual/manual/source/tutorial/troubleshoot-replica-sets.txt,manual,13,0,0,0,0,10, +1553,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-sharded-clusters/,manual/manual/source/tutorial/troubleshoot-sharded-clusters.txt,manual,4,1,1,0,0,1, +1554,https://www.mongodb.com/docs/manual/tutorial/unique-constraints-on-arbitrary-fields/,manual/manual/source/tutorial/unique-constraints-on-arbitrary-fields.txt,manual,3,0,0,0,0,3, +1555,https://www.mongodb.com/docs/manual/tutorial/unique-indexes-schema-validation/,manual/manual/source/tutorial/unique-indexes-schema-validation.txt,manual,14,5,5,0,0,9, +1556,https://www.mongodb.com/docs/manual/tutorial/unshard-collection/,manual/manual/source/tutorial/unshard-collection.txt,manual,3,0,0,0,0,3, +1557,https://www.mongodb.com/docs/manual/tutorial/update-documents-with-aggregation-pipeline/,manual/manual/source/tutorial/update-documents-with-aggregation-pipeline.txt,manual,24,0,0,0,0,24, +1558,https://www.mongodb.com/docs/manual/tutorial/update-documents/,manual/manual/source/tutorial/update-documents.txt,manual,67,0,0,0,30,10, +1559,https://www.mongodb.com/docs/manual/tutorial/upgrade-cluster-to-ssl/,manual/manual/source/tutorial/upgrade-cluster-to-ssl.txt,manual,8,0,0,0,0,6, +1560,https://www.mongodb.com/docs/manual/tutorial/upgrade-keyfile-to-x509/,manual/manual/source/tutorial/upgrade-keyfile-to-x509.txt,manual,14,0,0,0,0,9, +1561,https://www.mongodb.com/docs/manual/tutorial/upgrade-revision/,manual/manual/source/tutorial/upgrade-revision.txt,manual,2,0,0,0,0,2, +1562,https://www.mongodb.com/docs/manual/tutorial/upgrade-to-enterprise-replica-set/,manual/manual/source/tutorial/upgrade-to-enterprise-replica-set.txt,manual,0,0,0,0,0,0, +1563,https://www.mongodb.com/docs/manual/tutorial/upgrade-to-enterprise-sharded-cluster/,manual/manual/source/tutorial/upgrade-to-enterprise-sharded-cluster.txt,manual,7,0,0,0,0,7, +1564,https://www.mongodb.com/docs/manual/tutorial/upgrade-to-enterprise-standalone/,manual/manual/source/tutorial/upgrade-to-enterprise-standalone.txt,manual,0,0,0,0,0,0, +1565,https://www.mongodb.com/docs/manual/tutorial/use-database-commands/,manual/manual/source/tutorial/use-database-commands.txt,manual,4,0,0,0,0,4, +1566,https://www.mongodb.com/docs/manual/tutorial/use-mql-to-update-an-array/,manual/manual/source/tutorial/use-mql-to-update-an-array.txt,manual,15,5,5,0,0,15, +1567,https://www.mongodb.com/docs/manual/tutorial/verify-mongodb-packages/,manual/manual/source/tutorial/verify-mongodb-packages.txt,manual,18,0,0,0,0,17, +1568,https://www.mongodb.com/docs/manual/tutorial/view-sharded-cluster-configuration/,manual/manual/source/tutorial/view-sharded-cluster-configuration.txt,manual,3,0,0,0,0,3, +1569,https://www.mongodb.com/docs/atlas/access-tracking/,atlas/source/access-tracking.txt,atlas,0,0,0,0,0,0, +1570,https://www.mongodb.com/docs/atlas/access/manage-org-users/,atlas/source/access/manage-org-users.txt,atlas,0,0,0,0,0,0, +1571,https://www.mongodb.com/docs/atlas/access/manage-project-access/,atlas/source/access/manage-project-access.txt,atlas,0,0,0,0,0,0, +1572,https://www.mongodb.com/docs/atlas/access/manage-teams-in-orgs/,atlas/source/access/manage-teams-in-orgs.txt,atlas,0,0,0,0,0,0, +1573,https://www.mongodb.com/docs/atlas/access/orgs-create-view-edit-delete/,atlas/source/access/orgs-create-view-edit-delete.txt,atlas,0,0,0,0,0,0, +1574,https://www.mongodb.com/docs/atlas/ai-and-data-usage-information/,atlas/source/ai-and-data-usage-information.txt,atlas,6,0,0,0,0,0, +1575,https://www.mongodb.com/docs/atlas/ai-cluster-assistant/,atlas/source/ai-cluster-assistant.txt,atlas,8,4,4,0,0,0, +1576,https://www.mongodb.com/docs/atlas/ai-integrations/,atlas/source/ai-integrations.txt,atlas,0,0,0,0,0,0, +1577,https://www.mongodb.com/docs/atlas/ai-integrations/agent-frameworks/,atlas/source/ai-integrations/agent-frameworks.txt,atlas,0,0,0,0,0,0, +1578,https://www.mongodb.com/docs/atlas/ai-integrations/ai-api-resources/,atlas/source/ai-integrations/ai-api-resources.txt,atlas,0,0,0,0,0,0, +1579,https://www.mongodb.com/docs/atlas/ai-integrations/amazon-bedrock/,atlas/source/ai-integrations/amazon-bedrock.txt,atlas,6,1,1,0,0,0, +1580,https://www.mongodb.com/docs/atlas/ai-integrations/amazon-bedrock/hybrid-search/,atlas/source/ai-integrations/amazon-bedrock/hybrid-search.txt,atlas,1,0,0,0,0,0, +1581,https://www.mongodb.com/docs/atlas/ai-integrations/amazon-bedrock/troubleshooting/,atlas/source/ai-integrations/amazon-bedrock/troubleshooting.txt,atlas,1,0,0,0,0,0, +1582,https://www.mongodb.com/docs/atlas/ai-integrations/community-frameworks/,atlas/source/ai-integrations/community-frameworks.txt,atlas,0,0,0,0,0,0, +1583,https://www.mongodb.com/docs/atlas/ai-integrations/crewai/,atlas/source/ai-integrations/crewai.txt,atlas,6,0,0,0,3,2, +1584,https://www.mongodb.com/docs/atlas/ai-integrations/crewai/build-agents/,atlas/source/ai-integrations/crewai/build-agents.txt,atlas,7,1,1,0,1,1, +1585,https://www.mongodb.com/docs/atlas/ai-integrations/frameworks/,atlas/source/ai-integrations/frameworks.txt,atlas,0,0,0,0,0,0, +1586,https://www.mongodb.com/docs/atlas/ai-integrations/google-vertex-ai/,atlas/source/ai-integrations/google-vertex-ai.txt,atlas,3,0,0,0,0,3, +1587,https://www.mongodb.com/docs/atlas/ai-integrations/google-vertex-ai/agent-engine/,atlas/source/ai-integrations/google-vertex-ai/agent-engine.txt,atlas,18,3,3,0,12,1, +1588,https://www.mongodb.com/docs/atlas/ai-integrations/google-vertex-ai/extensions/,atlas/source/ai-integrations/google-vertex-ai/extensions.txt,atlas,15,0,0,0,10,0, +1589,https://www.mongodb.com/docs/atlas/ai-integrations/haystack/,atlas/source/ai-integrations/haystack.txt,atlas,24,4,4,0,18,0, +1590,https://www.mongodb.com/docs/atlas/ai-integrations/langchain-js/,atlas/source/ai-integrations/langchain-js.txt,atlas,24,5,5,0,0,14, +1591,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/,atlas/source/ai-integrations/langchain.txt,atlas,18,0,0,0,18,0, +1592,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/evaluate-rag/,atlas/source/ai-integrations/langchain/evaluate-rag.txt,atlas,17,0,0,0,14,1, +1593,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/get-started/,atlas/source/ai-integrations/langchain/get-started.txt,atlas,20,6,6,0,12,0, +1594,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/graph-rag/,atlas/source/ai-integrations/langchain/graph-rag.txt,atlas,10,1,1,0,7,0, +1595,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/hybrid-search/,atlas/source/ai-integrations/langchain/hybrid-search.txt,atlas,13,2,2,0,9,0, +1596,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/local-rag/,atlas/source/ai-integrations/langchain/local-rag.txt,atlas,10,1,1,0,7,2, +1597,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/memory-semantic-cache/,atlas/source/ai-integrations/langchain/memory-semantic-cache.txt,atlas,18,2,2,0,13,1, +1598,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/natural-language-to-mql/,atlas/source/ai-integrations/langchain/natural-language-to-mql.txt,atlas,7,1,1,0,1,1, +1599,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/parent-document-retrieval/,atlas/source/ai-integrations/langchain/parent-document-retrieval.txt,atlas,16,3,3,0,9,0, +1600,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/self-query-retrieval/,atlas/source/ai-integrations/langchain/self-query-retrieval.txt,atlas,17,4,4,0,10,1, +1601,https://www.mongodb.com/docs/atlas/ai-integrations/langchain4j/,atlas/source/ai-integrations/langchain4j.txt,atlas,23,3,3,0,15,0, +1602,https://www.mongodb.com/docs/atlas/ai-integrations/langchaingo/,atlas/source/ai-integrations/langchaingo.txt,atlas,41,8,8,0,17,8, +1603,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph-js/,atlas/source/ai-integrations/langgraph-js.txt,atlas,4,0,0,0,0,4, +1604,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph-js/build-agents/,atlas/source/ai-integrations/langgraph-js/build-agents.txt,atlas,25,3,3,0,0,2, +1605,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph/,atlas/source/ai-integrations/langgraph.txt,atlas,10,0,0,0,8,2, +1606,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph/build-agents/,atlas/source/ai-integrations/langgraph/build-agents.txt,atlas,12,1,1,0,7,1, +1607,https://www.mongodb.com/docs/atlas/ai-integrations/llamaindex/,atlas/source/ai-integrations/llamaindex.txt,atlas,26,6,4,0,20,0, +1608,https://www.mongodb.com/docs/atlas/ai-integrations/mastra/,atlas/source/ai-integrations/mastra.txt,atlas,8,0,0,0,0,1, +1609,https://www.mongodb.com/docs/atlas/ai-integrations/n8n/,atlas/source/ai-integrations/n8n.txt,atlas,5,0,0,0,0,0, +1610,https://www.mongodb.com/docs/atlas/ai-integrations/n8n/build-ai-agent/,atlas/source/ai-integrations/n8n/build-ai-agent.txt,atlas,6,2,2,0,0,0, +1611,https://www.mongodb.com/docs/atlas/ai-integrations/platforms/,atlas/source/ai-integrations/platforms.txt,atlas,0,0,0,0,0,0, +1612,https://www.mongodb.com/docs/atlas/ai-integrations/semantic-kernel-csharp/,atlas/source/ai-integrations/semantic-kernel-csharp.txt,atlas,13,2,2,0,3,5, +1613,https://www.mongodb.com/docs/atlas/ai-integrations/semantic-kernel-python/,atlas/source/ai-integrations/semantic-kernel-python.txt,atlas,15,3,3,0,10,0, +1614,https://www.mongodb.com/docs/atlas/ai-integrations/semantic-kernel/,atlas/source/ai-integrations/semantic-kernel.txt,atlas,0,0,0,0,0,0, +1615,https://www.mongodb.com/docs/atlas/ai-integrations/spring-ai/,atlas/source/ai-integrations/spring-ai.txt,atlas,19,2,2,0,9,2, +1616,https://www.mongodb.com/docs/atlas/ai-integrations/tools/,atlas/source/ai-integrations/tools.txt,atlas,0,0,0,0,0,0, +1617,https://www.mongodb.com/docs/atlas/alert-basics/,atlas/source/alert-basics.txt,atlas,0,0,0,0,0,0, +1618,https://www.mongodb.com/docs/atlas/alert-resolutions/,atlas/source/alert-resolutions.txt,atlas,0,0,0,0,0,0, +1619,https://www.mongodb.com/docs/atlas/alerts/,atlas/source/alerts.txt,atlas,0,0,0,0,0,0, +1620,https://www.mongodb.com/docs/atlas/analyze-slow-queries/,atlas/source/analyze-slow-queries.txt,atlas,0,0,0,0,0,0, +1621,https://www.mongodb.com/docs/atlas/api/,atlas/source/api.txt,atlas,0,0,0,0,0,0, +1622,https://www.mongodb.com/docs/atlas/api/api-authentication/,atlas/source/api/api-authentication.txt,atlas,0,0,0,0,0,0, +1623,https://www.mongodb.com/docs/atlas/api/api-rate-limit/,atlas/source/api/api-rate-limit.txt,atlas,4,0,0,0,0,4, +1624,https://www.mongodb.com/docs/atlas/api/api-upgrades/,atlas/source/api/api-upgrades.txt,atlas,0,0,0,0,0,0, +1625,https://www.mongodb.com/docs/atlas/api/atlas-admin-api-ref/,atlas/source/api/atlas-admin-api-ref.txt,atlas,2,0,0,0,0,1, +1626,https://www.mongodb.com/docs/atlas/api/atlas-admin-api/,atlas/source/api/atlas-admin-api.txt,atlas,0,0,0,0,0,0, +1627,https://www.mongodb.com/docs/atlas/api/migrate-to-new-version/,atlas/source/api/migrate-to-new-version.txt,atlas,5,0,0,0,0,5, +1628,https://www.mongodb.com/docs/atlas/api/service-accounts/generate-oauth2-token/,atlas/source/api/service-accounts/generate-oauth2-token.txt,atlas,17,0,0,0,0,1, +1629,https://www.mongodb.com/docs/atlas/api/service-accounts/revoke-oauth2-token/,atlas/source/api/service-accounts/revoke-oauth2-token.txt,atlas,16,0,0,0,0,1, +1630,https://www.mongodb.com/docs/atlas/api/versioned-api-overview/,atlas/source/api/versioned-api-overview.txt,atlas,3,0,0,0,0,3, +1631,https://www.mongodb.com/docs/atlas/atlas-data-processing/,atlas/source/atlas-data-processing.txt,atlas,0,0,0,0,0,0, +1632,https://www.mongodb.com/docs/atlas/atlas-resource-policies/,atlas/source/atlas-resource-policies.txt,atlas,64,0,0,0,0,4, +1633,https://www.mongodb.com/docs/atlas/atlas-search/,atlas/source/atlas-search.txt,atlas,0,0,0,0,0,0, +1634,https://www.mongodb.com/docs/atlas/atlas-search/about/deployment-options/,atlas/source/atlas-search/about/deployment-options.txt,atlas,0,0,0,0,0,0, +1635,https://www.mongodb.com/docs/atlas/atlas-search/about/feature-compatibility/,atlas/source/atlas-search/about/feature-compatibility.txt,atlas,0,0,0,0,0,0, +1636,https://www.mongodb.com/docs/atlas/atlas-search/accuracy/,atlas/source/atlas-search/accuracy.txt,atlas,0,0,0,0,0,0, +1637,https://www.mongodb.com/docs/atlas/atlas-search/aggregation-stages/search/,atlas/source/atlas-search/aggregation-stages/search.txt,atlas,4,1,1,0,0,0, +1638,https://www.mongodb.com/docs/atlas/atlas-search/aggregation-stages/searchMeta/,atlas/source/atlas-search/aggregation-stages/searchMeta.txt,atlas,4,1,1,0,0,0, +1639,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/,atlas/source/atlas-search/analyzers.txt,atlas,4,0,0,0,0,0, +1640,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/character-filters/,atlas/source/atlas-search/analyzers/character-filters.txt,atlas,25,8,8,0,8,0, +1641,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/custom/,atlas/source/atlas-search/analyzers/custom.txt,atlas,3,0,0,0,0,0, +1642,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/keyword/,atlas/source/atlas-search/analyzers/keyword.txt,atlas,7,2,2,0,1,0, +1643,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/language/,atlas/source/atlas-search/analyzers/language.txt,atlas,12,4,4,0,0,3, +1644,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/multi/,atlas/source/atlas-search/analyzers/multi.txt,atlas,12,4,4,0,4,0, +1645,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/simple/,atlas/source/atlas-search/analyzers/simple.txt,atlas,6,2,2,0,1,0, +1646,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/standard/,atlas/source/atlas-search/analyzers/standard.txt,atlas,6,2,2,0,1,0, +1647,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/token-filters/,atlas/source/atlas-search/analyzers/token-filters.txt,atlas,144,45,45,0,38,2, +1648,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/tokenizers/,atlas/source/atlas-search/analyzers/tokenizers.txt,atlas,55,18,18,0,18,0, +1649,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/whitespace/,atlas/source/atlas-search/analyzers/whitespace.txt,atlas,6,2,2,0,0,0, +1650,https://www.mongodb.com/docs/atlas/atlas-search/changelog/,atlas/source/atlas-search/changelog.txt,atlas,0,0,0,0,0,0, +1651,https://www.mongodb.com/docs/atlas/atlas-search/concurrent-query/,atlas/source/atlas-search/concurrent-query.txt,atlas,2,0,0,0,0,0, +1652,https://www.mongodb.com/docs/atlas/atlas-search/counting/,atlas/source/atlas-search/counting.txt,atlas,12,2,2,0,0,0, +1653,https://www.mongodb.com/docs/atlas/atlas-search/customize-score/,atlas/source/atlas-search/customize-score.txt,atlas,150,41,41,0,53,48, +1654,https://www.mongodb.com/docs/atlas/atlas-search/define-field-mappings/,atlas/source/atlas-search/define-field-mappings.txt,atlas,12,0,0,0,0,0, +1655,https://www.mongodb.com/docs/atlas/atlas-search/design-patterns/,atlas/source/atlas-search/design-patterns.txt,atlas,0,0,0,0,0,0, +1656,https://www.mongodb.com/docs/atlas/atlas-search/explain/,atlas/source/atlas-search/explain.txt,atlas,23,3,3,0,0,8, +1657,https://www.mongodb.com/docs/atlas/atlas-search/faq/,atlas/source/atlas-search/faq.txt,atlas,0,0,0,0,0,0, +1658,https://www.mongodb.com/docs/atlas/atlas-search/field-types/array-type/,atlas/source/atlas-search/field-types/array-type.txt,atlas,4,0,0,0,0,2, +1659,https://www.mongodb.com/docs/atlas/atlas-search/field-types/autocomplete-type/,atlas/source/atlas-search/field-types/autocomplete-type.txt,atlas,100,9,9,0,20,34, +1660,https://www.mongodb.com/docs/atlas/atlas-search/field-types/boolean-type/,atlas/source/atlas-search/field-types/boolean-type.txt,atlas,60,9,9,0,8,25, +1661,https://www.mongodb.com/docs/atlas/atlas-search/field-types/date-facet-type/,atlas/source/atlas-search/field-types/date-facet-type.txt,atlas,3,0,0,0,0,0, +1662,https://www.mongodb.com/docs/atlas/atlas-search/field-types/date-type/,atlas/source/atlas-search/field-types/date-type.txt,atlas,72,9,9,0,12,28, +1663,https://www.mongodb.com/docs/atlas/atlas-search/field-types/document-type/,atlas/source/atlas-search/field-types/document-type.txt,atlas,72,9,9,0,12,28, +1664,https://www.mongodb.com/docs/atlas/atlas-search/field-types/embedded-documents-type/,atlas/source/atlas-search/field-types/embedded-documents-type.txt,atlas,127,9,9,0,28,52, +1665,https://www.mongodb.com/docs/atlas/atlas-search/field-types/geo-type/,atlas/source/atlas-search/field-types/geo-type.txt,atlas,60,9,9,0,8,25, +1666,https://www.mongodb.com/docs/atlas/atlas-search/field-types/knn-vector/,atlas/source/atlas-search/field-types/knn-vector.txt,atlas,3,0,0,0,0,0, +1667,https://www.mongodb.com/docs/atlas/atlas-search/field-types/number-facet-type/,atlas/source/atlas-search/field-types/number-facet-type.txt,atlas,3,0,0,0,0,0, +1668,https://www.mongodb.com/docs/atlas/atlas-search/field-types/number-type/,atlas/source/atlas-search/field-types/number-type.txt,atlas,90,15,15,0,16,31, +1669,https://www.mongodb.com/docs/atlas/atlas-search/field-types/object-id-type/,atlas/source/atlas-search/field-types/object-id-type.txt,atlas,58,9,9,0,8,27, +1670,https://www.mongodb.com/docs/atlas/atlas-search/field-types/string-facet-type/,atlas/source/atlas-search/field-types/string-facet-type.txt,atlas,3,0,0,0,0,0, +1671,https://www.mongodb.com/docs/atlas/atlas-search/field-types/string-type/,atlas/source/atlas-search/field-types/string-type.txt,atlas,73,11,11,0,12,28, +1672,https://www.mongodb.com/docs/atlas/atlas-search/field-types/token-type/,atlas/source/atlas-search/field-types/token-type.txt,atlas,74,11,11,0,12,28, +1673,https://www.mongodb.com/docs/atlas/atlas-search/field-types/uuid-type/,atlas/source/atlas-search/field-types/uuid-type.txt,atlas,48,9,9,0,4,22, +1674,https://www.mongodb.com/docs/atlas/atlas-search/field-types/vector-type/,atlas/source/atlas-search/field-types/vector-type.txt,atlas,59,10,10,0,8,24, +1675,https://www.mongodb.com/docs/atlas/atlas-search/highlighting/,atlas/source/atlas-search/highlighting.txt,atlas,16,6,6,0,0,1, +1676,https://www.mongodb.com/docs/atlas/atlas-search/index-definitions/,atlas/source/atlas-search/index-definitions.txt,atlas,3,0,0,0,0,1, +1677,https://www.mongodb.com/docs/atlas/atlas-search/index-partition/,atlas/source/atlas-search/index-partition.txt,atlas,10,0,0,0,3,3, +1678,https://www.mongodb.com/docs/atlas/atlas-search/manage-indexes/,atlas/source/atlas-search/manage-indexes.txt,atlas,92,6,6,0,21,46, +1679,https://www.mongodb.com/docs/atlas/atlas-search/monitoring/,atlas/source/atlas-search/monitoring.txt,atlas,0,0,0,0,0,0, +1680,https://www.mongodb.com/docs/atlas/atlas-search/operators-and-collectors/,atlas/source/atlas-search/operators-and-collectors.txt,atlas,0,0,0,0,0,0, +1681,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/autocomplete/,atlas/source/atlas-search/operators-collectors/autocomplete.txt,atlas,242,2,2,0,89,10, +1682,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/compound/,atlas/source/atlas-search/operators-collectors/compound.txt,atlas,22,8,8,0,0,17, +1683,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/embedded-document/,atlas/source/atlas-search/operators-collectors/embedded-document.txt,atlas,10,4,4,0,0,1, +1684,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/equals/,atlas/source/atlas-search/operators-collectors/equals.txt,atlas,23,2,2,0,0,18, +1685,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/exists/,atlas/source/atlas-search/operators-collectors/exists.txt,atlas,7,2,2,0,0,6, +1686,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/facet/,atlas/source/atlas-search/operators-collectors/facet.txt,atlas,26,8,6,0,0,8, +1687,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/geoShape/,atlas/source/atlas-search/operators-collectors/geoShape.txt,atlas,10,4,4,0,0,5, +1688,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/geoWithin/,atlas/source/atlas-search/operators-collectors/geoWithin.txt,atlas,10,4,4,0,0,0, +1689,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/hasAncestor/,atlas/source/atlas-search/operators-collectors/hasAncestor.txt,atlas,4,1,1,0,0,3, +1690,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/hasRoot/,atlas/source/atlas-search/operators-collectors/hasRoot.txt,atlas,8,3,3,0,0,7, +1691,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/in/,atlas/source/atlas-search/operators-collectors/in.txt,atlas,10,4,4,0,0,0, +1692,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/knn-beta/,atlas/source/atlas-search/operators-collectors/knn-beta.txt,atlas,8,2,2,0,0,4, +1693,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/morelikethis/,atlas/source/atlas-search/operators-collectors/morelikethis.txt,atlas,16,6,6,0,0,9, +1694,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/near/,atlas/source/atlas-search/operators-collectors/near.txt,atlas,16,2,2,0,0,8, +1695,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/phrase/,atlas/source/atlas-search/operators-collectors/phrase.txt,atlas,11,5,5,0,0,4, +1696,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/queryString/,atlas/source/atlas-search/operators-collectors/queryString.txt,atlas,30,12,12,0,0,11, +1697,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/range/,atlas/source/atlas-search/operators-collectors/range.txt,atlas,27,8,8,0,0,18, +1698,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/regex/,atlas/source/atlas-search/operators-collectors/regex.txt,atlas,10,3,3,0,0,8, +1699,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/span/,atlas/source/atlas-search/operators-collectors/span.txt,atlas,19,6,6,0,0,8, +1700,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/text/,atlas/source/atlas-search/operators-collectors/text.txt,atlas,19,9,9,0,0,4, +1701,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/vectorSearch/,atlas/source/atlas-search/operators-collectors/vectorSearch.txt,atlas,27,5,5,0,0,26, +1702,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/wildcard/,atlas/source/atlas-search/operators-collectors/wildcard.txt,atlas,60,27,27,0,35,1, +1703,https://www.mongodb.com/docs/atlas/atlas-search/paginate-results/,atlas/source/atlas-search/paginate-results.txt,atlas,16,6,6,0,0,0, +1704,https://www.mongodb.com/docs/atlas/atlas-search/path-construction/,atlas/source/atlas-search/path-construction.txt,atlas,27,0,0,0,0,11, +1705,https://www.mongodb.com/docs/atlas/atlas-search/performance-options/,atlas/source/atlas-search/performance-options.txt,atlas,0,0,0,0,0,0, +1706,https://www.mongodb.com/docs/atlas/atlas-search/performance/,atlas/source/atlas-search/performance.txt,atlas,0,0,0,0,0,0, +1707,https://www.mongodb.com/docs/atlas/atlas-search/performance/index-performance/,atlas/source/atlas-search/performance/index-performance.txt,atlas,9,0,0,0,0,6, +1708,https://www.mongodb.com/docs/atlas/atlas-search/performance/query-performance/,atlas/source/atlas-search/performance/query-performance.txt,atlas,1,0,0,0,0,0, +1709,https://www.mongodb.com/docs/atlas/atlas-search/playground/,atlas/source/atlas-search/playground.txt,atlas,0,0,0,0,0,0, +1710,https://www.mongodb.com/docs/atlas/atlas-search/query-ref/,atlas/source/atlas-search/query-ref.txt,atlas,1,0,0,0,0,1, +1711,https://www.mongodb.com/docs/atlas/atlas-search/query-syntax/,atlas/source/atlas-search/query-syntax.txt,atlas,0,0,0,0,0,0, +1712,https://www.mongodb.com/docs/atlas/atlas-search/return-scope/,atlas/source/atlas-search/return-scope.txt,atlas,8,2,2,0,0,4, +1713,https://www.mongodb.com/docs/atlas/atlas-search/return-stored-source/,atlas/source/atlas-search/return-stored-source.txt,atlas,7,0,0,0,0,0, +1714,https://www.mongodb.com/docs/atlas/atlas-search/score/get-details/,atlas/source/atlas-search/score/get-details.txt,atlas,28,10,10,0,0,1, +1715,https://www.mongodb.com/docs/atlas/atlas-search/score/modify-score/,atlas/source/atlas-search/score/modify-score.txt,atlas,33,0,0,0,0,6, +1716,https://www.mongodb.com/docs/atlas/atlas-search/scoring/,atlas/source/atlas-search/scoring.txt,atlas,3,0,0,0,0,3, +1717,https://www.mongodb.com/docs/atlas/atlas-search/search-options/,atlas/source/atlas-search/search-options.txt,atlas,0,0,0,0,0,0, +1718,https://www.mongodb.com/docs/atlas/atlas-search/searching/,atlas/source/atlas-search/searching.txt,atlas,14,2,2,0,0,0, +1719,https://www.mongodb.com/docs/atlas/atlas-search/sort/,atlas/source/atlas-search/sort.txt,atlas,137,47,47,0,31,32, +1720,https://www.mongodb.com/docs/atlas/atlas-search/stored-source-definition/,atlas/source/atlas-search/stored-source-definition.txt,atlas,7,0,0,0,1,2, +1721,https://www.mongodb.com/docs/atlas/atlas-search/synonyms/,atlas/source/atlas-search/synonyms.txt,atlas,63,16,16,0,6,26, +1722,https://www.mongodb.com/docs/atlas/atlas-search/tracking/,atlas/source/atlas-search/tracking.txt,atlas,3,1,1,0,0,0, +1723,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/,atlas/source/atlas-search/tutorial.txt,atlas,130,30,30,0,16,73, +1724,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/cross-collection-tutorials/,atlas/source/atlas-search/tutorial/cross-collection-tutorials.txt,atlas,341,91,91,0,39,164, +1725,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/embedded-documents-tutorial/,atlas/source/atlas-search/tutorial/embedded-documents-tutorial.txt,atlas,141,35,35,0,18,63, +1726,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/facet-tutorial/,atlas/source/atlas-search/tutorial/facet-tutorial.txt,atlas,103,21,21,0,13,41, +1727,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/hybrid-search/,atlas/source/atlas-search/tutorial/hybrid-search.txt,atlas,28,6,6,0,0,26, +1728,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/partial-match/,atlas/source/atlas-search/tutorial/partial-match.txt,atlas,105,4,4,0,24,36, +1729,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/string-operators-tutorial/,atlas/source/atlas-search/tutorial/string-operators-tutorial.txt,atlas,86,15,15,0,20,31, +1730,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/synonyms-tutorial/,atlas/source/atlas-search/tutorial/synonyms-tutorial.txt,atlas,238,60,60,0,34,86, +1731,https://www.mongodb.com/docs/atlas/atlas-search/view-query-analytics/,atlas/source/atlas-search/view-query-analytics.txt,atlas,0,0,0,0,0,0, +1732,https://www.mongodb.com/docs/atlas/atlas-search/view-support/,atlas/source/atlas-search/view-support.txt,atlas,32,7,7,0,0,21, +1733,https://www.mongodb.com/docs/atlas/atlas-stream-processing/,atlas/source/atlas-stream-processing.txt,atlas,0,0,0,0,0,0, +1734,https://www.mongodb.com/docs/atlas/atlas-stream-processing/add-sp-connection/,atlas/source/atlas-stream-processing/add-sp-connection.txt,atlas,5,0,0,0,0,4, +1735,https://www.mongodb.com/docs/atlas/atlas-stream-processing/architecture/,atlas/source/atlas-stream-processing/architecture.txt,atlas,0,0,0,0,0,0, +1736,https://www.mongodb.com/docs/atlas/atlas-stream-processing/changelog/,atlas/source/atlas-stream-processing/changelog.txt,atlas,0,0,0,0,0,0, +1737,https://www.mongodb.com/docs/atlas/atlas-stream-processing/gcp-private-link-connection/,atlas/source/atlas-stream-processing/gcp-private-link-connection.txt,atlas,1,0,0,0,0,1, +1738,https://www.mongodb.com/docs/atlas/atlas-stream-processing/kafka-private-link-connection/,atlas/source/atlas-stream-processing/kafka-private-link-connection.txt,atlas,13,5,3,0,0,9, +1739,https://www.mongodb.com/docs/atlas/atlas-stream-processing/kinesis-private-link-connection/,atlas/source/atlas-stream-processing/kinesis-private-link-connection.txt,atlas,0,0,0,0,0,0, +1740,https://www.mongodb.com/docs/atlas/atlas-stream-processing/limitations/,atlas/source/atlas-stream-processing/limitations.txt,atlas,0,0,0,0,0,0, +1741,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-connection-registry/,atlas/source/atlas-stream-processing/manage-connection-registry.txt,atlas,1,0,0,0,0,1, +1742,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-processing-instance/,atlas/source/atlas-stream-processing/manage-processing-instance.txt,atlas,0,0,0,0,0,0, +1743,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-stream-processor/,atlas/source/atlas-stream-processing/manage-stream-processor.txt,atlas,40,4,4,0,0,33, +1744,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-vpc-peering-connections/,atlas/source/atlas-stream-processing/manage-vpc-peering-connections.txt,atlas,6,0,0,0,0,6, +1745,https://www.mongodb.com/docs/atlas/atlas-stream-processing/monitoring/,atlas/source/atlas-stream-processing/monitoring.txt,atlas,0,0,0,0,0,0, +1746,https://www.mongodb.com/docs/atlas/atlas-stream-processing/quickstart/,atlas/source/atlas-stream-processing/quickstart.txt,atlas,19,1,1,0,0,12, +1747,https://www.mongodb.com/docs/atlas/atlas-stream-processing/s3-private-link-connection/,atlas/source/atlas-stream-processing/s3-private-link-connection.txt,atlas,3,0,0,0,0,0, +1748,https://www.mongodb.com/docs/atlas/atlas-stream-processing/security/,atlas/source/atlas-stream-processing/security.txt,atlas,1,0,0,0,0,1, +1749,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-cachedlookup/,atlas/source/atlas-stream-processing/sp-agg-cachedlookup.txt,atlas,5,1,1,0,0,0, +1750,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-convert/,atlas/source/atlas-stream-processing/sp-agg-convert.txt,atlas,16,0,0,0,0,0, +1751,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-createuuid/,atlas/source/atlas-stream-processing/sp-agg-createuuid.txt,atlas,4,2,2,0,0,0, +1752,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-currentdate/,atlas/source/atlas-stream-processing/sp-agg-currentdate.txt,atlas,2,2,0,0,0,0, +1753,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-emit/,atlas/source/atlas-stream-processing/sp-agg-emit.txt,atlas,18,0,0,0,0,6, +1754,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-externalFunction/,atlas/source/atlas-stream-processing/sp-agg-externalFunction.txt,atlas,4,0,0,0,0,1, +1755,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-function/,atlas/source/atlas-stream-processing/sp-agg-function.txt,atlas,1,0,0,0,0,1, +1756,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-hopping/,atlas/source/atlas-stream-processing/sp-agg-hopping.txt,atlas,4,1,1,0,0,1, +1757,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-https/,atlas/source/atlas-stream-processing/sp-agg-https.txt,atlas,4,1,1,0,0,0, +1758,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-lookup/,atlas/source/atlas-stream-processing/sp-agg-lookup.txt,atlas,8,1,1,0,0,3, +1759,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-merge/,atlas/source/atlas-stream-processing/sp-agg-merge.txt,atlas,8,1,1,0,0,0, +1760,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-meta/,atlas/source/atlas-stream-processing/sp-agg-meta.txt,atlas,3,0,0,0,0,0, +1761,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-session/,atlas/source/atlas-stream-processing/sp-agg-session.txt,atlas,1,0,0,0,0,0, +1762,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-setStreamMeta/,atlas/source/atlas-stream-processing/sp-agg-setStreamMeta.txt,atlas,4,0,0,0,0,0, +1763,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-source/,atlas/source/atlas-stream-processing/sp-agg-source.txt,atlas,14,2,2,0,0,1, +1764,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-tumbling/,atlas/source/atlas-stream-processing/sp-agg-tumbling.txt,atlas,5,1,1,0,0,1, +1765,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-validate/,atlas/source/atlas-stream-processing/sp-agg-validate.txt,atlas,8,2,2,0,0,0, +1766,https://www.mongodb.com/docs/atlas/atlas-stream-processing/stream-aggregation-operators/,atlas/source/atlas-stream-processing/stream-aggregation-operators.txt,atlas,0,0,0,0,0,0, +1767,https://www.mongodb.com/docs/atlas/atlas-stream-processing/stream-aggregation-stages/,atlas/source/atlas-stream-processing/stream-aggregation-stages.txt,atlas,0,0,0,0,0,0, +1768,https://www.mongodb.com/docs/atlas/atlas-stream-processing/windows/,atlas/source/atlas-stream-processing/windows.txt,atlas,0,0,0,0,0,0, +1769,https://www.mongodb.com/docs/atlas/atlas-ui-authentication/,atlas/source/atlas-ui-authentication.txt,atlas,0,0,0,0,0,0, +1770,https://www.mongodb.com/docs/atlas/atlas-ui-authorization/,atlas/source/atlas-ui-authorization.txt,atlas,0,0,0,0,0,0, +1771,https://www.mongodb.com/docs/atlas/atlas-ui/,atlas/source/atlas-ui.txt,atlas,0,0,0,0,0,0, +1772,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/aggregation-pipeline-builder-settings/,atlas/source/atlas-ui/agg-pipeline-builder/aggregation-pipeline-builder-settings.txt,atlas,0,0,0,0,0,0, +1773,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/count-pipeline-results/,atlas/source/atlas-ui/agg-pipeline-builder/count-pipeline-results.txt,atlas,0,0,0,0,0,0, +1774,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/create-a-view/,atlas/source/atlas-ui/agg-pipeline-builder/create-a-view.txt,atlas,0,0,0,0,0,0, +1775,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/export-pipeline-to-language/,atlas/source/atlas-ui/agg-pipeline-builder/export-pipeline-to-language.txt,atlas,0,0,0,0,0,0, +1776,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/maxtime-ms-pipeline/,atlas/source/atlas-ui/agg-pipeline-builder/maxtime-ms-pipeline.txt,atlas,0,0,0,0,0,0, +1777,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/open-saved-pipeline/,atlas/source/atlas-ui/agg-pipeline-builder/open-saved-pipeline.txt,atlas,0,0,0,0,0,0, +1778,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/pipeline-custom-collation/,atlas/source/atlas-ui/agg-pipeline-builder/pipeline-custom-collation.txt,atlas,1,0,0,0,0,1, +1779,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/save-agg-pipeline/,atlas/source/atlas-ui/agg-pipeline-builder/save-agg-pipeline.txt,atlas,0,0,0,0,0,0, +1780,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/view-pipeline-explain-plan/,atlas/source/atlas-ui/agg-pipeline-builder/view-pipeline-explain-plan.txt,atlas,0,0,0,0,0,0, +1781,https://www.mongodb.com/docs/atlas/atlas-ui/collections/,atlas/source/atlas-ui/collections.txt,atlas,4,0,0,0,0,4, +1782,https://www.mongodb.com/docs/atlas/atlas-ui/collections/clustered-collection/,atlas/source/atlas-ui/collections/clustered-collection.txt,atlas,0,0,0,0,0,0, +1783,https://www.mongodb.com/docs/atlas/atlas-ui/collections/collation-collection/,atlas/source/atlas-ui/collections/collation-collection.txt,atlas,3,0,0,0,0,3, +1784,https://www.mongodb.com/docs/atlas/atlas-ui/collections/time-series-collection/,atlas/source/atlas-ui/collections/time-series-collection.txt,atlas,0,0,0,0,0,0, +1785,https://www.mongodb.com/docs/atlas/atlas-ui/create-agg-pipeline/,atlas/source/atlas-ui/create-agg-pipeline.txt,atlas,1,0,0,0,0,1, +1786,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/,atlas/source/atlas-ui/data-modeling.txt,atlas,0,0,0,0,0,0, +1787,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/export-diagram/,atlas/source/atlas-ui/data-modeling/export-diagram.txt,atlas,0,0,0,0,0,0, +1788,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/generate-diagram/,atlas/source/atlas-ui/data-modeling/generate-diagram.txt,atlas,0,0,0,0,0,0, +1789,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/import-diagram/,atlas/source/atlas-ui/data-modeling/import-diagram.txt,atlas,0,0,0,0,0,0, +1790,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/modify-collections/,atlas/source/atlas-ui/data-modeling/modify-collections.txt,atlas,0,0,0,0,0,0, +1791,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/modify-fields/,atlas/source/atlas-ui/data-modeling/modify-fields.txt,atlas,0,0,0,0,0,0, +1792,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/relationships/,atlas/source/atlas-ui/data-modeling/relationships.txt,atlas,0,0,0,0,0,0, +1793,https://www.mongodb.com/docs/atlas/atlas-ui/databases/,atlas/source/atlas-ui/databases.txt,atlas,0,0,0,0,0,0, +1794,https://www.mongodb.com/docs/atlas/atlas-ui/documents/,atlas/source/atlas-ui/documents.txt,atlas,1,0,0,0,0,0, +1795,https://www.mongodb.com/docs/atlas/atlas-ui/documents/delete-multiple/,atlas/source/atlas-ui/documents/delete-multiple.txt,atlas,1,0,0,0,0,1, +1796,https://www.mongodb.com/docs/atlas/atlas-ui/documents/modify-multiple/,atlas/source/atlas-ui/documents/modify-multiple.txt,atlas,2,0,0,0,0,2, +1797,https://www.mongodb.com/docs/atlas/atlas-ui/export-query-to-language/,atlas/source/atlas-ui/export-query-to-language.txt,atlas,0,0,0,0,0,0, +1798,https://www.mongodb.com/docs/atlas/atlas-ui/indexes/,atlas/source/atlas-ui/indexes.txt,atlas,3,0,0,0,0,3, +1799,https://www.mongodb.com/docs/atlas/atlas-ui/performance-insights/,atlas/source/atlas-ui/performance-insights.txt,atlas,0,0,0,0,0,0, +1800,https://www.mongodb.com/docs/atlas/atlas-ui/query-plan/,atlas/source/atlas-ui/query-plan.txt,atlas,0,0,0,0,0,0, +1801,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/,atlas/source/atlas-ui/query-with-natural-language.txt,atlas,0,0,0,0,0,0, +1802,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/data-explorer-ai-assistant/,atlas/source/atlas-ui/query-with-natural-language/data-explorer-ai-assistant.txt,atlas,5,2,2,0,0,0, +1803,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/enable-natural-language-querying/,atlas/source/atlas-ui/query-with-natural-language/enable-natural-language-querying.txt,atlas,0,0,0,0,0,0, +1804,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/prompt-natural-language-aggregation/,atlas/source/atlas-ui/query-with-natural-language/prompt-natural-language-aggregation.txt,atlas,3,0,0,0,0,0, +1805,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/prompt-natural-language-query/,atlas/source/atlas-ui/query-with-natural-language/prompt-natural-language-query.txt,atlas,0,0,0,0,0,0, +1806,https://www.mongodb.com/docs/atlas/atlas-ui/query/collation/,atlas/source/atlas-ui/query/collation.txt,atlas,1,0,0,0,0,1, +1807,https://www.mongodb.com/docs/atlas/atlas-ui/query/filter/,atlas/source/atlas-ui/query/filter.txt,atlas,24,0,0,0,0,12, +1808,https://www.mongodb.com/docs/atlas/atlas-ui/query/limit/,atlas/source/atlas-ui/query/limit.txt,atlas,3,0,0,0,0,2, +1809,https://www.mongodb.com/docs/atlas/atlas-ui/query/maxtimems/,atlas/source/atlas-ui/query/maxtimems.txt,atlas,0,0,0,0,0,0, +1810,https://www.mongodb.com/docs/atlas/atlas-ui/query/project/,atlas/source/atlas-ui/query/project.txt,atlas,5,0,0,0,0,4, +1811,https://www.mongodb.com/docs/atlas/atlas-ui/query/recent/,atlas/source/atlas-ui/query/recent.txt,atlas,0,0,0,0,0,0, +1812,https://www.mongodb.com/docs/atlas/atlas-ui/query/saved-queries/,atlas/source/atlas-ui/query/saved-queries.txt,atlas,0,0,0,0,0,0, +1813,https://www.mongodb.com/docs/atlas/atlas-ui/query/skip/,atlas/source/atlas-ui/query/skip.txt,atlas,3,0,0,0,0,2, +1814,https://www.mongodb.com/docs/atlas/atlas-ui/query/sort/,atlas/source/atlas-ui/query/sort.txt,atlas,4,0,0,0,0,3, +1815,https://www.mongodb.com/docs/atlas/atlas-ui/sampling/,atlas/source/atlas-ui/sampling.txt,atlas,0,0,0,0,0,0, +1816,https://www.mongodb.com/docs/atlas/atlas-ui/schema/,atlas/source/atlas-ui/schema.txt,atlas,0,0,0,0,0,0, +1817,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/,atlas/source/atlas-ui/triggers.txt,atlas,0,0,0,0,0,0, +1818,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/aws-eventbridge/,atlas/source/atlas-ui/triggers/aws-eventbridge.txt,atlas,15,0,0,0,0,11, +1819,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/database-triggers/,atlas/source/atlas-ui/triggers/database-triggers.txt,atlas,14,0,0,0,0,9, +1820,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/disable/,atlas/source/atlas-ui/triggers/disable.txt,atlas,4,0,0,0,0,3, +1821,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/forward-logs/,atlas/source/atlas-ui/triggers/forward-logs.txt,atlas,9,0,0,0,0,2, +1822,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/,atlas/source/atlas-ui/triggers/functions.txt,atlas,23,3,3,0,0,15, +1823,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/aggregate/,atlas/source/atlas-ui/triggers/functions/aggregate.txt,atlas,16,1,1,0,0,14, +1824,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/api/,atlas/source/atlas-ui/triggers/functions/api.txt,atlas,63,0,0,0,0,31, +1825,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/context/,atlas/source/atlas-ui/triggers/functions/context.txt,atlas,27,1,1,0,0,18, +1826,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/dependencies/,atlas/source/atlas-ui/triggers/functions/dependencies.txt,atlas,4,0,0,0,0,4, +1827,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/globals/,atlas/source/atlas-ui/triggers/functions/globals.txt,atlas,70,13,13,0,0,27, +1828,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/handle-errors/,atlas/source/atlas-ui/triggers/functions/handle-errors.txt,atlas,15,0,0,0,0,14, +1829,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/javascript-support/,atlas/source/atlas-ui/triggers/functions/javascript-support.txt,atlas,1,0,0,0,0,1, +1830,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/read/,atlas/source/atlas-ui/triggers/functions/read.txt,atlas,28,0,0,0,0,27, +1831,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/secrets/,atlas/source/atlas-ui/triggers/functions/secrets.txt,atlas,8,0,0,0,0,8, +1832,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/security/,atlas/source/atlas-ui/triggers/functions/security.txt,atlas,3,0,0,0,0,0, +1833,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/values/,atlas/source/atlas-ui/triggers/functions/values.txt,atlas,7,0,0,0,0,6, +1834,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/write/,atlas/source/atlas-ui/triggers/functions/write.txt,atlas,30,0,0,0,0,25, +1835,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/limitations/,atlas/source/atlas-ui/triggers/limitations.txt,atlas,0,0,0,0,0,0, +1836,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/logs/,atlas/source/atlas-ui/triggers/logs.txt,atlas,1,0,0,0,0,1, +1837,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/scheduled-triggers-tutorial/,atlas/source/atlas-ui/triggers/scheduled-triggers-tutorial.txt,atlas,12,0,0,0,0,8, +1838,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/scheduled-triggers/,atlas/source/atlas-ui/triggers/scheduled-triggers.txt,atlas,13,0,0,0,0,4, +1839,https://www.mongodb.com/docs/atlas/atlas-ui/troubleshoot/,atlas/source/atlas-ui/troubleshoot.txt,atlas,0,0,0,0,0,0, +1840,https://www.mongodb.com/docs/atlas/atlas-ui/validation/,atlas/source/atlas-ui/validation.txt,atlas,3,0,0,0,0,3, +1841,https://www.mongodb.com/docs/atlas/atlas-ui/views/,atlas/source/atlas-ui/views.txt,atlas,0,0,0,0,0,0, +1842,https://www.mongodb.com/docs/atlas/atlas-vector-search/ai-agents/,atlas/source/atlas-vector-search/ai-agents.txt,atlas,28,2,2,0,20,0, +1843,https://www.mongodb.com/docs/atlas/atlas-vector-search/automated-embedding/,atlas/source/atlas-vector-search/automated-embedding.txt,atlas,38,3,3,0,30,2, +1844,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/,atlas/source/atlas-vector-search/benchmark.txt,atlas,0,0,0,0,0,0, +1845,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/overview/,atlas/source/atlas-vector-search/benchmark/overview.txt,atlas,6,0,0,0,3,3, +1846,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/performance-recommendations/,atlas/source/atlas-vector-search/benchmark/performance-recommendations.txt,atlas,0,0,0,0,0,0, +1847,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/results/,atlas/source/atlas-vector-search/benchmark/results.txt,atlas,0,0,0,0,0,0, +1848,https://www.mongodb.com/docs/atlas/atlas-vector-search/changelog/,atlas/source/atlas-vector-search/changelog.txt,atlas,0,0,0,0,0,0, +1849,https://www.mongodb.com/docs/atlas/atlas-vector-search/compatibility-limitations/,atlas/source/atlas-vector-search/compatibility-limitations.txt,atlas,0,0,0,0,0,0, +1850,https://www.mongodb.com/docs/atlas/atlas-vector-search/create-embeddings/,atlas/source/atlas-vector-search/create-embeddings.txt,atlas,0,0,0,0,0,0, +1851,https://www.mongodb.com/docs/atlas/atlas-vector-search/crud-embeddings/create-embeddings-automatic/,atlas/source/atlas-vector-search/crud-embeddings/create-embeddings-automatic.txt,atlas,43,9,9,0,11,30, +1852,https://www.mongodb.com/docs/atlas/atlas-vector-search/crud-embeddings/create-embeddings-manual/,atlas/source/atlas-vector-search/crud-embeddings/create-embeddings-manual.txt,atlas,165,28,28,0,57,53, +1853,https://www.mongodb.com/docs/atlas/atlas-vector-search/deployment-options/,atlas/source/atlas-vector-search/deployment-options.txt,atlas,3,0,0,0,0,2, +1854,https://www.mongodb.com/docs/atlas/atlas-vector-search/explain/,atlas/source/atlas-vector-search/explain.txt,atlas,22,3,3,0,0,4, +1855,https://www.mongodb.com/docs/atlas/atlas-vector-search/hybrid-search/,atlas/source/atlas-vector-search/hybrid-search.txt,atlas,2,0,0,0,0,2, +1856,https://www.mongodb.com/docs/atlas/atlas-vector-search/hybrid-search/vector-search-with-full-text-search/,atlas/source/atlas-vector-search/hybrid-search/vector-search-with-full-text-search.txt,atlas,61,17,17,0,4,49, +1857,https://www.mongodb.com/docs/atlas/atlas-vector-search/hybrid-search/vector-search-with-rankfusion/,atlas/source/atlas-vector-search/hybrid-search/vector-search-with-rankfusion.txt,atlas,19,7,7,0,2,17, +1858,https://www.mongodb.com/docs/atlas/atlas-vector-search/improve-accuracy/,atlas/source/atlas-vector-search/improve-accuracy.txt,atlas,13,5,5,0,3,9, +1859,https://www.mongodb.com/docs/atlas/atlas-vector-search/multi-tenant-architecture/,atlas/source/atlas-vector-search/multi-tenant-architecture.txt,atlas,3,0,0,0,0,3, +1860,https://www.mongodb.com/docs/atlas/atlas-vector-search/rag/,atlas/source/atlas-vector-search/rag.txt,atlas,146,19,19,0,51,53, +1861,https://www.mongodb.com/docs/atlas/atlas-vector-search/troubleshooting/,atlas/source/atlas-vector-search/troubleshooting.txt,atlas,2,0,0,0,0,2, +1862,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/auto-quantize-with-voyage-ai/,atlas/source/atlas-vector-search/tutorials/auto-quantize-with-voyage-ai.txt,atlas,23,5,5,0,19,2, +1863,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/local-rag/,atlas/source/atlas-vector-search/tutorials/local-rag.txt,atlas,96,11,11,0,27,49, +1864,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/vector-search-quick-start/,atlas/source/atlas-vector-search/tutorials/vector-search-quick-start.txt,atlas,143,24,24,0,8,109, +1865,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/vector-search-tutorial/,atlas/source/atlas-vector-search/tutorials/vector-search-tutorial.txt,atlas,55,13,13,0,21,26, +1866,https://www.mongodb.com/docs/atlas/atlas-vector-search/use-cases/,atlas/source/atlas-vector-search/use-cases.txt,atlas,0,0,0,0,0,0, +1867,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-quantization/,atlas/source/atlas-vector-search/vector-quantization.txt,atlas,131,27,27,0,28,96, +1868,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-overview/,atlas/source/atlas-vector-search/vector-search-overview.txt,atlas,0,0,0,0,0,0, +1869,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-playground/,atlas/source/atlas-vector-search/vector-search-playground.txt,atlas,0,0,0,0,0,0, +1870,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-stage/,atlas/source/atlas-vector-search/vector-search-stage.txt,atlas,23,5,5,0,2,16, +1871,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-type/,atlas/source/atlas-vector-search/vector-search-type.txt,atlas,114,2,2,0,35,67, +1872,https://www.mongodb.com/docs/atlas/atlas-vector-search/view-support/,atlas/source/atlas-vector-search/view-support.txt,atlas,10,1,1,0,2,7, +1873,https://www.mongodb.com/docs/atlas/backup-restore-cluster/,atlas/source/backup-restore-cluster.txt,atlas,0,0,0,0,0,0, +1874,https://www.mongodb.com/docs/atlas/backup/cloud-backup/backup-compliance-policy/,atlas/source/backup/cloud-backup/backup-compliance-policy.txt,atlas,0,0,0,0,0,0, +1875,https://www.mongodb.com/docs/atlas/backup/cloud-backup/cloud-backup-encryption/,atlas/source/backup/cloud-backup/cloud-backup-encryption.txt,atlas,0,0,0,0,0,0, +1876,https://www.mongodb.com/docs/atlas/backup/cloud-backup/configure-backup-policy/,atlas/source/backup/cloud-backup/configure-backup-policy.txt,atlas,0,0,0,0,0,0, +1877,https://www.mongodb.com/docs/atlas/backup/cloud-backup/dedicated-cluster-backup/,atlas/source/backup/cloud-backup/dedicated-cluster-backup.txt,atlas,0,0,0,0,0,0, +1878,https://www.mongodb.com/docs/atlas/backup/cloud-backup/export/,atlas/source/backup/cloud-backup/export.txt,atlas,10,0,0,0,0,6, +1879,https://www.mongodb.com/docs/atlas/backup/cloud-backup/flex-cluster-backup/,atlas/source/backup/cloud-backup/flex-cluster-backup.txt,atlas,0,0,0,0,0,0, +1880,https://www.mongodb.com/docs/atlas/backup/cloud-backup/import-archive/,atlas/source/backup/cloud-backup/import-archive.txt,atlas,10,0,0,0,0,10, +1881,https://www.mongodb.com/docs/atlas/backup/cloud-backup/overview/,atlas/source/backup/cloud-backup/overview.txt,atlas,0,0,0,0,0,0, +1882,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-cloud-manager/,atlas/source/backup/cloud-backup/restore-from-cloud-manager.txt,atlas,0,0,0,0,0,0, +1883,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-continuous/,atlas/source/backup/cloud-backup/restore-from-continuous.txt,atlas,0,0,0,0,0,0, +1884,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-ear/,atlas/source/backup/cloud-backup/restore-from-ear.txt,atlas,0,0,0,0,0,0, +1885,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-local-file/,atlas/source/backup/cloud-backup/restore-from-local-file.txt,atlas,2,0,0,0,0,2, +1886,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-snapshot/,atlas/source/backup/cloud-backup/restore-from-snapshot.txt,atlas,0,0,0,0,0,0, +1887,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-overview/,atlas/source/backup/cloud-backup/restore-overview.txt,atlas,0,0,0,0,0,0, +1888,https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/,atlas/source/backup/cloud-backup/scheduling.txt,atlas,0,0,0,0,0,0, +1889,https://www.mongodb.com/docs/atlas/backup/cloud-backup/snapshot-distribution/,atlas/source/backup/cloud-backup/snapshot-distribution.txt,atlas,0,0,0,0,0,0, +1890,https://www.mongodb.com/docs/atlas/backup/cloud-backup/snapshot-management/,atlas/source/backup/cloud-backup/snapshot-management.txt,atlas,0,0,0,0,0,0, +1891,https://www.mongodb.com/docs/atlas/backup/restore-free-tier-cluster/,atlas/source/backup/restore-free-tier-cluster.txt,atlas,1,0,0,0,0,1, +1892,https://www.mongodb.com/docs/atlas/bi-connection/,atlas/source/bi-connection.txt,atlas,0,0,0,0,0,0, +1893,https://www.mongodb.com/docs/atlas/billing/,atlas/source/billing.txt,atlas,0,0,0,0,0,0, +1894,https://www.mongodb.com/docs/atlas/billing/additional-services/,atlas/source/billing/additional-services.txt,atlas,0,0,0,0,0,0, +1895,https://www.mongodb.com/docs/atlas/billing/atlas-flex-costs/,atlas/source/billing/atlas-flex-costs.txt,atlas,0,0,0,0,0,0, +1896,https://www.mongodb.com/docs/atlas/billing/aws-self-serve-marketplace/,atlas/source/billing/aws-self-serve-marketplace.txt,atlas,0,0,0,0,0,0, +1897,https://www.mongodb.com/docs/atlas/billing/azure-self-serve-marketplace/,atlas/source/billing/azure-self-serve-marketplace.txt,atlas,0,0,0,0,0,0, +1898,https://www.mongodb.com/docs/atlas/billing/billing-breakdown-optimization/,atlas/source/billing/billing-breakdown-optimization.txt,atlas,0,0,0,0,0,0, +1899,https://www.mongodb.com/docs/atlas/billing/cluster-configuration-costs/,atlas/source/billing/cluster-configuration-costs.txt,atlas,0,0,0,0,0,0, +1900,https://www.mongodb.com/docs/atlas/billing/data-federation/,atlas/source/billing/data-federation.txt,atlas,0,0,0,0,0,0, +1901,https://www.mongodb.com/docs/atlas/billing/data-transfer-costs/,atlas/source/billing/data-transfer-costs.txt,atlas,0,0,0,0,0,0, +1902,https://www.mongodb.com/docs/atlas/billing/gcp-self-serve-marketplace/,atlas/source/billing/gcp-self-serve-marketplace.txt,atlas,0,0,0,0,0,0, +1903,https://www.mongodb.com/docs/atlas/billing/international-usage/,atlas/source/billing/international-usage.txt,atlas,0,0,0,0,0,0, +1904,https://www.mongodb.com/docs/atlas/billing/invoice-breakdown/,atlas/source/billing/invoice-breakdown.txt,atlas,0,0,0,0,0,0, +1905,https://www.mongodb.com/docs/atlas/billing/invoices/,atlas/source/billing/invoices.txt,atlas,0,0,0,0,0,0, +1906,https://www.mongodb.com/docs/atlas/billing/online-archive/,atlas/source/billing/online-archive.txt,atlas,0,0,0,0,0,0, +1907,https://www.mongodb.com/docs/atlas/billing/search-node/,atlas/source/billing/search-node.txt,atlas,0,0,0,0,0,0, +1908,https://www.mongodb.com/docs/atlas/billing/stream-processing-costs/,atlas/source/billing/stream-processing-costs.txt,atlas,0,0,0,0,0,0, +1909,https://www.mongodb.com/docs/atlas/billing/subscriptions/,atlas/source/billing/subscriptions.txt,atlas,0,0,0,0,0,0, +1910,https://www.mongodb.com/docs/atlas/build-multi-tenant-arch/,atlas/source/build-multi-tenant-arch.txt,atlas,0,0,0,0,0,0, +1911,https://www.mongodb.com/docs/atlas/cloud-providers-regions/,atlas/source/cloud-providers-regions.txt,atlas,0,0,0,0,0,0, +1912,https://www.mongodb.com/docs/atlas/cluster-additional-settings/,atlas/source/cluster-additional-settings.txt,atlas,0,0,0,0,0,0, +1913,https://www.mongodb.com/docs/atlas/cluster-autoscaling/,atlas/source/cluster-autoscaling.txt,atlas,8,0,0,0,0,4, +1914,https://www.mongodb.com/docs/atlas/cluster-blocking-writes/,atlas/source/cluster-blocking-writes.txt,atlas,0,0,0,0,0,0, +1915,https://www.mongodb.com/docs/atlas/cluster-config/multi-cloud-distribution/,atlas/source/cluster-config/multi-cloud-distribution.txt,atlas,0,0,0,0,0,0, +1916,https://www.mongodb.com/docs/atlas/cluster-sharding/,atlas/source/cluster-sharding.txt,atlas,0,0,0,0,0,0, +1917,https://www.mongodb.com/docs/atlas/command-line-tools/,atlas/source/command-line-tools.txt,atlas,0,0,0,0,0,0, +1918,https://www.mongodb.com/docs/atlas/compass-connection/,atlas/source/compass-connection.txt,atlas,0,0,0,0,0,0, +1919,https://www.mongodb.com/docs/atlas/configure-alerts/,atlas/source/configure-alerts.txt,atlas,0,0,0,0,0,0, +1920,https://www.mongodb.com/docs/atlas/configure-api-access-mult-org/,atlas/source/configure-api-access-mult-org.txt,atlas,0,0,0,0,0,0, +1921,https://www.mongodb.com/docs/atlas/configure-api-access-org/,atlas/source/configure-api-access-org.txt,atlas,0,0,0,0,0,0, +1922,https://www.mongodb.com/docs/atlas/configure-api-access-project/,atlas/source/configure-api-access-project.txt,atlas,0,0,0,0,0,0, +1923,https://www.mongodb.com/docs/atlas/configure-api-access/,atlas/source/configure-api-access.txt,atlas,11,2,2,0,0,11, +1924,https://www.mongodb.com/docs/atlas/connect-to-database-deployment/,atlas/source/connect-to-database-deployment.txt,atlas,3,0,0,0,0,0, +1925,https://www.mongodb.com/docs/atlas/create-connect-deployments/,atlas/source/create-connect-deployments.txt,atlas,0,0,0,0,0,0, +1926,https://www.mongodb.com/docs/atlas/create-database-deployment/,atlas/source/create-database-deployment.txt,atlas,0,0,0,0,0,0, +1927,https://www.mongodb.com/docs/atlas/customize-storage/,atlas/source/customize-storage.txt,atlas,0,0,0,0,0,0, +1928,https://www.mongodb.com/docs/atlas/data-federation/,atlas/source/data-federation.txt,atlas,0,0,0,0,0,0, +1929,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/architecture/,atlas/source/data-federation/adf-overview/architecture.txt,atlas,0,0,0,0,0,0, +1930,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/key-concepts/,atlas/source/data-federation/adf-overview/key-concepts.txt,atlas,0,0,0,0,0,0, +1931,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/overview/,atlas/source/data-federation/adf-overview/overview.txt,atlas,0,0,0,0,0,0, +1932,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/query-performance-optimization/,atlas/source/data-federation/adf-overview/query-performance-optimization.txt,atlas,0,0,0,0,0,0, +1933,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/regions/,atlas/source/data-federation/adf-overview/regions.txt,atlas,0,0,0,0,0,0, +1934,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/supported-sources-and-providers/,atlas/source/data-federation/adf-overview/supported-sources-and-providers.txt,atlas,0,0,0,0,0,0, +1935,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/collections/create-collections-views/,atlas/source/data-federation/admin/cli/collections/create-collections-views.txt,atlas,88,37,37,0,0,60, +1936,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/collections/drop-collections-views/,atlas/source/data-federation/admin/cli/collections/drop-collections-views.txt,atlas,12,0,0,0,0,3, +1937,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/collections/rename-collection/,atlas/source/data-federation/admin/cli/collections/rename-collection.txt,atlas,15,0,0,0,0,0, +1938,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/database/drop-database/,atlas/source/data-federation/admin/cli/database/drop-database.txt,atlas,5,0,0,0,0,0, +1939,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/stores/create-store/,atlas/source/data-federation/admin/cli/stores/create-store.txt,atlas,29,6,6,0,0,12, +1940,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/stores/drop-store/,atlas/source/data-federation/admin/cli/stores/drop-store.txt,atlas,5,0,0,0,0,0, +1941,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/stores/list-stores/,atlas/source/data-federation/admin/cli/stores/list-stores.txt,atlas,4,0,0,0,0,0, +1942,https://www.mongodb.com/docs/atlas/data-federation/admin/delete-private-endpoint/,atlas/source/data-federation/admin/delete-private-endpoint.txt,atlas,0,0,0,0,0,0, +1943,https://www.mongodb.com/docs/atlas/data-federation/admin/determine-query-status/,atlas/source/data-federation/admin/determine-query-status.txt,atlas,5,0,0,0,0,0, +1944,https://www.mongodb.com/docs/atlas/data-federation/admin/edit-private-endpoint/,atlas/source/data-federation/admin/edit-private-endpoint.txt,atlas,0,0,0,0,0,0, +1945,https://www.mongodb.com/docs/atlas/data-federation/admin/manage-federated-database/,atlas/source/data-federation/admin/manage-federated-database.txt,atlas,0,0,0,0,0,0, +1946,https://www.mongodb.com/docs/atlas/data-federation/admin/manage-namespace-catalog-cli/,atlas/source/data-federation/admin/manage-namespace-catalog-cli.txt,atlas,0,0,0,0,0,0, +1947,https://www.mongodb.com/docs/atlas/data-federation/admin/manage-private-endpoint/,atlas/source/data-federation/admin/manage-private-endpoint.txt,atlas,0,0,0,0,0,0, +1948,https://www.mongodb.com/docs/atlas/data-federation/admin/namespace/updatecatalog/,atlas/source/data-federation/admin/namespace/updatecatalog.txt,atlas,8,0,0,0,0,0, +1949,https://www.mongodb.com/docs/atlas/data-federation/admin/optimize-query-performance/,atlas/source/data-federation/admin/optimize-query-performance.txt,atlas,2,0,0,0,0,0, +1950,https://www.mongodb.com/docs/atlas/data-federation/admin/terminate-running-query/,atlas/source/data-federation/admin/terminate-running-query.txt,atlas,4,0,0,0,0,0, +1951,https://www.mongodb.com/docs/atlas/data-federation/admin/update-region/,atlas/source/data-federation/admin/update-region.txt,atlas,0,0,0,0,0,0, +1952,https://www.mongodb.com/docs/atlas/data-federation/admin/view-private-endpoints/,atlas/source/data-federation/admin/view-private-endpoints.txt,atlas,0,0,0,0,0,0, +1953,https://www.mongodb.com/docs/atlas/data-federation/administration/,atlas/source/data-federation/administration.txt,atlas,0,0,0,0,0,0, +1954,https://www.mongodb.com/docs/atlas/data-federation/advanced-security-options/,atlas/source/data-federation/advanced-security-options.txt,atlas,0,0,0,0,0,0, +1955,https://www.mongodb.com/docs/atlas/data-federation/config/adf-config-file-formats/,atlas/source/data-federation/config/adf-config-file-formats.txt,atlas,44,0,0,0,0,3, +1956,https://www.mongodb.com/docs/atlas/data-federation/config/adfa-generate-wildcard-collection/,atlas/source/data-federation/config/adfa-generate-wildcard-collection.txt,atlas,0,0,0,0,0,0, +1957,https://www.mongodb.com/docs/atlas/data-federation/config/atlas-gen-wildcard-collections/,atlas/source/data-federation/config/atlas-gen-wildcard-collections.txt,atlas,2,0,0,0,0,0, +1958,https://www.mongodb.com/docs/atlas/data-federation/config/aws-gen-wildcard-collections/,atlas/source/data-federation/config/aws-gen-wildcard-collections.txt,atlas,1,0,0,0,0,0, +1959,https://www.mongodb.com/docs/atlas/data-federation/config/config-data-stores/,atlas/source/data-federation/config/config-data-stores.txt,atlas,5,0,0,0,0,5, +1960,https://www.mongodb.com/docs/atlas/data-federation/config/path-syntax-examples/,atlas/source/data-federation/config/path-syntax-examples.txt,atlas,28,0,0,0,0,5, +1961,https://www.mongodb.com/docs/atlas/data-federation/data-lake-deprecation/,atlas/source/data-federation/data-lake-deprecation.txt,atlas,0,0,0,0,0,0, +1962,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-adf/,atlas/source/data-federation/deployment/deploy-adf.txt,atlas,23,0,0,0,0,3, +1963,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-atlas/,atlas/source/data-federation/deployment/deploy-atlas.txt,atlas,3,0,0,0,0,0, +1964,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-azure/,atlas/source/data-federation/deployment/deploy-azure.txt,atlas,4,0,0,0,0,1, +1965,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-gcp/,atlas/source/data-federation/deployment/deploy-gcp.txt,atlas,4,0,0,0,0,1, +1966,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-http/,atlas/source/data-federation/deployment/deploy-http.txt,atlas,3,0,0,0,0,0, +1967,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-oa/,atlas/source/data-federation/deployment/deploy-oa.txt,atlas,3,0,0,0,0,0, +1968,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-s3/,atlas/source/data-federation/deployment/deploy-s3.txt,atlas,6,0,0,0,0,1, +1969,https://www.mongodb.com/docs/atlas/data-federation/query/download-query-logs/,atlas/source/data-federation/query/download-query-logs.txt,atlas,1,0,0,0,0,1, +1970,https://www.mongodb.com/docs/atlas/data-federation/query/manage-query-limits/,atlas/source/data-federation/query/manage-query-limits.txt,atlas,0,0,0,0,0,0, +1971,https://www.mongodb.com/docs/atlas/data-federation/query/query-federated-database/,atlas/source/data-federation/query/query-federated-database.txt,atlas,4,0,0,0,0,3, +1972,https://www.mongodb.com/docs/atlas/data-federation/query/view-query-history/,atlas/source/data-federation/query/view-query-history.txt,atlas,6,0,0,0,0,2, +1973,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/,atlas/source/data-federation/supported-unsupported.txt,atlas,0,0,0,0,0,0, +1974,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/adf-encryption/,atlas/source/data-federation/supported-unsupported/adf-encryption.txt,atlas,1,0,0,0,0,0, +1975,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/adf-limitations/,atlas/source/data-federation/supported-unsupported/adf-limitations.txt,atlas,0,0,0,0,0,0, +1976,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/administration-commands/,atlas/source/data-federation/supported-unsupported/administration-commands.txt,atlas,0,0,0,0,0,0, +1977,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/data-formats/csv-tsv-data-files/,atlas/source/data-federation/supported-unsupported/data-formats/csv-tsv-data-files.txt,atlas,4,0,0,0,0,0, +1978,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/data-formats/parquet-data-files/,atlas/source/data-federation/supported-unsupported/data-formats/parquet-data-files.txt,atlas,0,0,0,0,0,0, +1979,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/diagnostic-commands/,atlas/source/data-federation/supported-unsupported/diagnostic-commands.txt,atlas,11,0,0,0,0,7, +1980,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/limitations/,atlas/source/data-federation/supported-unsupported/limitations.txt,atlas,0,0,0,0,0,0, +1981,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/mql-support/,atlas/source/data-federation/supported-unsupported/mql-support.txt,atlas,1,0,0,0,0,1, +1982,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/collstats/,atlas/source/data-federation/supported-unsupported/pipeline/collstats.txt,atlas,9,0,0,0,0,4, +1983,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/lookup-stage/,atlas/source/data-federation/supported-unsupported/pipeline/lookup-stage.txt,atlas,7,0,0,0,0,0, +1984,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/merge/,atlas/source/data-federation/supported-unsupported/pipeline/merge.txt,atlas,18,0,0,0,0,0, +1985,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/out/,atlas/source/data-federation/supported-unsupported/pipeline/out.txt,atlas,53,0,0,0,0,13, +1986,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/sql/,atlas/source/data-federation/supported-unsupported/pipeline/sql.txt,atlas,2,0,0,0,0,0, +1987,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/query-write-op-commands/,atlas/source/data-federation/supported-unsupported/query-write-op-commands.txt,atlas,0,0,0,0,0,0, +1988,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/role-management-commands/,atlas/source/data-federation/supported-unsupported/role-management-commands.txt,atlas,0,0,0,0,0,0, +1989,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/storage-config-commands/,atlas/source/data-federation/supported-unsupported/storage-config-commands.txt,atlas,3,0,0,0,0,3, +1990,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-aggregation/,atlas/source/data-federation/supported-unsupported/supported-aggregation.txt,atlas,1,0,0,0,0,0, +1991,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-data-formats/,atlas/source/data-federation/supported-unsupported/supported-data-formats.txt,atlas,0,0,0,0,0,0, +1992,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-partition-attributes/,atlas/source/data-federation/supported-unsupported/supported-partition-attributes.txt,atlas,1,0,0,0,0,0, +1993,https://www.mongodb.com/docs/atlas/data-federation/tutorial/add-ip-address/,atlas/source/data-federation/tutorial/add-ip-address.txt,atlas,0,0,0,0,0,0, +1994,https://www.mongodb.com/docs/atlas/data-federation/tutorial/adf-authentication-methods/,atlas/source/data-federation/tutorial/adf-authentication-methods.txt,atlas,4,0,0,0,0,3, +1995,https://www.mongodb.com/docs/atlas/data-federation/tutorial/advanced-security-options/adf-aws-iam-authentication/,atlas/source/data-federation/tutorial/advanced-security-options/adf-aws-iam-authentication.txt,atlas,3,0,0,0,0,3, +1996,https://www.mongodb.com/docs/atlas/data-federation/tutorial/advanced-security-options/advanced-db-user-config/,atlas/source/data-federation/tutorial/advanced-security-options/advanced-db-user-config.txt,atlas,2,0,0,0,0,1, +1997,https://www.mongodb.com/docs/atlas/data-federation/tutorial/config-private-endpoint/,atlas/source/data-federation/tutorial/config-private-endpoint.txt,atlas,0,0,0,0,0,0, +1998,https://www.mongodb.com/docs/atlas/data-federation/tutorial/configure-connection/,atlas/source/data-federation/tutorial/configure-connection.txt,atlas,0,0,0,0,0,0, +1999,https://www.mongodb.com/docs/atlas/data-federation/tutorial/connect/,atlas/source/data-federation/tutorial/connect.txt,atlas,0,0,0,0,0,0, +2000,https://www.mongodb.com/docs/atlas/data-federation/tutorial/create-mongodb-user/,atlas/source/data-federation/tutorial/create-mongodb-user.txt,atlas,0,0,0,0,0,0, +2001,https://www.mongodb.com/docs/atlas/data-federation/tutorial/deploy/,atlas/source/data-federation/tutorial/deploy.txt,atlas,0,0,0,0,0,0, +2002,https://www.mongodb.com/docs/atlas/data-federation/tutorial/getting-started/,atlas/source/data-federation/tutorial/getting-started.txt,atlas,0,0,0,0,0,0, +2003,https://www.mongodb.com/docs/atlas/data-federation/tutorial/run-queries/,atlas/source/data-federation/tutorial/run-queries.txt,atlas,60,24,24,0,0,12, +2004,https://www.mongodb.com/docs/atlas/data-federation/tutorials/,atlas/source/data-federation/tutorials.txt,atlas,0,0,0,0,0,0, +2005,https://www.mongodb.com/docs/atlas/database-auditing/,atlas/source/database-auditing.txt,atlas,4,0,0,0,0,0, +2006,https://www.mongodb.com/docs/atlas/database-deployment-tags/,atlas/source/database-deployment-tags.txt,atlas,0,0,0,0,0,0, +2007,https://www.mongodb.com/docs/atlas/driver-connection/,atlas/source/driver-connection.txt,atlas,20,0,0,0,6,2, +2008,https://www.mongodb.com/docs/atlas/export-logs-external-sinks/,atlas/source/export-logs-external-sinks.txt,atlas,0,0,0,0,0,0, +2009,https://www.mongodb.com/docs/atlas/faq/,atlas/source/faq.txt,atlas,0,0,0,0,0,0, +2010,https://www.mongodb.com/docs/atlas/flex-migration/,atlas/source/flex-migration.txt,atlas,0,0,0,0,0,0, +2011,https://www.mongodb.com/docs/atlas/free-tier-commands/,atlas/source/free-tier-commands.txt,atlas,3,0,0,0,0,1, +2012,https://www.mongodb.com/docs/atlas/getting-started/,atlas/source/getting-started.txt,atlas,0,0,0,0,0,0, +2013,https://www.mongodb.com/docs/atlas/global-clusters/,atlas/source/global-clusters.txt,atlas,0,0,0,0,0,0, +2014,https://www.mongodb.com/docs/atlas/graphql-api/,atlas/source/graphql-api.txt,atlas,0,0,0,0,0,0, +2015,https://www.mongodb.com/docs/atlas/import/,atlas/source/import.txt,atlas,0,0,0,0,0,0, +2016,https://www.mongodb.com/docs/atlas/import/c2c-pull-live-migration/,atlas/source/import/c2c-pull-live-migration.txt,atlas,6,0,0,0,0,4, +2017,https://www.mongodb.com/docs/atlas/import/c2c-push-live-migration/,atlas/source/import/c2c-push-live-migration.txt,atlas,2,0,0,0,0,2, +2018,https://www.mongodb.com/docs/atlas/import/live-migration-comparison-modes/,atlas/source/import/live-migration-comparison-modes.txt,atlas,0,0,0,0,0,0, +2019,https://www.mongodb.com/docs/atlas/import/live-migration-example/,atlas/source/import/live-migration-example.txt,atlas,1,0,0,0,0,0, +2020,https://www.mongodb.com/docs/atlas/import/live-migration-troubleshooting/,atlas/source/import/live-migration-troubleshooting.txt,atlas,3,0,0,0,0,3, +2021,https://www.mongodb.com/docs/atlas/import/live-migration-verification/,atlas/source/import/live-migration-verification.txt,atlas,0,0,0,0,0,0, +2022,https://www.mongodb.com/docs/atlas/import/mongoimport/,atlas/source/import/mongoimport.txt,atlas,1,0,0,0,0,0, +2023,https://www.mongodb.com/docs/atlas/import/mongomirror/,atlas/source/import/mongomirror.txt,atlas,10,0,0,0,0,9, +2024,https://www.mongodb.com/docs/atlas/import/mongorestore/,atlas/source/import/mongorestore.txt,atlas,7,0,0,0,0,7, +2025,https://www.mongodb.com/docs/atlas/import/monitor-migrations/,atlas/source/import/monitor-migrations.txt,atlas,0,0,0,0,0,0, +2026,https://www.mongodb.com/docs/atlas/includes/data-federation/jdbc-download-local/,atlas/source/includes/data-federation/jdbc-download-local.txt,atlas,0,0,0,0,0,0, +2027,https://www.mongodb.com/docs/atlas/,atlas/source/index.txt,atlas,0,0,0,0,0,0, +2028,https://www.mongodb.com/docs/atlas/infrastructure/,atlas/source/infrastructure.txt,atlas,0,0,0,0,0,0, +2029,https://www.mongodb.com/docs/atlas/invitations/,atlas/source/invitations.txt,atlas,0,0,0,0,0,0, +2030,https://www.mongodb.com/docs/atlas/live-migration/,atlas/source/live-migration.txt,atlas,0,0,0,0,0,0, +2031,https://www.mongodb.com/docs/atlas/manage-atlas-cli/,atlas/source/manage-atlas-cli.txt,atlas,0,0,0,0,0,0, +2032,https://www.mongodb.com/docs/atlas/manage-clusters/,atlas/source/manage-clusters.txt,atlas,0,0,0,0,0,0, +2033,https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/,atlas/source/manage-connections-aws-lambda.txt,atlas,17,0,0,0,8,0, +2034,https://www.mongodb.com/docs/atlas/manage-connections-azure-functions/,atlas/source/manage-connections-azure-functions.txt,atlas,0,0,0,0,0,0, +2035,https://www.mongodb.com/docs/atlas/manage-connections-google-cloud/,atlas/source/manage-connections-google-cloud.txt,atlas,2,0,0,0,0,1, +2036,https://www.mongodb.com/docs/atlas/manage-database-deployments/,atlas/source/manage-database-deployments.txt,atlas,0,0,0,0,0,0, +2037,https://www.mongodb.com/docs/atlas/manage-flex-clusters/,atlas/source/manage-flex-clusters.txt,atlas,0,0,0,0,0,0, +2038,https://www.mongodb.com/docs/atlas/management/organizations/atlas-account/,atlas/source/management/organizations/atlas-account.txt,atlas,0,0,0,0,0,0, +2039,https://www.mongodb.com/docs/atlas/management/organizations/organization-security/,atlas/source/management/organizations/organization-security.txt,atlas,0,0,0,0,0,0, +2040,https://www.mongodb.com/docs/atlas/mongo-shell-connection/,atlas/source/mongo-shell-connection.txt,atlas,3,0,0,0,0,3, +2041,https://www.mongodb.com/docs/atlas/mongodb-for-vscode/,atlas/source/mongodb-for-vscode.txt,atlas,0,0,0,0,0,0, +2042,https://www.mongodb.com/docs/atlas/mongodb-logs/,atlas/source/mongodb-logs.txt,atlas,0,0,0,0,0,0, +2043,https://www.mongodb.com/docs/atlas/monitor-cluster-metrics/,atlas/source/monitor-cluster-metrics.txt,atlas,0,0,0,0,0,0, +2044,https://www.mongodb.com/docs/atlas/monitoring-alerts/,atlas/source/monitoring-alerts.txt,atlas,0,0,0,0,0,0, +2045,https://www.mongodb.com/docs/atlas/namespace-insights/,atlas/source/namespace-insights.txt,atlas,1,0,0,0,0,0, +2046,https://www.mongodb.com/docs/atlas/online-archive/config-backup-online-archive/,atlas/source/online-archive/config-backup-online-archive.txt,atlas,0,0,0,0,0,0, +2047,https://www.mongodb.com/docs/atlas/online-archive/config-private-endpoint/,atlas/source/online-archive/config-private-endpoint.txt,atlas,0,0,0,0,0,0, +2048,https://www.mongodb.com/docs/atlas/online-archive/configure-online-archive/,atlas/source/online-archive/configure-online-archive.txt,atlas,5,0,0,0,0,2, +2049,https://www.mongodb.com/docs/atlas/online-archive/connect-to-online-archive/,atlas/source/online-archive/connect-to-online-archive.txt,atlas,0,0,0,0,0,0, +2050,https://www.mongodb.com/docs/atlas/online-archive/download-query-logs/,atlas/source/online-archive/download-query-logs.txt,atlas,2,0,0,0,0,2, +2051,https://www.mongodb.com/docs/atlas/online-archive/limitations/,atlas/source/online-archive/limitations.txt,atlas,0,0,0,0,0,0, +2052,https://www.mongodb.com/docs/atlas/online-archive/manage-online-archive/,atlas/source/online-archive/manage-online-archive.txt,atlas,0,0,0,0,0,0, +2053,https://www.mongodb.com/docs/atlas/online-archive/overview/,atlas/source/online-archive/overview.txt,atlas,0,0,0,0,0,0, +2054,https://www.mongodb.com/docs/atlas/online-archive/pause-resume-online-archive/,atlas/source/online-archive/pause-resume-online-archive.txt,atlas,0,0,0,0,0,0, +2055,https://www.mongodb.com/docs/atlas/online-archive/restore-archived-data-with-merge/,atlas/source/online-archive/restore-archived-data-with-merge.txt,atlas,4,0,0,0,0,1, +2056,https://www.mongodb.com/docs/atlas/online-archive/view-private-endpoints/,atlas/source/online-archive/view-private-endpoints.txt,atlas,0,0,0,0,0,0, +2057,https://www.mongodb.com/docs/atlas/organizations-projects/,atlas/source/organizations-projects.txt,atlas,0,0,0,0,0,0, +2058,https://www.mongodb.com/docs/atlas/partner-integrations/,atlas/source/partner-integrations.txt,atlas,0,0,0,0,0,0, +2059,https://www.mongodb.com/docs/atlas/pause-terminate-cluster/,atlas/source/pause-terminate-cluster.txt,atlas,0,0,0,0,0,0, +2060,https://www.mongodb.com/docs/atlas/performance-advisor/,atlas/source/performance-advisor.txt,atlas,3,0,0,0,0,2, +2061,https://www.mongodb.com/docs/atlas/performance-advisor/access-with-mcp/,atlas/source/performance-advisor/access-with-mcp.txt,atlas,0,0,0,0,0,0, +2062,https://www.mongodb.com/docs/atlas/performance-advisor/drop-indexes/,atlas/source/performance-advisor/drop-indexes.txt,atlas,0,0,0,0,0,0, +2063,https://www.mongodb.com/docs/atlas/performance-advisor/enable-disable/,atlas/source/performance-advisor/enable-disable.txt,atlas,0,0,0,0,0,0, +2064,https://www.mongodb.com/docs/atlas/performance-advisor/index-ranking/,atlas/source/performance-advisor/index-ranking.txt,atlas,3,0,0,0,0,1, +2065,https://www.mongodb.com/docs/atlas/performance-advisor/recommend-search-text/,atlas/source/performance-advisor/recommend-search-text.txt,atlas,4,0,0,0,0,3, +2066,https://www.mongodb.com/docs/atlas/performance-advisor/schema-suggestions/,atlas/source/performance-advisor/schema-suggestions.txt,atlas,0,0,0,0,0,0, +2067,https://www.mongodb.com/docs/atlas/personalization/,atlas/source/personalization.txt,atlas,0,0,0,0,0,0, +2068,https://www.mongodb.com/docs/atlas/production-notes/,atlas/source/production-notes.txt,atlas,0,0,0,0,0,0, +2069,https://www.mongodb.com/docs/atlas/project-overview/,atlas/source/project-overview.txt,atlas,1,0,0,0,0,0, +2070,https://www.mongodb.com/docs/atlas/project-tags/,atlas/source/project-tags.txt,atlas,0,0,0,0,0,0, +2071,https://www.mongodb.com/docs/atlas/push-logs/,atlas/source/push-logs.txt,atlas,0,0,0,0,0,0, +2072,https://www.mongodb.com/docs/atlas/query-shape-insights/,atlas/source/query-shape-insights.txt,atlas,0,0,0,0,0,0, +2073,https://www.mongodb.com/docs/atlas/real-time-performance-panel/,atlas/source/real-time-performance-panel.txt,atlas,0,0,0,0,0,0, +2074,https://www.mongodb.com/docs/atlas/reconfigure-replica-set-during-regional-outage/,atlas/source/reconfigure-replica-set-during-regional-outage.txt,atlas,0,0,0,0,0,0, +2075,https://www.mongodb.com/docs/atlas/recover-pit-continuous-cloud-backup/,atlas/source/recover-pit-continuous-cloud-backup.txt,atlas,0,0,0,0,0,0, +2076,https://www.mongodb.com/docs/atlas/reference/,atlas/source/reference.txt,atlas,0,0,0,0,0,0, +2077,https://www.mongodb.com/docs/atlas/reference/alert-conditions/,atlas/source/reference/alert-conditions.txt,atlas,0,0,0,0,0,0, +2078,https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/,atlas/source/reference/alert-host-metrics.txt,atlas,0,0,0,0,0,0, +2079,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/atlas-autoscaling-alerts/,atlas/source/reference/alert-resolutions/atlas-autoscaling-alerts.txt,atlas,0,0,0,0,0,0, +2080,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/atlas-search-alerts/,atlas/source/reference/alert-resolutions/atlas-search-alerts.txt,atlas,0,0,0,0,0,0, +2081,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/connection-alerts/,atlas/source/reference/alert-resolutions/connection-alerts.txt,atlas,0,0,0,0,0,0, +2082,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/disk-io-utilization/,atlas/source/reference/alert-resolutions/disk-io-utilization.txt,atlas,0,0,0,0,0,0, +2083,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/disk-space-used/,atlas/source/reference/alert-resolutions/disk-space-used.txt,atlas,0,0,0,0,0,0, +2084,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/no-primary/,atlas/source/reference/alert-resolutions/no-primary.txt,atlas,0,0,0,0,0,0, +2085,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/query-targeting/,atlas/source/reference/alert-resolutions/query-targeting.txt,atlas,1,0,0,0,0,0, +2086,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/replication-oplog/,atlas/source/reference/alert-resolutions/replication-oplog.txt,atlas,1,0,0,0,0,0, +2087,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/system-cpu-usage/,atlas/source/reference/alert-resolutions/system-cpu-usage.txt,atlas,0,0,0,0,0,0, +2088,https://www.mongodb.com/docs/atlas/reference/amazon-aws/,atlas/source/reference/amazon-aws.txt,atlas,0,0,0,0,0,0, +2089,https://www.mongodb.com/docs/atlas/reference/api-errors/,atlas/source/reference/api-errors.txt,atlas,0,0,0,0,0,0, +2090,https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/,atlas/source/reference/api-resources-spec/changelog.txt,atlas,0,0,0,0,0,0, +2091,https://www.mongodb.com/docs/atlas/reference/atlas-alert-event-types/,atlas/source/reference/atlas-alert-event-types.txt,atlas,0,0,0,0,0,0, +2092,https://www.mongodb.com/docs/atlas/reference/atlas-go-to/,atlas/source/reference/atlas-go-to.txt,atlas,0,0,0,0,0,0, +2093,https://www.mongodb.com/docs/atlas/reference/atlas-limits/,atlas/source/reference/atlas-limits.txt,atlas,0,0,0,0,0,0, +2094,https://www.mongodb.com/docs/atlas/reference/atlas-oplog/,atlas/source/reference/atlas-oplog.txt,atlas,2,0,0,0,0,1, +2095,https://www.mongodb.com/docs/atlas/reference/cloud-providers/,atlas/source/reference/cloud-providers.txt,atlas,0,0,0,0,0,0, +2096,https://www.mongodb.com/docs/atlas/reference/custom-role-actions/,atlas/source/reference/custom-role-actions.txt,atlas,0,0,0,0,0,0, +2097,https://www.mongodb.com/docs/atlas/reference/data-usage-cluster-ai-assistant/,atlas/source/reference/data-usage-cluster-ai-assistant.txt,atlas,0,0,0,0,0,0, +2098,https://www.mongodb.com/docs/atlas/reference/faq/accounts/,atlas/source/reference/faq/accounts.txt,atlas,0,0,0,0,0,0, +2099,https://www.mongodb.com/docs/atlas/reference/faq/applications/,atlas/source/reference/faq/applications.txt,atlas,0,0,0,0,0,0, +2100,https://www.mongodb.com/docs/atlas/reference/faq/backup/,atlas/source/reference/faq/backup.txt,atlas,0,0,0,0,0,0, +2101,https://www.mongodb.com/docs/atlas/reference/faq/billing/,atlas/source/reference/faq/billing.txt,atlas,0,0,0,0,0,0, +2102,https://www.mongodb.com/docs/atlas/reference/faq/connection-changes/,atlas/source/reference/faq/connection-changes.txt,atlas,15,0,0,0,0,13, +2103,https://www.mongodb.com/docs/atlas/reference/faq/database/,atlas/source/reference/faq/database.txt,atlas,0,0,0,0,0,0, +2104,https://www.mongodb.com/docs/atlas/reference/faq/deployment/,atlas/source/reference/faq/deployment.txt,atlas,0,0,0,0,0,0, +2105,https://www.mongodb.com/docs/atlas/reference/faq/monitoring-alerts/,atlas/source/reference/faq/monitoring-alerts.txt,atlas,0,0,0,0,0,0, +2106,https://www.mongodb.com/docs/atlas/reference/faq/nav-improvements/,atlas/source/reference/faq/nav-improvements.txt,atlas,0,0,0,0,0,0, +2107,https://www.mongodb.com/docs/atlas/reference/faq/networking/,atlas/source/reference/faq/networking.txt,atlas,2,0,0,0,0,1, +2108,https://www.mongodb.com/docs/atlas/reference/faq/security/,atlas/source/reference/faq/security.txt,atlas,1,0,0,0,0,0, +2109,https://www.mongodb.com/docs/atlas/reference/faq/storage/,atlas/source/reference/faq/storage.txt,atlas,1,0,0,0,0,1, +2110,https://www.mongodb.com/docs/atlas/reference/faq/support/,atlas/source/reference/faq/support.txt,atlas,0,0,0,0,0,0, +2111,https://www.mongodb.com/docs/atlas/reference/flex-limitations/,atlas/source/reference/flex-limitations.txt,atlas,2,0,0,0,0,1, +2112,https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/,atlas/source/reference/free-shared-limitations.txt,atlas,2,0,0,0,0,1, +2113,https://www.mongodb.com/docs/atlas/reference/google-gcp/,atlas/source/reference/google-gcp.txt,atlas,0,0,0,0,0,0, +2114,https://www.mongodb.com/docs/atlas/reference/internal-database/,atlas/source/reference/internal-database.txt,atlas,0,0,0,0,0,0, +2115,https://www.mongodb.com/docs/atlas/reference/limitations/,atlas/source/reference/limitations.txt,atlas,0,0,0,0,0,0, +2116,https://www.mongodb.com/docs/atlas/reference/microsoft-azure/,atlas/source/reference/microsoft-azure.txt,atlas,0,0,0,0,0,0, +2117,https://www.mongodb.com/docs/atlas/reference/mongomirror-old-versions/,atlas/source/reference/mongomirror-old-versions.txt,atlas,0,0,0,0,0,0, +2118,https://www.mongodb.com/docs/atlas/reference/mongomirror/,atlas/source/reference/mongomirror.txt,atlas,15,0,0,0,0,10, +2119,https://www.mongodb.com/docs/atlas/reference/more-api-resources/,atlas/source/reference/more-api-resources.txt,atlas,0,0,0,0,0,0, +2120,https://www.mongodb.com/docs/atlas/reference/partner-integrations/azure/,atlas/source/reference/partner-integrations/azure.txt,atlas,0,0,0,0,0,0, +2121,https://www.mongodb.com/docs/atlas/reference/partner-integrations/render/,atlas/source/reference/partner-integrations/render.txt,atlas,0,0,0,0,0,0, +2122,https://www.mongodb.com/docs/atlas/reference/partner-integrations/vercel/,atlas/source/reference/partner-integrations/vercel.txt,atlas,0,0,0,0,0,0, +2123,https://www.mongodb.com/docs/atlas/reference/replica-set-tags/,atlas/source/reference/replica-set-tags.txt,atlas,7,0,0,0,0,2, +2124,https://www.mongodb.com/docs/atlas/reference/supported-browsers/,atlas/source/reference/supported-browsers.txt,atlas,0,0,0,0,0,0, +2125,https://www.mongodb.com/docs/atlas/reference/third-party-integration-settings-discovery/,atlas/source/reference/third-party-integration-settings-discovery.txt,atlas,3,0,0,0,0,1, +2126,https://www.mongodb.com/docs/atlas/reference/user-roles/,atlas/source/reference/user-roles.txt,atlas,0,0,0,0,0,0, +2127,https://www.mongodb.com/docs/atlas/release-notes/,atlas/source/release-notes.txt,atlas,0,0,0,0,0,0, +2128,https://www.mongodb.com/docs/atlas/release-notes/changelog/,atlas/source/release-notes/changelog.txt,atlas,0,0,0,0,0,0, +2129,https://www.mongodb.com/docs/atlas/release-notes/data-federation/,atlas/source/release-notes/data-federation.txt,atlas,0,0,0,0,0,0, +2130,https://www.mongodb.com/docs/atlas/release-notes/mongomirror/,atlas/source/release-notes/mongomirror.txt,atlas,1,0,0,0,0,1, +2131,https://www.mongodb.com/docs/atlas/resilient-application/,atlas/source/resilient-application.txt,atlas,16,0,0,0,12,0, +2132,https://www.mongodb.com/docs/atlas/review-all-cluster-metrics/,atlas/source/review-all-cluster-metrics.txt,atlas,0,0,0,0,0,0, +2133,https://www.mongodb.com/docs/atlas/review-atlas-search-metrics/,atlas/source/review-atlas-search-metrics.txt,atlas,0,0,0,0,0,0, +2134,https://www.mongodb.com/docs/atlas/review-available-metrics/,atlas/source/review-available-metrics.txt,atlas,0,0,0,0,0,0, +2135,https://www.mongodb.com/docs/atlas/review-flex-metrics/,atlas/source/review-flex-metrics.txt,atlas,0,0,0,0,0,0, +2136,https://www.mongodb.com/docs/atlas/review-mongodb-process-metrics/,atlas/source/review-mongodb-process-metrics.txt,atlas,0,0,0,0,0,0, +2137,https://www.mongodb.com/docs/atlas/review-real-time-metrics/,atlas/source/review-real-time-metrics.txt,atlas,0,0,0,0,0,0, +2138,https://www.mongodb.com/docs/atlas/review-replica-set-metrics/,atlas/source/review-replica-set-metrics.txt,atlas,0,0,0,0,0,0, +2139,https://www.mongodb.com/docs/atlas/review-sharded-cluster-metrics/,atlas/source/review-sharded-cluster-metrics.txt,atlas,0,0,0,0,0,0, +2140,https://www.mongodb.com/docs/atlas/sample-data/,atlas/source/sample-data.txt,atlas,0,0,0,0,0,0, +2141,https://www.mongodb.com/docs/atlas/sample-data/load-sample-data-local/,atlas/source/sample-data/load-sample-data-local.txt,atlas,2,0,0,0,0,0, +2142,https://www.mongodb.com/docs/atlas/sample-data/load-sample-data/,atlas/source/sample-data/load-sample-data.txt,atlas,2,0,0,0,0,0, +2143,https://www.mongodb.com/docs/atlas/sample-data/sample-airbnb/,atlas/source/sample-data/sample-airbnb.txt,atlas,1,0,0,0,0,0, +2144,https://www.mongodb.com/docs/atlas/sample-data/sample-analytics/,atlas/source/sample-data/sample-analytics.txt,atlas,3,0,0,0,0,0, +2145,https://www.mongodb.com/docs/atlas/sample-data/sample-geospatial/,atlas/source/sample-data/sample-geospatial.txt,atlas,1,0,0,0,0,0, +2146,https://www.mongodb.com/docs/atlas/sample-data/sample-guides/,atlas/source/sample-data/sample-guides.txt,atlas,1,0,0,0,0,0, +2147,https://www.mongodb.com/docs/atlas/sample-data/sample-mflix/,atlas/source/sample-data/sample-mflix.txt,atlas,6,0,0,0,0,0, +2148,https://www.mongodb.com/docs/atlas/sample-data/sample-restaurants/,atlas/source/sample-data/sample-restaurants.txt,atlas,2,0,0,0,0,0, +2149,https://www.mongodb.com/docs/atlas/sample-data/sample-supplies/,atlas/source/sample-data/sample-supplies.txt,atlas,1,0,0,0,0,0, +2150,https://www.mongodb.com/docs/atlas/sample-data/sample-training/,atlas/source/sample-data/sample-training.txt,atlas,7,0,0,0,0,7, +2151,https://www.mongodb.com/docs/atlas/sample-data/sample-weather/,atlas/source/sample-data/sample-weather.txt,atlas,1,0,0,0,0,0, +2152,https://www.mongodb.com/docs/atlas/scale-cluster/,atlas/source/scale-cluster.txt,atlas,0,0,0,0,0,0, +2153,https://www.mongodb.com/docs/atlas/schema-suggestions/avoid-unbounded-arrays/,atlas/source/schema-suggestions/avoid-unbounded-arrays.txt,atlas,2,0,0,0,0,2, +2154,https://www.mongodb.com/docs/atlas/schema-suggestions/case-insensitive-regex/,atlas/source/schema-suggestions/case-insensitive-regex.txt,atlas,3,0,0,0,0,1, +2155,https://www.mongodb.com/docs/atlas/schema-suggestions/reduce-document-size/,atlas/source/schema-suggestions/reduce-document-size.txt,atlas,2,0,0,0,0,2, +2156,https://www.mongodb.com/docs/atlas/schema-suggestions/reduce-lookup-operations/,atlas/source/schema-suggestions/reduce-lookup-operations.txt,atlas,4,0,0,0,0,4, +2157,https://www.mongodb.com/docs/atlas/schema-suggestions/too-many-collections/,atlas/source/schema-suggestions/too-many-collections.txt,atlas,3,0,0,0,0,3, +2158,https://www.mongodb.com/docs/atlas/schema-suggestions/too-many-indexes/,atlas/source/schema-suggestions/too-many-indexes.txt,atlas,1,0,0,0,0,1, +2159,https://www.mongodb.com/docs/atlas/sdk/,atlas/source/sdk.txt,atlas,0,0,0,0,0,0, +2160,https://www.mongodb.com/docs/atlas/sdk/go/authentication/,atlas/source/sdk/go/authentication.txt,atlas,3,0,0,0,3,0, +2161,https://www.mongodb.com/docs/atlas/sdk/go/best_practices/,atlas/source/sdk/go/best_practices.txt,atlas,9,0,0,0,9,0, +2162,https://www.mongodb.com/docs/atlas/sdk/go/concepts/,atlas/source/sdk/go/concepts.txt,atlas,3,0,0,0,3,0, +2163,https://www.mongodb.com/docs/atlas/sdk/go/error_handling/,atlas/source/sdk/go/error_handling.txt,atlas,4,0,0,0,4,0, +2164,https://www.mongodb.com/docs/atlas/sdk/go/migration/,atlas/source/sdk/go/migration.txt,atlas,3,0,0,0,3,0, +2165,https://www.mongodb.com/docs/atlas/security-add-mongodb-roles/,atlas/source/security-add-mongodb-roles.txt,atlas,0,0,0,0,0,0, +2166,https://www.mongodb.com/docs/atlas/security-add-mongodb-users/,atlas/source/security-add-mongodb-users.txt,atlas,0,0,0,0,0,0, +2167,https://www.mongodb.com/docs/atlas/security-aws-kms/,atlas/source/security-aws-kms.txt,atlas,0,0,0,0,0,0, +2168,https://www.mongodb.com/docs/atlas/security-azure-kms/,atlas/source/security-azure-kms.txt,atlas,2,0,0,0,0,0, +2169,https://www.mongodb.com/docs/atlas/security-cluster-private-endpoint/,atlas/source/security-cluster-private-endpoint.txt,atlas,17,1,1,0,0,6, +2170,https://www.mongodb.com/docs/atlas/security-configure-private-endpoints/,atlas/source/security-configure-private-endpoints.txt,atlas,0,0,0,0,0,0, +2171,https://www.mongodb.com/docs/atlas/security-gcp-kms/,atlas/source/security-gcp-kms.txt,atlas,5,0,0,0,0,5, +2172,https://www.mongodb.com/docs/atlas/security-kms-encryption/,atlas/source/security-kms-encryption.txt,atlas,2,0,0,0,0,0, +2173,https://www.mongodb.com/docs/atlas/security-ldaps-azure/,atlas/source/security-ldaps-azure.txt,atlas,15,0,0,0,0,15, +2174,https://www.mongodb.com/docs/atlas/security-ldaps-okta/,atlas/source/security-ldaps-okta.txt,atlas,11,0,0,0,0,11, +2175,https://www.mongodb.com/docs/atlas/security-ldaps-onelogin/,atlas/source/security-ldaps-onelogin.txt,atlas,12,0,0,0,0,12, +2176,https://www.mongodb.com/docs/atlas/security-ldaps/,atlas/source/security-ldaps.txt,atlas,1,0,0,0,0,1, +2177,https://www.mongodb.com/docs/atlas/security-manage-private-endpoint/,atlas/source/security-manage-private-endpoint.txt,atlas,0,0,0,0,0,0, +2178,https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/,atlas/source/security-multi-factor-authentication.txt,atlas,0,0,0,0,0,0, +2179,https://www.mongodb.com/docs/atlas/security-oidc/,atlas/source/security-oidc.txt,atlas,0,0,0,0,0,0, +2180,https://www.mongodb.com/docs/atlas/security-private-endpoint/,atlas/source/security-private-endpoint.txt,atlas,11,0,0,0,0,5, +2181,https://www.mongodb.com/docs/atlas/security-restrict-support-access/,atlas/source/security-restrict-support-access.txt,atlas,0,0,0,0,0,0, +2182,https://www.mongodb.com/docs/atlas/security-self-managed-x509/,atlas/source/security-self-managed-x509.txt,atlas,1,0,0,0,0,0, +2183,https://www.mongodb.com/docs/atlas/security-vpc-peering/,atlas/source/security-vpc-peering.txt,atlas,1,0,0,0,0,0, +2184,https://www.mongodb.com/docs/atlas/security/add-ip-address-to-list/,atlas/source/security/add-ip-address-to-list.txt,atlas,0,0,0,0,0,0, +2185,https://www.mongodb.com/docs/atlas/security/aws-iam-authentication/,atlas/source/security/aws-iam-authentication.txt,atlas,3,0,0,0,0,3, +2186,https://www.mongodb.com/docs/atlas/security/aws-kms-over-private-endpoint/,atlas/source/security/aws-kms-over-private-endpoint.txt,atlas,13,2,2,0,0,8, +2187,https://www.mongodb.com/docs/atlas/security/aws-kms-over-public-network/,atlas/source/security/aws-kms-over-public-network.txt,atlas,3,0,0,0,0,0, +2188,https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/,atlas/source/security/azure-kms-over-private-endpoint.txt,atlas,15,3,3,0,0,4, +2189,https://www.mongodb.com/docs/atlas/security/azure-kms-over-public-network/,atlas/source/security/azure-kms-over-public-network.txt,atlas,5,1,1,0,0,1, +2190,https://www.mongodb.com/docs/atlas/security/azure-kms-secretless/,atlas/source/security/azure-kms-secretless.txt,atlas,14,0,0,0,0,13, +2191,https://www.mongodb.com/docs/atlas/security/cloud-provider-access/,atlas/source/security/cloud-provider-access.txt,atlas,0,0,0,0,0,0, +2192,https://www.mongodb.com/docs/atlas/security/config-db-auth/,atlas/source/security/config-db-auth.txt,atlas,0,0,0,0,0,0, +2193,https://www.mongodb.com/docs/atlas/security/federated-auth-azure-ad/,atlas/source/security/federated-auth-azure-ad.txt,atlas,1,0,0,0,0,0, +2194,https://www.mongodb.com/docs/atlas/security/federated-auth-google-ws/,atlas/source/security/federated-auth-google-ws.txt,atlas,1,0,0,0,0,0, +2195,https://www.mongodb.com/docs/atlas/security/federated-auth-okta/,atlas/source/security/federated-auth-okta.txt,atlas,2,0,0,0,0,1, +2196,https://www.mongodb.com/docs/atlas/security/federated-auth-ping-one/,atlas/source/security/federated-auth-ping-one.txt,atlas,1,0,0,0,0,0, +2197,https://www.mongodb.com/docs/atlas/security/federated-authentication/,atlas/source/security/federated-authentication.txt,atlas,0,0,0,0,0,0, +2198,https://www.mongodb.com/docs/atlas/security/federation-advanced-options/,atlas/source/security/federation-advanced-options.txt,atlas,0,0,0,0,0,0, +2199,https://www.mongodb.com/docs/atlas/security/ip-access-list/,atlas/source/security/ip-access-list.txt,atlas,0,0,0,0,0,0, +2200,https://www.mongodb.com/docs/atlas/security/manage-domain-mapping/,atlas/source/security/manage-domain-mapping.txt,atlas,1,0,0,0,0,0, +2201,https://www.mongodb.com/docs/atlas/security/manage-federated-auth/,atlas/source/security/manage-federated-auth.txt,atlas,0,0,0,0,0,0, +2202,https://www.mongodb.com/docs/atlas/security/manage-org-mapping/,atlas/source/security/manage-org-mapping.txt,atlas,0,0,0,0,0,0, +2203,https://www.mongodb.com/docs/atlas/security/manage-role-mapping/,atlas/source/security/manage-role-mapping.txt,atlas,0,0,0,0,0,0, +2204,https://www.mongodb.com/docs/atlas/security/manage-your-mongodb-atlas-account/,atlas/source/security/manage-your-mongodb-atlas-account.txt,atlas,0,0,0,0,0,0, +2205,https://www.mongodb.com/docs/atlas/security/quick-start/,atlas/source/security/quick-start.txt,atlas,0,0,0,0,0,0, +2206,https://www.mongodb.com/docs/atlas/security/set-up-azure-access/,atlas/source/security/set-up-azure-access.txt,atlas,0,0,0,0,0,0, +2207,https://www.mongodb.com/docs/atlas/security/set-up-gcp-access/,atlas/source/security/set-up-gcp-access.txt,atlas,0,0,0,0,0,0, +2208,https://www.mongodb.com/docs/atlas/security/set-up-unified-aws-access/,atlas/source/security/set-up-unified-aws-access.txt,atlas,1,0,0,0,0,0, +2209,https://www.mongodb.com/docs/atlas/setup-cluster-security/,atlas/source/setup-cluster-security.txt,atlas,2,0,0,0,0,0, +2210,https://www.mongodb.com/docs/atlas/shard-global-collection/,atlas/source/shard-global-collection.txt,atlas,0,0,0,0,0,0, +2211,https://www.mongodb.com/docs/atlas/sizing-tier-selection/,atlas/source/sizing-tier-selection.txt,atlas,2,0,0,0,0,1, +2212,https://www.mongodb.com/docs/atlas/support/,atlas/source/support.txt,atlas,0,0,0,0,0,0, +2213,https://www.mongodb.com/docs/atlas/synthetic-data/,atlas/source/synthetic-data.txt,atlas,8,0,0,0,0,2, +2214,https://www.mongodb.com/docs/atlas/tags/,atlas/source/tags.txt,atlas,0,0,0,0,0,0, +2215,https://www.mongodb.com/docs/atlas/terminate-flex-clusters/,atlas/source/terminate-flex-clusters.txt,atlas,0,0,0,0,0,0, +2216,https://www.mongodb.com/docs/atlas/terraform/,atlas/source/terraform.txt,atlas,6,0,0,0,0,5, +2217,https://www.mongodb.com/docs/atlas/troubleshoot-connection/,atlas/source/troubleshoot-connection.txt,atlas,20,0,0,0,4,10, +2218,https://www.mongodb.com/docs/atlas/troubleshoot-private-endpoints/,atlas/source/troubleshoot-private-endpoints.txt,atlas,28,8,8,0,1,14, +2219,https://www.mongodb.com/docs/atlas/tutorial/access-encrypted-snapshot/,atlas/source/tutorial/access-encrypted-snapshot.txt,atlas,4,0,0,0,0,3, +2220,https://www.mongodb.com/docs/atlas/tutorial/activity-feed/,atlas/source/tutorial/activity-feed.txt,atlas,2,0,0,0,0,0, +2221,https://www.mongodb.com/docs/atlas/tutorial/azure-service-connector/,atlas/source/tutorial/azure-service-connector.txt,atlas,0,0,0,0,0,0, +2222,https://www.mongodb.com/docs/atlas/tutorial/cluster-maintenance-window/,atlas/source/tutorial/cluster-maintenance-window.txt,atlas,2,0,0,0,0,2, +2223,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-excel/,atlas/source/tutorial/connect-bic-excel.txt,atlas,1,0,0,0,0,1, +2224,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-powerbi/,atlas/source/tutorial/connect-bic-powerbi.txt,atlas,0,0,0,0,0,0, +2225,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-qlik/,atlas/source/tutorial/connect-bic-qlik.txt,atlas,0,0,0,0,0,0, +2226,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-tableau/,atlas/source/tutorial/connect-bic-tableau.txt,atlas,1,0,0,0,0,1, +2227,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-workbench/,atlas/source/tutorial/connect-bic-workbench.txt,atlas,1,0,0,0,0,1, +2228,https://www.mongodb.com/docs/atlas/tutorial/create-atlas-account/,atlas/source/tutorial/create-atlas-account.txt,atlas,0,0,0,0,0,0, +2229,https://www.mongodb.com/docs/atlas/tutorial/create-global-cluster/,atlas/source/tutorial/create-global-cluster.txt,atlas,0,0,0,0,0,0, +2230,https://www.mongodb.com/docs/atlas/tutorial/create-mongodb-user-for-cluster/,atlas/source/tutorial/create-mongodb-user-for-cluster.txt,atlas,0,0,0,0,0,0, +2231,https://www.mongodb.com/docs/atlas/tutorial/create-new-cluster/,atlas/source/tutorial/create-new-cluster.txt,atlas,0,0,0,0,0,0, +2232,https://www.mongodb.com/docs/atlas/tutorial/create-system-dsn/,atlas/source/tutorial/create-system-dsn.txt,atlas,4,0,0,0,0,1, +2233,https://www.mongodb.com/docs/atlas/tutorial/datadog-integration/,atlas/source/tutorial/datadog-integration.txt,atlas,0,0,0,0,0,0, +2234,https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster/,atlas/source/tutorial/deploy-free-tier-cluster.txt,atlas,0,0,0,0,0,0, +2235,https://www.mongodb.com/docs/atlas/tutorial/insert-data-into-your-cluster/,atlas/source/tutorial/insert-data-into-your-cluster.txt,atlas,28,7,7,0,5,6, +2236,https://www.mongodb.com/docs/atlas/tutorial/integrate-msft-teams/,atlas/source/tutorial/integrate-msft-teams.txt,atlas,0,0,0,0,0,0, +2237,https://www.mongodb.com/docs/atlas/tutorial/major-version-change/,atlas/source/tutorial/major-version-change.txt,atlas,0,0,0,0,0,0, +2238,https://www.mongodb.com/docs/atlas/tutorial/major-version-downgrade/,atlas/source/tutorial/major-version-downgrade.txt,atlas,0,0,0,0,0,0, +2239,https://www.mongodb.com/docs/atlas/tutorial/manage-organization-settings/,atlas/source/tutorial/manage-organization-settings.txt,atlas,0,0,0,0,0,0, +2240,https://www.mongodb.com/docs/atlas/tutorial/manage-organizations/,atlas/source/tutorial/manage-organizations.txt,atlas,1,0,0,0,0,0, +2241,https://www.mongodb.com/docs/atlas/tutorial/manage-project-settings/,atlas/source/tutorial/manage-project-settings.txt,atlas,0,0,0,0,0,0, +2242,https://www.mongodb.com/docs/atlas/tutorial/manage-projects/,atlas/source/tutorial/manage-projects.txt,atlas,0,0,0,0,0,0, +2243,https://www.mongodb.com/docs/atlas/tutorial/move-cluster/,atlas/source/tutorial/move-cluster.txt,atlas,0,0,0,0,0,0, +2244,https://www.mongodb.com/docs/atlas/tutorial/pagerduty-integration/,atlas/source/tutorial/pagerduty-integration.txt,atlas,0,0,0,0,0,0, +2245,https://www.mongodb.com/docs/atlas/tutorial/prometheus-integration/,atlas/source/tutorial/prometheus-integration.txt,atlas,8,0,0,0,1,2, +2246,https://www.mongodb.com/docs/atlas/tutorial/query-profiler/,atlas/source/tutorial/query-profiler.txt,atlas,0,0,0,0,0,0, +2247,https://www.mongodb.com/docs/atlas/tutorial/rotate-service-account-secrets/,atlas/source/tutorial/rotate-service-account-secrets.txt,atlas,0,0,0,0,0,0, +2248,https://www.mongodb.com/docs/atlas/tutorial/test-resilience/,atlas/source/tutorial/test-resilience.txt,atlas,0,0,0,0,0,0, +2249,https://www.mongodb.com/docs/atlas/tutorial/test-resilience/simulate-regional-outage/,atlas/source/tutorial/test-resilience/simulate-regional-outage.txt,atlas,0,0,0,0,0,0, +2250,https://www.mongodb.com/docs/atlas/tutorial/test-resilience/test-primary-failover/,atlas/source/tutorial/test-resilience/test-primary-failover.txt,atlas,0,0,0,0,0,0, +2251,https://www.mongodb.com/docs/atlas/tutorial/third-party-service-integrations/,atlas/source/tutorial/third-party-service-integrations.txt,atlas,0,0,0,0,0,0, +2252,https://www.mongodb.com/docs/atlas/tutorial/transition-free-tier-to-paid/,atlas/source/tutorial/transition-free-tier-to-paid.txt,atlas,0,0,0,0,0,0, +2253,https://www.mongodb.com/docs/atlas/unsupported-commands/,atlas/source/unsupported-commands.txt,atlas,2,0,0,0,0,1, +2254,https://www.mongodb.com/docs/atlas/username-changes/,atlas/source/username-changes.txt,atlas,0,0,0,0,0,0, +2255,https://www.mongodb.com/docs/atlas/workforce-oidc/,atlas/source/workforce-oidc.txt,atlas,0,0,0,0,0,0, +2256,https://www.mongodb.com/docs/atlas/workload-oidc/,atlas/source/workload-oidc.txt,atlas,0,0,0,0,0,0, +2257,https://www.mongodb.com/docs/drivers/node/current/aggregation/,node/current/source/aggregation.txt,node,0,0,0,0,0,0, +2258,https://www.mongodb.com/docs/drivers/node/current/aggregation/pipeline-stages/,node/current/source/aggregation/pipeline-stages.txt,node,2,0,0,0,2,0, +2259,https://www.mongodb.com/docs/drivers/node/current/atlas-search/,node/current/source/atlas-search.txt,node,2,1,1,0,1,1, +2260,https://www.mongodb.com/docs/drivers/node/current/atlas-vector-search/,node/current/source/atlas-vector-search.txt,node,2,1,1,0,2,0, +2261,https://www.mongodb.com/docs/drivers/node/current/connect/,node/current/source/connect.txt,node,0,0,0,0,0,0, +2262,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/,node/current/source/connect/connection-options.txt,node,3,0,0,0,3,0, +2263,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/connection-pools/,node/current/source/connect/connection-options/connection-pools.txt,node,5,0,0,0,5,0, +2264,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/csot/,node/current/source/connect/connection-options/csot.txt,node,6,0,0,0,6,0, +2265,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/network-compression/,node/current/source/connect/connection-options/network-compression.txt,node,4,0,0,0,4,0, +2266,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/stable-api/,node/current/source/connect/connection-options/stable-api.txt,node,3,0,0,0,2,0, +2267,https://www.mongodb.com/docs/drivers/node/current/connect/connection-targets/,node/current/source/connect/connection-targets.txt,node,5,0,0,0,5,0, +2268,https://www.mongodb.com/docs/drivers/node/current/connect/connection-troubleshooting/,node/current/source/connect/connection-troubleshooting.txt,node,12,0,0,0,4,0, +2269,https://www.mongodb.com/docs/drivers/node/current/connect/mongoclient/,node/current/source/connect/mongoclient.txt,node,2,0,0,0,2,0, +2270,https://www.mongodb.com/docs/drivers/node/current/connect/multiple-connections/,node/current/source/connect/multiple-connections.txt,node,17,2,2,0,10,6, +2271,https://www.mongodb.com/docs/drivers/node/current/crud/,node/current/source/crud.txt,node,0,0,0,0,0,0, +2272,https://www.mongodb.com/docs/drivers/node/current/crud/bulk-write/,node/current/source/crud/bulk-write.txt,node,19,8,8,0,0,8, +2273,https://www.mongodb.com/docs/drivers/node/current/crud/compound-operations/,node/current/source/crud/compound-operations.txt,node,5,2,2,0,4,0, +2274,https://www.mongodb.com/docs/drivers/node/current/crud/configure/,node/current/source/crud/configure.txt,node,13,0,0,0,11,0, +2275,https://www.mongodb.com/docs/drivers/node/current/crud/delete/,node/current/source/crud/delete.txt,node,10,0,0,0,0,0, +2276,https://www.mongodb.com/docs/drivers/node/current/crud/gridfs/,node/current/source/crud/gridfs.txt,node,9,0,0,0,9,0, +2277,https://www.mongodb.com/docs/drivers/node/current/crud/insert/,node/current/source/crud/insert.txt,node,14,0,0,0,0,0, +2278,https://www.mongodb.com/docs/drivers/node/current/crud/pkFactory/,node/current/source/crud/pkFactory.txt,node,2,0,0,0,2,0, +2279,https://www.mongodb.com/docs/drivers/node/current/crud/query/,node/current/source/crud/query.txt,node,0,0,0,0,0,0, +2280,https://www.mongodb.com/docs/drivers/node/current/crud/query/count/,node/current/source/crud/query/count.txt,node,3,0,0,0,2,0, +2281,https://www.mongodb.com/docs/drivers/node/current/crud/query/cursor/,node/current/source/crud/query/cursor.txt,node,8,0,0,0,8,0, +2282,https://www.mongodb.com/docs/drivers/node/current/crud/query/distinct/,node/current/source/crud/query/distinct.txt,node,11,0,0,0,0,0, +2283,https://www.mongodb.com/docs/drivers/node/current/crud/query/geo/,node/current/source/crud/query/geo.txt,node,6,0,0,0,6,0, +2284,https://www.mongodb.com/docs/drivers/node/current/crud/query/project/,node/current/source/crud/query/project.txt,node,7,0,0,0,4,0, +2285,https://www.mongodb.com/docs/drivers/node/current/crud/query/query-document/,node/current/source/crud/query/query-document.txt,node,13,0,0,0,13,0, +2286,https://www.mongodb.com/docs/drivers/node/current/crud/query/retrieve/,node/current/source/crud/query/retrieve.txt,node,15,0,0,0,0,0, +2287,https://www.mongodb.com/docs/drivers/node/current/crud/query/specify-documents-to-return/,node/current/source/crud/query/specify-documents-to-return.txt,node,12,1,1,0,7,0, +2288,https://www.mongodb.com/docs/drivers/node/current/crud/query/text/,node/current/source/crud/query/text.txt,node,10,0,0,0,10,0, +2289,https://www.mongodb.com/docs/drivers/node/current/crud/transactions/,node/current/source/crud/transactions.txt,node,4,0,0,0,4,0, +2290,https://www.mongodb.com/docs/drivers/node/current/crud/transactions/transaction-conv/,node/current/source/crud/transactions/transaction-conv.txt,node,6,0,0,0,4,0, +2291,https://www.mongodb.com/docs/drivers/node/current/crud/transactions/transaction-core/,node/current/source/crud/transactions/transaction-core.txt,node,7,0,0,0,2,0, +2292,https://www.mongodb.com/docs/drivers/node/current/crud/update/,node/current/source/crud/update.txt,node,4,0,0,0,4,0, +2293,https://www.mongodb.com/docs/drivers/node/current/crud/update/embedded-arrays/,node/current/source/crud/update/embedded-arrays.txt,node,13,0,0,0,12,0, +2294,https://www.mongodb.com/docs/drivers/node/current/crud/update/modify/,node/current/source/crud/update/modify.txt,node,10,0,0,0,0,0, +2295,https://www.mongodb.com/docs/drivers/node/current/crud/update/replace/,node/current/source/crud/update/replace.txt,node,7,0,0,0,0,0, +2296,https://www.mongodb.com/docs/drivers/node/current/data-formats/,node/current/source/data-formats.txt,node,0,0,0,0,0,0, +2297,https://www.mongodb.com/docs/drivers/node/current/data-formats/bson/,node/current/source/data-formats/bson.txt,node,8,1,1,0,7,0, +2298,https://www.mongodb.com/docs/drivers/node/current/data-formats/bson/undefined-values/,node/current/source/data-formats/bson/undefined-values.txt,node,4,0,0,0,4,0, +2299,https://www.mongodb.com/docs/drivers/node/current/data-formats/bson/utf8-validation/,node/current/source/data-formats/bson/utf8-validation.txt,node,4,0,0,0,4,0, +2300,https://www.mongodb.com/docs/drivers/node/current/data-formats/extended-json/,node/current/source/data-formats/extended-json.txt,node,8,3,3,0,6,0, +2301,https://www.mongodb.com/docs/drivers/node/current/data-formats/time-series/,node/current/source/data-formats/time-series.txt,node,0,0,0,0,0,0, +2302,https://www.mongodb.com/docs/drivers/node/current/databases-collections/,node/current/source/databases-collections.txt,node,9,2,2,0,7,2, +2303,https://www.mongodb.com/docs/drivers/node/current/get-started/,node/current/source/get-started.txt,node,6,0,0,1,1,3, +2304,https://www.mongodb.com/docs/drivers/node/current/includes/connect/multiple-connections-env-vars/,node/current/source/includes/connect/multiple-connections-env-vars.txt,node,0,0,0,0,0,0, +2305,https://www.mongodb.com/docs/drivers/node/current/,node/current/source/index.txt,node,0,0,0,0,0,0, +2306,https://www.mongodb.com/docs/drivers/node/current/indexes/,node/current/source/indexes.txt,node,19,0,0,0,17,0, +2307,https://www.mongodb.com/docs/drivers/node/current/integrations/,node/current/source/integrations.txt,node,0,0,0,0,0,0, +2308,https://www.mongodb.com/docs/drivers/node/current/integrations/mongoose/,node/current/source/integrations/mongoose.txt,node,0,0,0,0,0,0, +2309,https://www.mongodb.com/docs/drivers/node/current/integrations/mongoose/mongoose-get-started/,node/current/source/integrations/mongoose/mongoose-get-started.txt,node,38,8,8,0,26,10, +2310,https://www.mongodb.com/docs/drivers/node/current/integrations/mongoose/mongoose-qe/,node/current/source/integrations/mongoose/mongoose-qe.txt,node,18,0,0,0,15,3, +2311,https://www.mongodb.com/docs/drivers/node/current/integrations/next-vercel/,node/current/source/integrations/next-vercel.txt,node,10,0,0,0,3,6, +2312,https://www.mongodb.com/docs/drivers/node/current/integrations/prisma/,node/current/source/integrations/prisma.txt,node,4,0,0,0,1,3, +2313,https://www.mongodb.com/docs/drivers/node/current/issues-and-help/,node/current/source/issues-and-help.txt,node,2,0,0,0,0,2, +2314,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/,node/current/source/monitoring-and-logging.txt,node,0,0,0,0,0,0, +2315,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/change-streams/,node/current/source/monitoring-and-logging/change-streams.txt,node,8,0,0,0,7,0, +2316,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/logging/,node/current/source/monitoring-and-logging/logging.txt,node,7,0,0,0,4,3, +2317,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/monitoring/,node/current/source/monitoring-and-logging/monitoring.txt,node,27,0,0,0,27,0, +2318,https://www.mongodb.com/docs/drivers/node/current/promises/,node/current/source/promises.txt,node,7,0,0,0,7,0, +2319,https://www.mongodb.com/docs/drivers/node/current/reference/,node/current/source/reference.txt,node,0,0,0,0,0,0, +2320,https://www.mongodb.com/docs/drivers/node/current/reference/quick-reference/,node/current/source/reference/quick-reference.txt,node,0,0,0,0,0,0, +2321,https://www.mongodb.com/docs/drivers/node/current/reference/release-notes/,node/current/source/reference/release-notes.txt,node,9,0,0,0,8,1, +2322,https://www.mongodb.com/docs/drivers/node/current/reference/upgrade/,node/current/source/reference/upgrade.txt,node,5,0,0,0,4,1, +2323,https://www.mongodb.com/docs/drivers/node/current/run-command/,node/current/source/run-command.txt,node,7,0,0,0,7,0, +2324,https://www.mongodb.com/docs/drivers/node/current/security/,node/current/source/security.txt,node,0,0,0,0,0,0, +2325,https://www.mongodb.com/docs/drivers/node/current/security/authentication/,node/current/source/security/authentication.txt,node,0,0,0,0,0,0, +2326,https://www.mongodb.com/docs/drivers/node/current/security/authentication/aws-iam/,node/current/source/security/authentication/aws-iam.txt,node,8,0,0,0,4,4, +2327,https://www.mongodb.com/docs/drivers/node/current/security/authentication/kerberos/,node/current/source/security/authentication/kerberos.txt,node,1,0,0,0,1,0, +2328,https://www.mongodb.com/docs/drivers/node/current/security/authentication/ldap/,node/current/source/security/authentication/ldap.txt,node,1,0,0,0,1,0, +2329,https://www.mongodb.com/docs/drivers/node/current/security/authentication/oidc/,node/current/source/security/authentication/oidc.txt,node,7,0,0,0,7,0, +2330,https://www.mongodb.com/docs/drivers/node/current/security/authentication/scram/,node/current/source/security/authentication/scram.txt,node,3,0,0,0,3,0, +2331,https://www.mongodb.com/docs/drivers/node/current/security/authentication/x509/,node/current/source/security/authentication/x509.txt,node,1,0,0,0,1,0, +2332,https://www.mongodb.com/docs/drivers/node/current/security/encrypt-fields/,node/current/source/security/encrypt-fields.txt,node,0,0,0,0,0,0, +2333,https://www.mongodb.com/docs/drivers/node/current/security/socks/,node/current/source/security/socks.txt,node,2,0,0,0,1,1, +2334,https://www.mongodb.com/docs/drivers/node/current/security/tls/,node/current/source/security/tls.txt,node,7,0,0,0,7,0, +2335,https://www.mongodb.com/docs/drivers/node/current/typescript/,node/current/source/typescript.txt,node,23,0,0,0,21,0, From fd35bd78d49191f7b98c0fe0de0dbd0ab0270b86 Mon Sep 17 00:00:00 2001 From: Kyle Rollins <115574589+krollins-mdb@users.noreply.github.com> Date: Tue, 10 Mar 2026 09:26:38 -0500 Subject: [PATCH 3/5] Remove generated artifact --- manual-report.csv | 2336 --------------------------------------------- 1 file changed, 2336 deletions(-) delete mode 100644 manual-report.csv diff --git a/manual-report.csv b/manual-report.csv deleted file mode 100644 index 522e8bd..0000000 --- a/manual-report.csv +++ /dev/null @@ -1,2336 +0,0 @@ -Rank,URL,SourcePath,ContentDir,Total,Input,Output,Tested,Testable,Maybe,Error -1,https://www.mongodb.com/docs/manual/about/,manual/manual/source/about.txt,manual,0,0,0,0,0,0, -2,https://www.mongodb.com/docs/manual/administration/,manual/manual/source/administration.txt,manual,0,0,0,0,0,0, -3,https://www.mongodb.com/docs/manual/administration/analyzing-mongodb-performance/,manual/manual/source/administration/analyzing-mongodb-performance.txt,manual,0,0,0,0,0,0, -4,https://www.mongodb.com/docs/manual/administration/backup-sharded-clusters/,manual/manual/source/administration/backup-sharded-clusters.txt,manual,0,0,0,0,0,0, -5,https://www.mongodb.com/docs/manual/administration/change-streams-production-recommendations/,manual/manual/source/administration/change-streams-production-recommendations.txt,manual,0,0,0,0,0,0, -6,https://www.mongodb.com/docs/manual/administration/configuration-and-maintenance/,manual/manual/source/administration/configuration-and-maintenance.txt,manual,0,0,0,0,0,0, -7,https://www.mongodb.com/docs/manual/administration/configuration/,manual/manual/source/administration/configuration.txt,manual,14,0,0,0,0,6, -8,https://www.mongodb.com/docs/manual/administration/connection-pool-overview/,manual/manual/source/administration/connection-pool-overview.txt,manual,0,0,0,0,0,0, -9,https://www.mongodb.com/docs/manual/administration/deploy-manage-self-managed-replica-sets/,manual/manual/source/administration/deploy-manage-self-managed-replica-sets.txt,manual,0,0,0,0,0,0, -10,https://www.mongodb.com/docs/manual/administration/deploy-manage-self-managed-sharded-clusters/,manual/manual/source/administration/deploy-manage-self-managed-sharded-clusters.txt,manual,0,0,0,0,0,0, -11,https://www.mongodb.com/docs/manual/administration/free-monitoring/,manual/manual/source/administration/free-monitoring.txt,manual,0,0,0,0,0,0, -12,https://www.mongodb.com/docs/manual/administration/full-time-diagnostic-data-capture/,manual/manual/source/administration/full-time-diagnostic-data-capture.txt,manual,1,0,0,0,0,0, -13,https://www.mongodb.com/docs/manual/administration/health-managers/,manual/manual/source/administration/health-managers.txt,manual,12,0,0,0,0,8, -14,https://www.mongodb.com/docs/manual/administration/install-community/,manual/manual/source/administration/install-community.txt,manual,189,0,0,0,0,171, -15,https://www.mongodb.com/docs/manual/administration/install-enterprise-linux/,manual/manual/source/administration/install-enterprise-linux.txt,manual,0,0,0,0,0,0, -16,https://www.mongodb.com/docs/manual/administration/install-enterprise/,manual/manual/source/administration/install-enterprise.txt,manual,0,0,0,0,0,0, -17,https://www.mongodb.com/docs/manual/administration/monitoring/,manual/manual/source/administration/monitoring.txt,manual,9,0,0,0,0,9, -18,https://www.mongodb.com/docs/manual/administration/performance-tuning/,manual/manual/source/administration/performance-tuning.txt,manual,0,0,0,0,0,0, -19,https://www.mongodb.com/docs/manual/administration/production-checklist-development/,manual/manual/source/administration/production-checklist-development.txt,manual,0,0,0,0,0,0, -20,https://www.mongodb.com/docs/manual/administration/production-checklist-operations/,manual/manual/source/administration/production-checklist-operations.txt,manual,0,0,0,0,0,0, -21,https://www.mongodb.com/docs/manual/administration/production-notes/,manual/manual/source/administration/production-notes.txt,manual,28,0,0,0,0,23, -22,https://www.mongodb.com/docs/manual/administration/query/,manual/manual/source/administration/query.txt,manual,0,0,0,0,0,0, -23,https://www.mongodb.com/docs/manual/administration/replica-set-deployment/,manual/manual/source/administration/replica-set-deployment.txt,manual,0,0,0,0,0,0, -24,https://www.mongodb.com/docs/manual/administration/replica-set-maintenance/,manual/manual/source/administration/replica-set-maintenance.txt,manual,0,0,0,0,0,0, -25,https://www.mongodb.com/docs/manual/administration/replica-set-member-configuration/,manual/manual/source/administration/replica-set-member-configuration.txt,manual,0,0,0,0,0,0, -26,https://www.mongodb.com/docs/manual/administration/security-checklist/,manual/manual/source/administration/security-checklist.txt,manual,0,0,0,0,0,0, -27,https://www.mongodb.com/docs/manual/administration/self-managed-administration/,manual/manual/source/administration/self-managed-administration.txt,manual,0,0,0,0,0,0, -28,https://www.mongodb.com/docs/manual/administration/self-managed-configuration-and-maintenance/,manual/manual/source/administration/self-managed-configuration-and-maintenance.txt,manual,0,0,0,0,0,0, -29,https://www.mongodb.com/docs/manual/administration/self-managed-performance/,manual/manual/source/administration/self-managed-performance.txt,manual,0,0,0,0,0,0, -30,https://www.mongodb.com/docs/manual/administration/self-managed-sharded-cluster-admin/,manual/manual/source/administration/self-managed-sharded-cluster-admin.txt,manual,0,0,0,0,0,0, -31,https://www.mongodb.com/docs/manual/administration/sharded-cluster-administration/,manual/manual/source/administration/sharded-cluster-administration.txt,manual,0,0,0,0,0,0, -32,https://www.mongodb.com/docs/manual/administration/tcmalloc-performance/,manual/manual/source/administration/tcmalloc-performance.txt,manual,19,0,0,0,0,18, -33,https://www.mongodb.com/docs/manual/administration/upgrade-community-to-enterprise/,manual/manual/source/administration/upgrade-community-to-enterprise.txt,manual,0,0,0,0,0,0, -34,https://www.mongodb.com/docs/manual/aggregation/,manual/manual/source/aggregation.txt,manual,5,0,0,0,0,5, -35,https://www.mongodb.com/docs/manual/appendix/security/,manual/manual/source/appendix/security.txt,manual,0,0,0,0,0,0, -36,https://www.mongodb.com/docs/manual/appendix/security/appendixA-openssl-ca/,manual/manual/source/appendix/security/appendixA-openssl-ca.txt,manual,7,0,0,0,0,6, -37,https://www.mongodb.com/docs/manual/appendix/security/appendixB-openssl-server/,manual/manual/source/appendix/security/appendixB-openssl-server.txt,manual,8,0,0,0,0,7, -38,https://www.mongodb.com/docs/manual/appendix/security/appendixC-openssl-client/,manual/manual/source/appendix/security/appendixC-openssl-client.txt,manual,8,0,0,0,0,7, -39,https://www.mongodb.com/docs/manual/applications/data-models-applications/,manual/manual/source/applications/data-models-applications.txt,manual,0,0,0,0,0,0, -40,https://www.mongodb.com/docs/manual/applications/data-models-relationships/,manual/manual/source/applications/data-models-relationships.txt,manual,0,0,0,0,0,0, -41,https://www.mongodb.com/docs/manual/applications/data-models-tree-structures/,manual/manual/source/applications/data-models-tree-structures.txt,manual,0,0,0,0,0,0, -42,https://www.mongodb.com/docs/manual/applications/indexes/,manual/manual/source/applications/indexes.txt,manual,0,0,0,0,0,0, -43,https://www.mongodb.com/docs/manual/applications/replication/,manual/manual/source/applications/replication.txt,manual,0,0,0,0,0,0, -44,https://www.mongodb.com/docs/manual/changeStreams/,manual/manual/source/changeStreams.txt,manual,63,0,0,0,26,7, -45,https://www.mongodb.com/docs/manual/contents/,manual/manual/source/contents.txt,manual,0,0,0,0,0,0, -46,https://www.mongodb.com/docs/manual/core/LDAP-deprecation/,manual/manual/source/core/LDAP-deprecation.txt,manual,0,0,0,0,0,0, -47,https://www.mongodb.com/docs/manual/core/aggregation-pipeline-limits/,manual/manual/source/core/aggregation-pipeline-limits.txt,manual,2,0,0,0,0,2, -48,https://www.mongodb.com/docs/manual/core/aggregation-pipeline-optimization/,manual/manual/source/core/aggregation-pipeline-optimization.txt,manual,20,0,0,0,0,20, -49,https://www.mongodb.com/docs/manual/core/aggregation-pipeline-sharded-collections/,manual/manual/source/core/aggregation-pipeline-sharded-collections.txt,manual,0,0,0,0,0,0, -50,https://www.mongodb.com/docs/manual/core/aggregation-pipeline/,manual/manual/source/core/aggregation-pipeline.txt,manual,0,0,0,0,0,0, -51,https://www.mongodb.com/docs/manual/core/auditing/,manual/manual/source/core/auditing.txt,manual,0,0,0,0,0,0, -52,https://www.mongodb.com/docs/manual/core/authentication/,manual/manual/source/core/authentication.txt,manual,0,0,0,0,0,0, -53,https://www.mongodb.com/docs/manual/core/authorization/,manual/manual/source/core/authorization.txt,manual,0,0,0,0,0,0, -54,https://www.mongodb.com/docs/manual/core/automerger-concept/,manual/manual/source/core/automerger-concept.txt,manual,2,0,0,0,0,2, -55,https://www.mongodb.com/docs/manual/core/backups/,manual/manual/source/core/backups.txt,manual,2,0,0,0,0,2, -56,https://www.mongodb.com/docs/manual/core/bulk-write-operations/,manual/manual/source/core/bulk-write-operations.txt,manual,1,0,0,0,0,0, -57,https://www.mongodb.com/docs/manual/core/capped-collections/,manual/manual/source/core/capped-collections.txt,manual,1,0,0,0,0,1, -58,https://www.mongodb.com/docs/manual/core/capped-collections/change-max-docs-capped-collection/,manual/manual/source/core/capped-collections/change-max-docs-capped-collection.txt,manual,2,0,0,0,0,2, -59,https://www.mongodb.com/docs/manual/core/capped-collections/change-size-capped-collection/,manual/manual/source/core/capped-collections/change-size-capped-collection.txt,manual,2,0,0,0,0,2, -60,https://www.mongodb.com/docs/manual/core/capped-collections/check-if-collection-is-capped/,manual/manual/source/core/capped-collections/check-if-collection-is-capped.txt,manual,3,1,1,0,0,3, -61,https://www.mongodb.com/docs/manual/core/capped-collections/convert-collection-to-capped/,manual/manual/source/core/capped-collections/convert-collection-to-capped.txt,manual,4,1,1,0,0,4, -62,https://www.mongodb.com/docs/manual/core/capped-collections/create-capped-collection/,manual/manual/source/core/capped-collections/create-capped-collection.txt,manual,2,0,0,0,0,2, -63,https://www.mongodb.com/docs/manual/core/capped-collections/query-capped-collection/,manual/manual/source/core/capped-collections/query-capped-collection.txt,manual,6,2,2,0,0,6, -64,https://www.mongodb.com/docs/manual/core/causal-consistency-read-write-concerns/,manual/manual/source/core/causal-consistency-read-write-concerns.txt,manual,0,0,0,0,0,0, -65,https://www.mongodb.com/docs/manual/core/clustered-collections/,manual/manual/source/core/clustered-collections.txt,manual,8,0,0,0,0,8, -66,https://www.mongodb.com/docs/manual/core/collection-level-access-control/,manual/manual/source/core/collection-level-access-control.txt,manual,1,0,0,0,0,1, -67,https://www.mongodb.com/docs/manual/core/config-shard/,manual/manual/source/core/config-shard.txt,manual,2,0,0,0,0,2, -68,https://www.mongodb.com/docs/manual/core/crud/,manual/manual/source/core/crud.txt,manual,0,0,0,0,0,0, -69,https://www.mongodb.com/docs/manual/core/csfle/,manual/manual/source/core/csfle.txt,manual,2,0,0,0,2,0, -70,https://www.mongodb.com/docs/manual/core/csfle/features/,manual/manual/source/core/csfle/features.txt,manual,0,0,0,0,0,0, -71,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/,manual/manual/source/core/csfle/fundamentals.txt,manual,0,0,0,0,0,0, -72,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/automatic-encryption/,manual/manual/source/core/csfle/fundamentals/automatic-encryption.txt,manual,6,0,0,0,6,0, -73,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/create-schema/,manual/manual/source/core/csfle/fundamentals/create-schema.txt,manual,11,0,0,0,0,0, -74,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/encryption-algorithms/,manual/manual/source/core/csfle/fundamentals/encryption-algorithms.txt,manual,3,0,0,0,0,0, -75,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/manage-keys/,manual/manual/source/core/csfle/fundamentals/manage-keys.txt,manual,11,0,0,0,6,0, -76,https://www.mongodb.com/docs/manual/core/csfle/fundamentals/manual-encryption/,manual/manual/source/core/csfle/fundamentals/manual-encryption.txt,manual,31,0,0,0,30,0, -77,https://www.mongodb.com/docs/manual/core/csfle/install/,manual/manual/source/core/csfle/install.txt,manual,1,0,0,0,0,0, -78,https://www.mongodb.com/docs/manual/core/csfle/quick-start/,manual/manual/source/core/csfle/quick-start.txt,manual,72,0,0,0,56,1, -79,https://www.mongodb.com/docs/manual/core/csfle/reference/,manual/manual/source/core/csfle/reference.txt,manual,0,0,0,0,0,0, -80,https://www.mongodb.com/docs/manual/core/csfle/reference/cryptographic-primitives/,manual/manual/source/core/csfle/reference/cryptographic-primitives.txt,manual,0,0,0,0,0,0, -81,https://www.mongodb.com/docs/manual/core/csfle/reference/csfle-options-clients/,manual/manual/source/core/csfle/reference/csfle-options-clients.txt,manual,6,0,0,0,6,0, -82,https://www.mongodb.com/docs/manual/core/csfle/reference/decryption/,manual/manual/source/core/csfle/reference/decryption.txt,manual,0,0,0,0,0,0, -83,https://www.mongodb.com/docs/manual/core/csfle/reference/encryption-components/,manual/manual/source/core/csfle/reference/encryption-components.txt,manual,0,0,0,0,0,0, -84,https://www.mongodb.com/docs/manual/core/csfle/reference/encryption-schemas/,manual/manual/source/core/csfle/reference/encryption-schemas.txt,manual,9,0,0,0,0,1, -85,https://www.mongodb.com/docs/manual/core/csfle/reference/install-library/,manual/manual/source/core/csfle/reference/install-library.txt,manual,10,0,0,0,8,2, -86,https://www.mongodb.com/docs/manual/core/csfle/reference/libmongocrypt/,manual/manual/source/core/csfle/reference/libmongocrypt.txt,manual,18,0,0,0,0,18, -87,https://www.mongodb.com/docs/manual/core/csfle/reference/limitations/,manual/manual/source/core/csfle/reference/limitations.txt,manual,0,0,0,0,0,0, -88,https://www.mongodb.com/docs/manual/core/csfle/reference/server-side-schema/,manual/manual/source/core/csfle/reference/server-side-schema.txt,manual,2,0,0,0,0,1, -89,https://www.mongodb.com/docs/manual/core/csfle/reference/supported-operations/,manual/manual/source/core/csfle/reference/supported-operations.txt,manual,0,0,0,0,0,0, -90,https://www.mongodb.com/docs/manual/core/csfle/tutorials/,manual/manual/source/core/csfle/tutorials.txt,manual,0,0,0,0,0,0, -91,https://www.mongodb.com/docs/manual/core/csfle/tutorials/aws/aws-automatic/,manual/manual/source/core/csfle/tutorials/aws/aws-automatic.txt,manual,85,0,0,0,72,1, -92,https://www.mongodb.com/docs/manual/core/csfle/tutorials/azure/azure-automatic/,manual/manual/source/core/csfle/tutorials/azure/azure-automatic.txt,manual,73,0,0,0,63,0, -93,https://www.mongodb.com/docs/manual/core/csfle/tutorials/gcp/gcp-automatic/,manual/manual/source/core/csfle/tutorials/gcp/gcp-automatic.txt,manual,73,0,0,0,68,1, -94,https://www.mongodb.com/docs/manual/core/csfle/tutorials/kmip/kmip-automatic/,manual/manual/source/core/csfle/tutorials/kmip/kmip-automatic.txt,manual,78,0,0,0,65,3, -95,https://www.mongodb.com/docs/manual/core/csfle/tutorials/right-to-erasure/,manual/manual/source/core/csfle/tutorials/right-to-erasure.txt,manual,8,0,0,0,7,0, -96,https://www.mongodb.com/docs/manual/core/cursors/,manual/manual/source/core/cursors.txt,manual,0,0,0,0,0,0, -97,https://www.mongodb.com/docs/manual/core/databases-and-collections/,manual/manual/source/core/databases-and-collections.txt,manual,3,0,0,0,1,2, -98,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/,manual/manual/source/core/defragment-sharded-collections.txt,manual,0,0,0,0,0,0, -99,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/monitor-defragmentation-sharded-collection/,manual/manual/source/core/defragment-sharded-collections/monitor-defragmentation-sharded-collection.txt,manual,3,0,0,0,0,3, -100,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/start-defragmenting-sharded-collection/,manual/manual/source/core/defragment-sharded-collections/start-defragmenting-sharded-collection.txt,manual,2,0,0,0,0,2, -101,https://www.mongodb.com/docs/manual/core/defragment-sharded-collections/stop-defragmenting-sharded-collection/,manual/manual/source/core/defragment-sharded-collections/stop-defragmenting-sharded-collection.txt,manual,2,0,0,0,0,2, -102,https://www.mongodb.com/docs/manual/core/distributed-queries/,manual/manual/source/core/distributed-queries.txt,manual,0,0,0,0,0,0, -103,https://www.mongodb.com/docs/manual/core/document/,manual/manual/source/core/document.txt,manual,9,0,0,0,0,9, -104,https://www.mongodb.com/docs/manual/core/dot-dollar-considerations/,manual/manual/source/core/dot-dollar-considerations.txt,manual,0,0,0,0,0,0, -105,https://www.mongodb.com/docs/manual/core/dot-dollar-considerations/dollar-prefix/,manual/manual/source/core/dot-dollar-considerations/dollar-prefix.txt,manual,10,0,0,0,0,5, -106,https://www.mongodb.com/docs/manual/core/dot-dollar-considerations/periods/,manual/manual/source/core/dot-dollar-considerations/periods.txt,manual,8,1,1,0,0,8, -107,https://www.mongodb.com/docs/manual/core/field-paths/,manual/manual/source/core/field-paths.txt,manual,9,0,0,0,0,9, -108,https://www.mongodb.com/docs/manual/core/gridfs/,manual/manual/source/core/gridfs.txt,manual,6,0,0,0,0,6, -109,https://www.mongodb.com/docs/manual/core/hashed-sharding/,manual/manual/source/core/hashed-sharding.txt,manual,2,0,0,0,0,2, -110,https://www.mongodb.com/docs/manual/core/index-case-insensitive/,manual/manual/source/core/index-case-insensitive.txt,manual,7,0,0,0,0,7, -111,https://www.mongodb.com/docs/manual/core/index-creation/,manual/manual/source/core/index-creation.txt,manual,14,0,0,0,0,13, -112,https://www.mongodb.com/docs/manual/core/index-hidden/,manual/manual/source/core/index-hidden.txt,manual,12,0,0,0,0,12, -113,https://www.mongodb.com/docs/manual/core/index-partial/,manual/manual/source/core/index-partial.txt,manual,14,0,0,14,0,14, -114,https://www.mongodb.com/docs/manual/core/index-sparse/,manual/manual/source/core/index-sparse.txt,manual,13,0,0,13,0,13, -115,https://www.mongodb.com/docs/manual/core/index-ttl/,manual/manual/source/core/index-ttl.txt,manual,8,0,0,0,0,8, -116,https://www.mongodb.com/docs/manual/core/index-unique/,manual/manual/source/core/index-unique.txt,manual,12,0,0,11,0,12, -117,https://www.mongodb.com/docs/manual/core/index-unique/convert-to-unique/,manual/manual/source/core/index-unique/convert-to-unique.txt,manual,12,4,4,0,0,12, -118,https://www.mongodb.com/docs/manual/core/index-unique/create-compound/,manual/manual/source/core/index-unique/create-compound.txt,manual,5,0,0,0,0,5, -119,https://www.mongodb.com/docs/manual/core/index-unique/create/,manual/manual/source/core/index-unique/create.txt,manual,2,0,0,0,0,2, -120,https://www.mongodb.com/docs/manual/core/indexes/create-index/,manual/manual/source/core/indexes/create-index.txt,manual,28,2,2,0,10,8, -121,https://www.mongodb.com/docs/manual/core/indexes/create-index/specify-index-name/,manual/manual/source/core/indexes/create-index/specify-index-name.txt,manual,4,0,0,0,0,4, -122,https://www.mongodb.com/docs/manual/core/indexes/drop-index/,manual/manual/source/core/indexes/drop-index.txt,manual,6,0,0,0,0,6, -123,https://www.mongodb.com/docs/manual/core/indexes/index-properties/,manual/manual/source/core/indexes/index-properties.txt,manual,0,0,0,0,0,0, -124,https://www.mongodb.com/docs/manual/core/indexes/index-types/,manual/manual/source/core/indexes/index-types.txt,manual,0,0,0,0,0,0, -125,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/,manual/manual/source/core/indexes/index-types/geospatial/2d.txt,manual,1,0,0,0,0,1, -126,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/calculate-distances/,manual/manual/source/core/indexes/index-types/geospatial/2d/calculate-distances.txt,manual,5,0,0,0,0,5, -127,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/create/,manual/manual/source/core/indexes/index-types/geospatial/2d/create.txt,manual,3,0,0,0,0,3, -128,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/create/define-location-precision/,manual/manual/source/core/indexes/index-types/geospatial/2d/create/define-location-precision.txt,manual,3,0,0,0,0,3, -129,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/create/define-location-range/,manual/manual/source/core/indexes/index-types/geospatial/2d/create/define-location-range.txt,manual,4,0,0,0,0,4, -130,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/internals/,manual/manual/source/core/indexes/index-types/geospatial/2d/internals.txt,manual,5,0,0,0,0,5, -131,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/query/,manual/manual/source/core/indexes/index-types/geospatial/2d/query.txt,manual,0,0,0,0,0,0, -132,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/query/points-within-a-shape/,manual/manual/source/core/indexes/index-types/geospatial/2d/query/points-within-a-shape.txt,manual,4,0,0,0,0,4, -133,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2d/query/proximity-flat-surface/,manual/manual/source/core/indexes/index-types/geospatial/2d/query/proximity-flat-surface.txt,manual,4,0,0,0,0,4, -134,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere.txt,manual,1,0,0,0,0,1, -135,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/2dsphere-index-versions/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/2dsphere-index-versions.txt,manual,2,0,0,0,0,2, -136,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/create/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/create.txt,manual,3,0,0,0,0,3, -137,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query.txt,manual,0,0,0,0,0,0, -138,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/geojson-bound-by-polygon/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/geojson-bound-by-polygon.txt,manual,4,0,0,0,0,4, -139,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/intersections-of-geojson-objects/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/intersections-of-geojson-objects.txt,manual,4,0,0,0,0,4, -140,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/points-within-circle-on-sphere/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/points-within-circle-on-sphere.txt,manual,4,0,0,0,0,4, -141,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/2dsphere/query/proximity-to-geojson/,manual/manual/source/core/indexes/index-types/geospatial/2dsphere/query/proximity-to-geojson.txt,manual,4,0,0,0,0,4, -142,https://www.mongodb.com/docs/manual/core/indexes/index-types/geospatial/restrictions/,manual/manual/source/core/indexes/index-types/geospatial/restrictions.txt,manual,5,0,0,0,0,5, -143,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-compound/,manual/manual/source/core/indexes/index-types/index-compound.txt,manual,2,0,0,0,0,2, -144,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-compound/create-compound-index/,manual/manual/source/core/indexes/index-types/index-compound/create-compound-index.txt,manual,5,0,0,0,0,5, -145,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-compound/sort-order/,manual/manual/source/core/indexes/index-types/index-compound/sort-order.txt,manual,8,0,0,0,0,8, -146,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-geospatial/,manual/manual/source/core/indexes/index-types/index-geospatial.txt,manual,0,0,0,0,0,0, -147,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-hashed/,manual/manual/source/core/indexes/index-types/index-hashed.txt,manual,0,0,0,0,0,0, -148,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-hashed/create/,manual/manual/source/core/indexes/index-types/index-hashed/create.txt,manual,6,0,0,0,0,6, -149,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/,manual/manual/source/core/indexes/index-types/index-multikey.txt,manual,6,0,0,5,0,6, -150,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/create-multikey-index-basic/,manual/manual/source/core/indexes/index-types/index-multikey/create-multikey-index-basic.txt,manual,5,0,0,0,0,5, -151,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/create-multikey-index-embedded/,manual/manual/source/core/indexes/index-types/index-multikey/create-multikey-index-embedded.txt,manual,7,0,0,0,0,7, -152,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-multikey/multikey-index-bounds/,manual/manual/source/core/indexes/index-types/index-multikey/multikey-index-bounds.txt,manual,22,0,0,0,0,22, -153,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-single/,manual/manual/source/core/indexes/index-types/index-single.txt,manual,1,0,0,0,0,1, -154,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-single/create-embedded-object-index/,manual/manual/source/core/indexes/index-types/index-single/create-embedded-object-index.txt,manual,5,0,0,0,0,5, -155,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-single/create-single-field-index/,manual/manual/source/core/indexes/index-types/index-single/create-single-field-index.txt,manual,6,0,0,0,0,6, -156,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/,manual/manual/source/core/indexes/index-types/index-text.txt,manual,1,0,0,0,0,1, -157,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/control-text-search-results/,manual/manual/source/core/indexes/index-types/index-text/control-text-search-results.txt,manual,9,0,0,0,0,9, -158,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/create-text-index/,manual/manual/source/core/indexes/index-types/index-text/create-text-index.txt,manual,9,0,0,0,0,9, -159,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/create-wildcard-text-index/,manual/manual/source/core/indexes/index-types/index-text/create-wildcard-text-index.txt,manual,9,0,0,0,0,9, -160,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/limit-number-of-items-scanned-for-text-search/,manual/manual/source/core/indexes/index-types/index-text/limit-number-of-items-scanned-for-text-search.txt,manual,5,0,0,0,0,5, -161,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/specify-language-text-index/create-text-index-multiple-languages/,manual/manual/source/core/indexes/index-types/index-text/specify-language-text-index/create-text-index-multiple-languages.txt,manual,5,0,0,0,0,5, -162,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/specify-language-text-index/use-any-field-to-specify-language/,manual/manual/source/core/indexes/index-types/index-text/specify-language-text-index/use-any-field-to-specify-language.txt,manual,6,0,0,0,0,6, -163,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/specify-text-index-language/,manual/manual/source/core/indexes/index-types/index-text/specify-text-index-language.txt,manual,6,0,0,0,0,6, -164,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/text-index-properties/,manual/manual/source/core/indexes/index-types/index-text/text-index-properties.txt,manual,0,0,0,0,0,0, -165,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/text-index-restrictions/,manual/manual/source/core/indexes/index-types/index-text/text-index-restrictions.txt,manual,2,0,0,0,0,2, -166,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-text/text-index-versions/,manual/manual/source/core/indexes/index-types/index-text/text-index-versions.txt,manual,2,0,0,0,0,2, -167,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/,manual/manual/source/core/indexes/index-types/index-wildcard.txt,manual,3,0,0,0,0,3, -168,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/create-wildcard-index-all-fields/,manual/manual/source/core/indexes/index-types/index-wildcard/create-wildcard-index-all-fields.txt,manual,9,0,0,0,0,9, -169,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/create-wildcard-index-multiple-fields/,manual/manual/source/core/indexes/index-types/index-wildcard/create-wildcard-index-multiple-fields.txt,manual,9,0,0,0,0,7, -170,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/create-wildcard-index-single-field/,manual/manual/source/core/indexes/index-types/index-wildcard/create-wildcard-index-single-field.txt,manual,9,0,0,0,0,9, -171,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/index-wildcard-compound/,manual/manual/source/core/indexes/index-types/index-wildcard/index-wildcard-compound.txt,manual,9,0,0,0,0,9, -172,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/,manual/manual/source/core/indexes/index-types/index-wildcard/reference.txt,manual,0,0,0,0,0,0, -173,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/embedded-object-behavior/,manual/manual/source/core/indexes/index-types/index-wildcard/reference/embedded-object-behavior.txt,manual,7,0,0,0,0,7, -174,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/restrictions/,manual/manual/source/core/indexes/index-types/index-wildcard/reference/restrictions.txt,manual,13,0,0,0,0,13, -175,https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/reference/wildcard-projection-signature/,manual/manual/source/core/indexes/index-types/index-wildcard/reference/wildcard-projection-signature.txt,manual,4,0,0,0,0,4, -176,https://www.mongodb.com/docs/manual/core/inmemory/,manual/manual/source/core/inmemory.txt,manual,19,0,0,0,0,17, -177,https://www.mongodb.com/docs/manual/core/journaling/,manual/manual/source/core/journaling.txt,manual,11,0,0,0,0,10, -178,https://www.mongodb.com/docs/manual/core/kerberos/,manual/manual/source/core/kerberos.txt,manual,2,0,0,0,0,0, -179,https://www.mongodb.com/docs/manual/core/localhost-exception/,manual/manual/source/core/localhost-exception.txt,manual,0,0,0,0,0,0, -180,https://www.mongodb.com/docs/manual/core/long-running-secondary-reads/,manual/manual/source/core/long-running-secondary-reads.txt,manual,6,0,0,0,0,6, -181,https://www.mongodb.com/docs/manual/core/map-reduce-concurrency/,manual/manual/source/core/map-reduce-concurrency.txt,manual,0,0,0,0,0,0, -182,https://www.mongodb.com/docs/manual/core/map-reduce-sharded-collections/,manual/manual/source/core/map-reduce-sharded-collections.txt,manual,0,0,0,0,0,0, -183,https://www.mongodb.com/docs/manual/core/map-reduce/,manual/manual/source/core/map-reduce.txt,manual,0,0,0,0,0,0, -184,https://www.mongodb.com/docs/manual/core/materialized-views/,manual/manual/source/core/materialized-views.txt,manual,10,0,0,0,0,8, -185,https://www.mongodb.com/docs/manual/core/moveable-collections/,manual/manual/source/core/moveable-collections.txt,manual,0,0,0,0,0,0, -186,https://www.mongodb.com/docs/manual/core/moveable-collections/multi-tenant/,manual/manual/source/core/moveable-collections/multi-tenant.txt,manual,0,0,0,0,0,0, -187,https://www.mongodb.com/docs/manual/core/oidc/security-oidc/,manual/manual/source/core/oidc/security-oidc.txt,manual,1,0,0,0,0,1, -188,https://www.mongodb.com/docs/manual/core/oidc/workforce/,manual/manual/source/core/oidc/workforce.txt,manual,1,0,0,0,0,1, -189,https://www.mongodb.com/docs/manual/core/oidc/workforce/configure-oidc/,manual/manual/source/core/oidc/workforce/configure-oidc.txt,manual,9,0,0,0,0,3, -190,https://www.mongodb.com/docs/manual/core/oidc/workforce/database-user-workforce/,manual/manual/source/core/oidc/workforce/database-user-workforce.txt,manual,5,0,0,0,0,2, -191,https://www.mongodb.com/docs/manual/core/oidc/workforce/workforce-external-provider/,manual/manual/source/core/oidc/workforce/workforce-external-provider.txt,manual,0,0,0,0,0,0, -192,https://www.mongodb.com/docs/manual/core/oidc/workload/,manual/manual/source/core/oidc/workload.txt,manual,1,0,0,0,0,1, -193,https://www.mongodb.com/docs/manual/core/oidc/workload/configure-mongodb-workload/,manual/manual/source/core/oidc/workload/configure-mongodb-workload.txt,manual,9,0,0,0,0,4, -194,https://www.mongodb.com/docs/manual/core/oidc/workload/database-user-workload/,manual/manual/source/core/oidc/workload/database-user-workload.txt,manual,5,0,0,0,0,2, -195,https://www.mongodb.com/docs/manual/core/oidc/workload/workload-external-provider/,manual/manual/source/core/oidc/workload/workload-external-provider.txt,manual,0,0,0,0,0,0, -196,https://www.mongodb.com/docs/manual/core/query-optimization/,manual/manual/source/core/query-optimization.txt,manual,11,0,0,0,0,11, -197,https://www.mongodb.com/docs/manual/core/query-plans/,manual/manual/source/core/query-plans.txt,manual,4,0,0,0,0,4, -198,https://www.mongodb.com/docs/manual/core/query-shapes/,manual/manual/source/core/query-shapes.txt,manual,6,0,0,0,0,6, -199,https://www.mongodb.com/docs/manual/core/queryable-encryption/,manual/manual/source/core/queryable-encryption.txt,manual,0,0,0,0,0,0, -200,https://www.mongodb.com/docs/manual/core/queryable-encryption/about-qe-csfle/,manual/manual/source/core/queryable-encryption/about-qe-csfle.txt,manual,0,0,0,0,0,0, -201,https://www.mongodb.com/docs/manual/core/queryable-encryption/features/,manual/manual/source/core/queryable-encryption/features.txt,manual,0,0,0,0,0,0, -202,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/,manual/manual/source/core/queryable-encryption/fundamentals.txt,manual,0,0,0,0,0,0, -203,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/enable-qe/,manual/manual/source/core/queryable-encryption/fundamentals/enable-qe.txt,manual,2,0,0,0,0,2, -204,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/encrypt-and-query/,manual/manual/source/core/queryable-encryption/fundamentals/encrypt-and-query.txt,manual,0,0,0,0,0,0, -205,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/keys-key-vaults/,manual/manual/source/core/queryable-encryption/fundamentals/keys-key-vaults.txt,manual,3,1,1,0,0,0, -206,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/kms-providers/,manual/manual/source/core/queryable-encryption/fundamentals/kms-providers.txt,manual,3,0,0,0,0,1, -207,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/manage-collections/,manual/manual/source/core/queryable-encryption/fundamentals/manage-collections.txt,manual,4,2,2,0,0,3, -208,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/manage-keys/,manual/manual/source/core/queryable-encryption/fundamentals/manage-keys.txt,manual,1,0,0,0,0,1, -209,https://www.mongodb.com/docs/manual/core/queryable-encryption/fundamentals/manual-encryption/,manual/manual/source/core/queryable-encryption/fundamentals/manual-encryption.txt,manual,0,0,0,0,0,0, -210,https://www.mongodb.com/docs/manual/core/queryable-encryption/install-library/,manual/manual/source/core/queryable-encryption/install-library.txt,manual,10,0,0,0,8,2, -211,https://www.mongodb.com/docs/manual/core/queryable-encryption/install/,manual/manual/source/core/queryable-encryption/install.txt,manual,40,0,0,0,0,35, -212,https://www.mongodb.com/docs/manual/core/queryable-encryption/overview-enable-qe/,manual/manual/source/core/queryable-encryption/overview-enable-qe.txt,manual,0,0,0,0,0,0, -213,https://www.mongodb.com/docs/manual/core/queryable-encryption/overview-use-qe/,manual/manual/source/core/queryable-encryption/overview-use-qe.txt,manual,0,0,0,0,0,0, -214,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-application/,manual/manual/source/core/queryable-encryption/qe-create-application.txt,manual,152,0,0,0,112,2, -215,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-cmk/,manual/manual/source/core/queryable-encryption/qe-create-cmk.txt,manual,9,0,0,0,3,3, -216,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-encrypted-collection/,manual/manual/source/core/queryable-encryption/qe-create-encrypted-collection.txt,manual,53,0,0,0,43,0, -217,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-create-encryption-schema/,manual/manual/source/core/queryable-encryption/qe-create-encryption-schema.txt,manual,11,0,0,0,0,10, -218,https://www.mongodb.com/docs/manual/core/queryable-encryption/qe-retrieve-encrypted-document/,manual/manual/source/core/queryable-encryption/qe-retrieve-encrypted-document.txt,manual,25,0,0,0,20,0, -219,https://www.mongodb.com/docs/manual/core/queryable-encryption/quick-start/,manual/manual/source/core/queryable-encryption/quick-start.txt,manual,98,0,0,0,72,1, -220,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/,manual/manual/source/core/queryable-encryption/reference.txt,manual,0,0,0,0,0,0, -221,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/compatibility/,manual/manual/source/core/queryable-encryption/reference/compatibility.txt,manual,0,0,0,0,0,0, -222,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/limitations/,manual/manual/source/core/queryable-encryption/reference/limitations.txt,manual,0,0,0,0,0,0, -223,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/qe-options-clients/,manual/manual/source/core/queryable-encryption/reference/qe-options-clients.txt,manual,0,0,0,0,0,0, -224,https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/supported-operations/,manual/manual/source/core/queryable-encryption/reference/supported-operations.txt,manual,2,0,0,0,0,0, -225,https://www.mongodb.com/docs/manual/core/queryable-encryption/tutorials/,manual/manual/source/core/queryable-encryption/tutorials.txt,manual,0,0,0,0,0,0, -226,https://www.mongodb.com/docs/manual/core/queryable-encryption/tutorials/explicit-encryption/,manual/manual/source/core/queryable-encryption/tutorials/explicit-encryption.txt,manual,71,0,0,0,65,2, -227,https://www.mongodb.com/docs/manual/core/ranged-sharding/,manual/manual/source/core/ranged-sharding.txt,manual,1,0,0,0,0,1, -228,https://www.mongodb.com/docs/manual/core/read-isolation-consistency-recency/,manual/manual/source/core/read-isolation-consistency-recency.txt,manual,26,0,0,0,8,10, -229,https://www.mongodb.com/docs/manual/core/read-preference-hedge-option/,manual/manual/source/core/read-preference-hedge-option.txt,manual,0,0,0,0,0,0, -230,https://www.mongodb.com/docs/manual/core/read-preference-mechanics/,manual/manual/source/core/read-preference-mechanics.txt,manual,8,0,0,0,0,8, -231,https://www.mongodb.com/docs/manual/core/read-preference-staleness/,manual/manual/source/core/read-preference-staleness.txt,manual,0,0,0,0,0,0, -232,https://www.mongodb.com/docs/manual/core/read-preference-tags/,manual/manual/source/core/read-preference-tags.txt,manual,8,0,0,0,0,5, -233,https://www.mongodb.com/docs/manual/core/read-preference-use-cases/,manual/manual/source/core/read-preference-use-cases.txt,manual,9,0,0,0,0,9, -234,https://www.mongodb.com/docs/manual/core/read-preference/,manual/manual/source/core/read-preference.txt,manual,8,0,0,0,0,8, -235,https://www.mongodb.com/docs/manual/core/replica-set-arbiter/,manual/manual/source/core/replica-set-arbiter.txt,manual,10,0,0,0,0,9, -236,https://www.mongodb.com/docs/manual/core/replica-set-architecture-geographically-distributed/,manual/manual/source/core/replica-set-architecture-geographically-distributed.txt,manual,0,0,0,0,0,0, -237,https://www.mongodb.com/docs/manual/core/replica-set-architecture-three-members/,manual/manual/source/core/replica-set-architecture-three-members.txt,manual,0,0,0,0,0,0, -238,https://www.mongodb.com/docs/manual/core/replica-set-architectures/,manual/manual/source/core/replica-set-architectures.txt,manual,0,0,0,0,0,0, -239,https://www.mongodb.com/docs/manual/core/replica-set-delayed-member/,manual/manual/source/core/replica-set-delayed-member.txt,manual,1,0,0,0,0,1, -240,https://www.mongodb.com/docs/manual/core/replica-set-elections/,manual/manual/source/core/replica-set-elections.txt,manual,1,0,0,0,0,1, -241,https://www.mongodb.com/docs/manual/core/replica-set-hidden-member/,manual/manual/source/core/replica-set-hidden-member.txt,manual,1,0,0,0,0,0, -242,https://www.mongodb.com/docs/manual/core/replica-set-high-availability/,manual/manual/source/core/replica-set-high-availability.txt,manual,0,0,0,0,0,0, -243,https://www.mongodb.com/docs/manual/core/replica-set-members/,manual/manual/source/core/replica-set-members.txt,manual,12,0,0,0,0,11, -244,https://www.mongodb.com/docs/manual/core/replica-set-oplog/,manual/manual/source/core/replica-set-oplog.txt,manual,16,0,0,0,0,14, -245,https://www.mongodb.com/docs/manual/core/replica-set-primary/,manual/manual/source/core/replica-set-primary.txt,manual,0,0,0,0,0,0, -246,https://www.mongodb.com/docs/manual/core/replica-set-priority-0-member/,manual/manual/source/core/replica-set-priority-0-member.txt,manual,0,0,0,0,0,0, -247,https://www.mongodb.com/docs/manual/core/replica-set-rollbacks/,manual/manual/source/core/replica-set-rollbacks.txt,manual,14,0,0,0,0,12, -248,https://www.mongodb.com/docs/manual/core/replica-set-secondary/,manual/manual/source/core/replica-set-secondary.txt,manual,2,0,0,0,0,2, -249,https://www.mongodb.com/docs/manual/core/replica-set-sync/,manual/manual/source/core/replica-set-sync.txt,manual,2,0,0,0,0,2, -250,https://www.mongodb.com/docs/manual/core/replica-set-write-concern/,manual/manual/source/core/replica-set-write-concern.txt,manual,1,0,0,0,0,1, -251,https://www.mongodb.com/docs/manual/core/reshard-to-same-key/,manual/manual/source/core/reshard-to-same-key.txt,manual,3,0,0,0,0,1, -252,https://www.mongodb.com/docs/manual/core/retryable-reads/,manual/manual/source/core/retryable-reads.txt,manual,0,0,0,0,0,0, -253,https://www.mongodb.com/docs/manual/core/retryable-writes/,manual/manual/source/core/retryable-writes.txt,manual,3,0,0,0,0,3, -254,https://www.mongodb.com/docs/manual/core/rolling-index-builds/,manual/manual/source/core/rolling-index-builds.txt,manual,0,0,0,0,0,0, -255,https://www.mongodb.com/docs/manual/core/schema-validation/,manual/manual/source/core/schema-validation.txt,manual,0,0,0,0,0,0, -256,https://www.mongodb.com/docs/manual/core/schema-validation/bypass-document-validation/,manual/manual/source/core/schema-validation/bypass-document-validation.txt,manual,5,0,0,0,0,5, -257,https://www.mongodb.com/docs/manual/core/schema-validation/handle-invalid-documents/,manual/manual/source/core/schema-validation/handle-invalid-documents.txt,manual,7,0,0,0,0,7, -258,https://www.mongodb.com/docs/manual/core/schema-validation/specify-json-schema/,manual/manual/source/core/schema-validation/specify-json-schema.txt,manual,8,2,2,0,0,6, -259,https://www.mongodb.com/docs/manual/core/schema-validation/specify-json-schema/json-schema-tips/,manual/manual/source/core/schema-validation/specify-json-schema/json-schema-tips.txt,manual,6,0,0,0,0,6, -260,https://www.mongodb.com/docs/manual/core/schema-validation/specify-json-schema/specify-allowed-field-values/,manual/manual/source/core/schema-validation/specify-json-schema/specify-allowed-field-values.txt,manual,6,0,0,0,0,6, -261,https://www.mongodb.com/docs/manual/core/schema-validation/specify-query-expression-rules/,manual/manual/source/core/schema-validation/specify-query-expression-rules.txt,manual,6,0,0,0,0,6, -262,https://www.mongodb.com/docs/manual/core/schema-validation/specify-validation-level/,manual/manual/source/core/schema-validation/specify-validation-level.txt,manual,7,0,0,0,0,6, -263,https://www.mongodb.com/docs/manual/core/schema-validation/specify-validation-polymorphic-collections/,manual/manual/source/core/schema-validation/specify-validation-polymorphic-collections.txt,manual,8,2,2,0,0,6, -264,https://www.mongodb.com/docs/manual/core/schema-validation/update-schema-validation/,manual/manual/source/core/schema-validation/update-schema-validation.txt,manual,6,0,0,0,0,6, -265,https://www.mongodb.com/docs/manual/core/schema-validation/use-json-schema-query-conditions/,manual/manual/source/core/schema-validation/use-json-schema-query-conditions.txt,manual,12,0,0,0,0,12, -266,https://www.mongodb.com/docs/manual/core/schema-validation/view-existing-validation-rules/,manual/manual/source/core/schema-validation/view-existing-validation-rules.txt,manual,4,0,0,0,0,4, -267,https://www.mongodb.com/docs/manual/core/search-in-community/connect-to-search/,manual/manual/source/core/search-in-community/connect-to-search.txt,manual,29,7,7,0,14,12, -268,https://www.mongodb.com/docs/manual/core/search-in-community/deploy-rs-keyfile-mongot/,manual/manual/source/core/search-in-community/deploy-rs-keyfile-mongot.txt,manual,10,0,0,0,0,8, -269,https://www.mongodb.com/docs/manual/core/search-in-community/verify-mongot-packages/,manual/manual/source/core/search-in-community/verify-mongot-packages.txt,manual,10,0,0,0,0,8, -270,https://www.mongodb.com/docs/manual/core/security-data-encryption/,manual/manual/source/core/security-data-encryption.txt,manual,0,0,0,0,0,0, -271,https://www.mongodb.com/docs/manual/core/security-encryption-at-rest/,manual/manual/source/core/security-encryption-at-rest.txt,manual,2,0,0,0,0,2, -272,https://www.mongodb.com/docs/manual/core/security-hardening/,manual/manual/source/core/security-hardening.txt,manual,2,0,0,0,0,1, -273,https://www.mongodb.com/docs/manual/core/security-in-use-encryption/,manual/manual/source/core/security-in-use-encryption.txt,manual,0,0,0,0,0,0, -274,https://www.mongodb.com/docs/manual/core/security-internal-authentication/,manual/manual/source/core/security-internal-authentication.txt,manual,26,0,0,0,0,16, -275,https://www.mongodb.com/docs/manual/core/security-ldap-external/,manual/manual/source/core/security-ldap-external.txt,manual,9,0,0,0,0,5, -276,https://www.mongodb.com/docs/manual/core/security-ldap/,manual/manual/source/core/security-ldap.txt,manual,2,0,0,0,0,2, -277,https://www.mongodb.com/docs/manual/core/security-mongodb-configuration/,manual/manual/source/core/security-mongodb-configuration.txt,manual,0,0,0,0,0,0, -278,https://www.mongodb.com/docs/manual/core/security-scram/,manual/manual/source/core/security-scram.txt,manual,0,0,0,0,0,0, -279,https://www.mongodb.com/docs/manual/core/security-transport-encryption/,manual/manual/source/core/security-transport-encryption.txt,manual,15,0,0,0,0,14, -280,https://www.mongodb.com/docs/manual/core/security-user-defined-roles/,manual/manual/source/core/security-user-defined-roles.txt,manual,0,0,0,0,0,0, -281,https://www.mongodb.com/docs/manual/core/security-users/,manual/manual/source/core/security-users.txt,manual,0,0,0,0,0,0, -282,https://www.mongodb.com/docs/manual/core/security-x.509/,manual/manual/source/core/security-x.509.txt,manual,21,0,0,0,0,13, -283,https://www.mongodb.com/docs/manual/core/self-managed-security/,manual/manual/source/core/self-managed-security.txt,manual,0,0,0,0,0,0, -284,https://www.mongodb.com/docs/manual/core/self-managed-storage/,manual/manual/source/core/self-managed-storage.txt,manual,0,0,0,0,0,0, -285,https://www.mongodb.com/docs/manual/core/self-managed-wiredtiger/,manual/manual/source/core/self-managed-wiredtiger.txt,manual,0,0,0,0,0,0, -286,https://www.mongodb.com/docs/manual/core/server-side-javascript/,manual/manual/source/core/server-side-javascript.txt,manual,0,0,0,0,0,0, -287,https://www.mongodb.com/docs/manual/core/sharded-cluster-components/,manual/manual/source/core/sharded-cluster-components.txt,manual,0,0,0,0,0,0, -288,https://www.mongodb.com/docs/manual/core/sharded-cluster-config-servers/,manual/manual/source/core/sharded-cluster-config-servers.txt,manual,9,0,0,0,0,9, -289,https://www.mongodb.com/docs/manual/core/sharded-cluster-query-router/,manual/manual/source/core/sharded-cluster-query-router.txt,manual,5,0,0,0,0,5, -290,https://www.mongodb.com/docs/manual/core/sharded-cluster-requirements/,manual/manual/source/core/sharded-cluster-requirements.txt,manual,2,0,0,0,0,2, -291,https://www.mongodb.com/docs/manual/core/sharded-cluster-shards/,manual/manual/source/core/sharded-cluster-shards.txt,manual,0,0,0,0,0,0, -292,https://www.mongodb.com/docs/manual/core/sharding-balancer-administration/,manual/manual/source/core/sharding-balancer-administration.txt,manual,0,0,0,0,0,0, -293,https://www.mongodb.com/docs/manual/core/sharding-change-a-shard-key/,manual/manual/source/core/sharding-change-a-shard-key.txt,manual,0,0,0,0,0,0, -294,https://www.mongodb.com/docs/manual/core/sharding-change-shard-key-value/,manual/manual/source/core/sharding-change-shard-key-value.txt,manual,1,0,0,0,0,1, -295,https://www.mongodb.com/docs/manual/core/sharding-choose-a-shard-key/,manual/manual/source/core/sharding-choose-a-shard-key.txt,manual,0,0,0,0,0,0, -296,https://www.mongodb.com/docs/manual/core/sharding-consolidate-collection-data/,manual/manual/source/core/sharding-consolidate-collection-data.txt,manual,2,0,0,0,0,2, -297,https://www.mongodb.com/docs/manual/core/sharding-data-partitioning/,manual/manual/source/core/sharding-data-partitioning.txt,manual,0,0,0,0,0,0, -298,https://www.mongodb.com/docs/manual/core/sharding-distribute-collection-data/,manual/manual/source/core/sharding-distribute-collection-data.txt,manual,0,0,0,0,0,0, -299,https://www.mongodb.com/docs/manual/core/sharding-find-shard-key/,manual/manual/source/core/sharding-find-shard-key.txt,manual,2,0,0,0,0,2, -300,https://www.mongodb.com/docs/manual/core/sharding-manage-unsharded-collections/,manual/manual/source/core/sharding-manage-unsharded-collections.txt,manual,2,0,0,0,0,2, -301,https://www.mongodb.com/docs/manual/core/sharding-refine-a-shard-key/,manual/manual/source/core/sharding-refine-a-shard-key.txt,manual,1,0,0,0,0,1, -302,https://www.mongodb.com/docs/manual/core/sharding-reshard-a-collection/,manual/manual/source/core/sharding-reshard-a-collection.txt,manual,11,0,0,0,0,11, -303,https://www.mongodb.com/docs/manual/core/sharding-scaling-strategies/,manual/manual/source/core/sharding-scaling-strategies.txt,manual,0,0,0,0,0,0, -304,https://www.mongodb.com/docs/manual/core/sharding-set-missing-shard-key-fields/,manual/manual/source/core/sharding-set-missing-shard-key-fields.txt,manual,1,0,0,0,0,1, -305,https://www.mongodb.com/docs/manual/core/sharding-shard-a-collection/,manual/manual/source/core/sharding-shard-a-collection.txt,manual,1,0,0,0,0,1, -306,https://www.mongodb.com/docs/manual/core/sharding-shard-key/,manual/manual/source/core/sharding-shard-key.txt,manual,2,0,0,0,0,2, -307,https://www.mongodb.com/docs/manual/core/sharding-start-with-sharding/,manual/manual/source/core/sharding-start-with-sharding.txt,manual,0,0,0,0,0,0, -308,https://www.mongodb.com/docs/manual/core/sharding-troubleshooting-shard-keys/,manual/manual/source/core/sharding-troubleshooting-shard-keys.txt,manual,0,0,0,0,0,0, -309,https://www.mongodb.com/docs/manual/core/storage-engines/,manual/manual/source/core/storage-engines.txt,manual,0,0,0,0,0,0, -310,https://www.mongodb.com/docs/manual/core/tailable-cursors/,manual/manual/source/core/tailable-cursors.txt,manual,1,0,0,0,0,1, -311,https://www.mongodb.com/docs/manual/core/text-search-operators/,manual/manual/source/core/text-search-operators.txt,manual,2,0,0,0,0,2, -312,https://www.mongodb.com/docs/manual/core/text-search/on-prem/,manual/manual/source/core/text-search/on-prem.txt,manual,7,0,0,0,0,7, -313,https://www.mongodb.com/docs/manual/core/timeseries-collections/,manual/manual/source/core/timeseries-collections.txt,manual,1,0,0,0,0,1, -314,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-aggregations-operators/,manual/manual/source/core/timeseries/timeseries-aggregations-operators.txt,manual,26,8,8,20,9,9, -315,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-automatic-removal/,manual/manual/source/core/timeseries/timeseries-automatic-removal.txt,manual,31,4,4,24,12,10, -316,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-best-practices/,manual/manual/source/core/timeseries/timeseries-best-practices.txt,manual,11,0,0,0,0,11, -317,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-bucketing/,manual/manual/source/core/timeseries/timeseries-bucketing.txt,manual,1,0,0,0,0,1, -318,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-build-materialized-views/,manual/manual/source/core/timeseries/timeseries-build-materialized-views.txt,manual,1,0,0,0,0,1, -319,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-check-type/,manual/manual/source/core/timeseries/timeseries-check-type.txt,manual,2,0,0,0,0,2, -320,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-compression/,manual/manual/source/core/timeseries/timeseries-compression.txt,manual,0,0,0,0,0,0, -321,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-considerations/,manual/manual/source/core/timeseries/timeseries-considerations.txt,manual,0,0,0,0,0,0, -322,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-create-configure/,manual/manual/source/core/timeseries/timeseries-create-configure.txt,manual,0,0,0,0,0,0, -323,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-granularity/,manual/manual/source/core/timeseries/timeseries-granularity.txt,manual,6,0,0,0,0,6, -324,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-index/,manual/manual/source/core/timeseries/timeseries-index.txt,manual,0,0,0,0,0,0, -325,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-limitations/,manual/manual/source/core/timeseries/timeseries-limitations.txt,manual,5,0,0,4,3,2, -326,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-migrate-data-into-timeseries-collection/,manual/manual/source/core/timeseries/timeseries-migrate-data-into-timeseries-collection.txt,manual,0,0,0,0,0,0, -327,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-migrate-with-aggregation/,manual/manual/source/core/timeseries/timeseries-migrate-with-aggregation.txt,manual,31,5,5,31,16,11, -328,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-migrate-with-tools/,manual/manual/source/core/timeseries/timeseries-migrate-with-tools.txt,manual,8,0,0,0,0,8, -329,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-procedures/,manual/manual/source/core/timeseries/timeseries-procedures.txt,manual,45,9,9,45,23,16, -330,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-querying/,manual/manual/source/core/timeseries/timeseries-querying.txt,manual,2,0,0,0,0,2, -331,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-quick-start/,manual/manual/source/core/timeseries/timeseries-quick-start.txt,manual,39,4,4,30,20,15, -332,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-secondary-index/,manual/manual/source/core/timeseries/timeseries-secondary-index.txt,manual,69,4,4,56,39,27, -333,https://www.mongodb.com/docs/manual/core/timeseries/timeseries-shard-collection/,manual/manual/source/core/timeseries/timeseries-shard-collection.txt,manual,12,0,0,0,0,12, -334,https://www.mongodb.com/docs/manual/core/transactions-in-applications/,manual/manual/source/core/transactions-in-applications.txt,manual,30,0,0,0,9,11, -335,https://www.mongodb.com/docs/manual/core/transactions-operations/,manual/manual/source/core/transactions-operations.txt,manual,8,0,0,0,0,8, -336,https://www.mongodb.com/docs/manual/core/transactions-production-consideration/,manual/manual/source/core/transactions-production-consideration.txt,manual,9,0,0,0,0,9, -337,https://www.mongodb.com/docs/manual/core/transactions-sharded-clusters/,manual/manual/source/core/transactions-sharded-clusters.txt,manual,8,0,0,0,0,8, -338,https://www.mongodb.com/docs/manual/core/transactions/,manual/manual/source/core/transactions.txt,manual,22,0,0,0,6,0, -339,https://www.mongodb.com/docs/manual/core/unsharded-collections/,manual/manual/source/core/unsharded-collections.txt,manual,1,0,0,0,0,1, -340,https://www.mongodb.com/docs/manual/core/views/,manual/manual/source/core/views.txt,manual,0,0,0,0,0,0, -341,https://www.mongodb.com/docs/manual/core/views/create-view/,manual/manual/source/core/views/create-view.txt,manual,31,0,0,0,0,31, -342,https://www.mongodb.com/docs/manual/core/views/join-collections-with-view/,manual/manual/source/core/views/join-collections-with-view.txt,manual,5,0,0,0,0,5, -343,https://www.mongodb.com/docs/manual/core/views/specify-collation/,manual/manual/source/core/views/specify-collation.txt,manual,3,0,0,0,0,3, -344,https://www.mongodb.com/docs/manual/core/views/supported-operations/,manual/manual/source/core/views/supported-operations.txt,manual,0,0,0,0,0,0, -345,https://www.mongodb.com/docs/manual/core/views/update-view/,manual/manual/source/core/views/update-view.txt,manual,3,0,0,0,0,3, -346,https://www.mongodb.com/docs/manual/core/wiredtiger/,manual/manual/source/core/wiredtiger.txt,manual,1,0,0,0,0,0, -347,https://www.mongodb.com/docs/manual/core/workload-isolation/,manual/manual/source/core/workload-isolation.txt,manual,0,0,0,0,0,0, -348,https://www.mongodb.com/docs/manual/core/write-operations-atomicity/,manual/manual/source/core/write-operations-atomicity.txt,manual,14,0,0,0,0,14, -349,https://www.mongodb.com/docs/manual/core/write-performance/,manual/manual/source/core/write-performance.txt,manual,0,0,0,0,0,0, -350,https://www.mongodb.com/docs/manual/core/zone-sharding/,manual/manual/source/core/zone-sharding.txt,manual,2,0,0,0,0,2, -351,https://www.mongodb.com/docs/manual/crud/,manual/manual/source/crud.txt,manual,0,0,0,0,0,0, -352,https://www.mongodb.com/docs/manual/data-center-awareness/,manual/manual/source/data-center-awareness.txt,manual,0,0,0,0,0,0, -353,https://www.mongodb.com/docs/manual/data-modeling/,manual/manual/source/data-modeling.txt,manual,0,0,0,0,0,0, -354,https://www.mongodb.com/docs/manual/data-modeling/best-practices/,manual/manual/source/data-modeling/best-practices.txt,manual,10,0,0,0,0,10, -355,https://www.mongodb.com/docs/manual/data-modeling/data-consistency/,manual/manual/source/data-modeling/data-consistency.txt,manual,0,0,0,0,0,0, -356,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/,manual/manual/source/data-modeling/design-antipatterns.txt,manual,0,0,0,0,0,0, -357,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/bloated-documents/,manual/manual/source/data-modeling/design-antipatterns/bloated-documents.txt,manual,5,0,0,0,0,5, -358,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/reduce-collections/,manual/manual/source/data-modeling/design-antipatterns/reduce-collections.txt,manual,2,0,0,0,0,2, -359,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/reduce-lookup-operations/,manual/manual/source/data-modeling/design-antipatterns/reduce-lookup-operations.txt,manual,2,0,0,0,0,2, -360,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/unbounded-arrays/,manual/manual/source/data-modeling/design-antipatterns/unbounded-arrays.txt,manual,7,0,0,0,0,7, -361,https://www.mongodb.com/docs/manual/data-modeling/design-antipatterns/unnecessary-indexes/,manual/manual/source/data-modeling/design-antipatterns/unnecessary-indexes.txt,manual,5,0,0,0,0,5, -362,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/,manual/manual/source/data-modeling/design-patterns.txt,manual,0,0,0,0,0,0, -363,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/archive/,manual/manual/source/data-modeling/design-patterns/archive.txt,manual,6,0,0,0,0,6, -364,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/computed-values/approximation-schema-pattern/,manual/manual/source/data-modeling/design-patterns/computed-values/approximation-schema-pattern.txt,manual,3,0,0,0,0,3, -365,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/computed-values/computed-schema-pattern/,manual/manual/source/data-modeling/design-patterns/computed-values/computed-schema-pattern.txt,manual,6,0,0,0,0,6, -366,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/,manual/manual/source/data-modeling/design-patterns/data-versioning.txt,manual,0,0,0,0,0,0, -367,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/document-versioning/,manual/manual/source/data-modeling/design-patterns/data-versioning/document-versioning.txt,manual,10,0,0,0,0,10, -368,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/schema-versioning/,manual/manual/source/data-modeling/design-patterns/data-versioning/schema-versioning.txt,manual,6,0,0,0,0,6, -369,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/data-versioning/slowly-changing-dimensions/,manual/manual/source/data-modeling/design-patterns/data-versioning/slowly-changing-dimensions.txt,manual,5,0,0,0,0,5, -370,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/,manual/manual/source/data-modeling/design-patterns/group-data.txt,manual,0,0,0,0,0,0, -371,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/attribute-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/attribute-pattern.txt,manual,8,0,0,0,0,8, -372,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/bucket-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/bucket-pattern.txt,manual,7,0,0,0,0,7, -373,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/outlier-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/outlier-pattern.txt,manual,3,0,0,0,0,3, -374,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/group-data/subset-pattern/,manual/manual/source/data-modeling/design-patterns/group-data/subset-pattern.txt,manual,3,0,0,0,0,3, -375,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/handle-computed-values/,manual/manual/source/data-modeling/design-patterns/handle-computed-values.txt,manual,0,0,0,0,0,0, -376,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/polymorphic-data/,manual/manual/source/data-modeling/design-patterns/polymorphic-data.txt,manual,0,0,0,0,0,0, -377,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/polymorphic-data/inheritance-schema-pattern/,manual/manual/source/data-modeling/design-patterns/polymorphic-data/inheritance-schema-pattern.txt,manual,5,0,0,0,0,5, -378,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/polymorphic-data/polymorphic-schema-pattern/,manual/manual/source/data-modeling/design-patterns/polymorphic-data/polymorphic-schema-pattern.txt,manual,5,0,0,0,0,5, -379,https://www.mongodb.com/docs/manual/data-modeling/design-patterns/single-collection/,manual/manual/source/data-modeling/design-patterns/single-collection.txt,manual,5,0,0,0,0,5, -380,https://www.mongodb.com/docs/manual/data-modeling/embedding/,manual/manual/source/data-modeling/embedding.txt,manual,0,0,0,0,0,0, -381,https://www.mongodb.com/docs/manual/data-modeling/enforce-consistency/embed-data/,manual/manual/source/data-modeling/enforce-consistency/embed-data.txt,manual,3,0,0,0,0,3, -382,https://www.mongodb.com/docs/manual/data-modeling/enforce-consistency/transactions/,manual/manual/source/data-modeling/enforce-consistency/transactions.txt,manual,7,0,0,0,0,7, -383,https://www.mongodb.com/docs/manual/data-modeling/handle-duplicate-data/,manual/manual/source/data-modeling/handle-duplicate-data.txt,manual,2,0,0,0,0,2, -384,https://www.mongodb.com/docs/manual/data-modeling/referencing/,manual/manual/source/data-modeling/referencing.txt,manual,1,0,0,0,0,1, -385,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/,manual/manual/source/data-modeling/schema-design-process.txt,manual,0,0,0,0,0,0, -386,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/apply-patterns/,manual/manual/source/data-modeling/schema-design-process/apply-patterns.txt,manual,2,0,0,0,0,2, -387,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/create-indexes/,manual/manual/source/data-modeling/schema-design-process/create-indexes.txt,manual,13,0,0,0,0,11, -388,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/identify-workload/,manual/manual/source/data-modeling/schema-design-process/identify-workload.txt,manual,0,0,0,0,0,0, -389,https://www.mongodb.com/docs/manual/data-modeling/schema-design-process/map-relationships/,manual/manual/source/data-modeling/schema-design-process/map-relationships.txt,manual,3,0,0,0,0,3, -390,https://www.mongodb.com/docs/manual/faq/,manual/manual/source/faq.txt,manual,0,0,0,0,0,0, -391,https://www.mongodb.com/docs/manual/faq/concurrency/,manual/manual/source/faq/concurrency.txt,manual,10,0,0,0,0,10, -392,https://www.mongodb.com/docs/manual/faq/diagnostics/,manual/manual/source/faq/diagnostics.txt,manual,18,1,1,0,0,12, -393,https://www.mongodb.com/docs/manual/faq/fundamentals/,manual/manual/source/faq/fundamentals.txt,manual,11,0,0,0,0,10, -394,https://www.mongodb.com/docs/manual/faq/indexes/,manual/manual/source/faq/indexes.txt,manual,0,0,0,0,0,0, -395,https://www.mongodb.com/docs/manual/faq/replica-sets/,manual/manual/source/faq/replica-sets.txt,manual,0,0,0,0,0,0, -396,https://www.mongodb.com/docs/manual/faq/sharding/,manual/manual/source/faq/sharding.txt,manual,1,0,0,0,0,1, -397,https://www.mongodb.com/docs/manual/faq/storage/,manual/manual/source/faq/storage.txt,manual,4,0,0,0,0,3, -398,https://www.mongodb.com/docs/manual/geospatial-queries/,manual/manual/source/geospatial-queries.txt,manual,12,0,0,0,0,12, -399,https://www.mongodb.com/docs/manual/,manual/manual/source/index.txt,manual,1,0,0,0,0,1, -400,https://www.mongodb.com/docs/manual/indexes/,manual/manual/source/indexes.txt,manual,0,0,0,0,0,0, -401,https://www.mongodb.com/docs/manual/installation/,manual/manual/source/installation.txt,manual,0,0,0,0,0,0, -402,https://www.mongodb.com/docs/manual/introduction/,manual/manual/source/introduction.txt,manual,0,0,0,0,0,0, -403,https://www.mongodb.com/docs/manual/legacy-opcodes/,manual/manual/source/legacy-opcodes.txt,manual,8,0,0,0,0,3, -404,https://www.mongodb.com/docs/manual/meta/401/,manual/manual/source/meta/401.txt,manual,0,0,0,0,0,0, -405,https://www.mongodb.com/docs/manual/meta/403/,manual/manual/source/meta/403.txt,manual,0,0,0,0,0,0, -406,https://www.mongodb.com/docs/manual/meta/404/,manual/manual/source/meta/404.txt,manual,0,0,0,0,0,0, -407,https://www.mongodb.com/docs/manual/meta/410/,manual/manual/source/meta/410.txt,manual,0,0,0,0,0,0, -408,https://www.mongodb.com/docs/manual/meta/pdfs/,manual/manual/source/meta/pdfs.txt,manual,0,0,0,0,0,0, -409,https://www.mongodb.com/docs/manual/natural-language-to-mongodb/,manual/manual/source/natural-language-to-mongodb.txt,manual,9,0,0,0,0,1, -410,https://www.mongodb.com/docs/manual/query-api/,manual/manual/source/query-api.txt,manual,0,0,0,0,0,0, -411,https://www.mongodb.com/docs/manual/reference/,manual/manual/source/reference.txt,manual,0,0,0,0,0,0, -412,https://www.mongodb.com/docs/manual/reference/aggregation-commands-comparison/,manual/manual/source/reference/aggregation-commands-comparison.txt,manual,0,0,0,0,0,0, -413,https://www.mongodb.com/docs/manual/reference/aggregation-variables/,manual/manual/source/reference/aggregation-variables.txt,manual,0,0,0,0,0,0, -414,https://www.mongodb.com/docs/manual/reference/aggregation/,manual/manual/source/reference/aggregation.txt,manual,0,0,0,0,0,0, -415,https://www.mongodb.com/docs/manual/reference/audit-message/,manual/manual/source/reference/audit-message.txt,manual,0,0,0,0,0,0, -416,https://www.mongodb.com/docs/manual/reference/audit-message/mongo/,manual/manual/source/reference/audit-message/mongo.txt,manual,1,0,0,0,0,0, -417,https://www.mongodb.com/docs/manual/reference/audit-message/ocsf/,manual/manual/source/reference/audit-message/ocsf.txt,manual,3,0,0,0,0,2, -418,https://www.mongodb.com/docs/manual/reference/bios-example-collection/,manual/manual/source/reference/bios-example-collection.txt,manual,1,0,0,0,0,1, -419,https://www.mongodb.com/docs/manual/reference/bson-type-comparison-order/,manual/manual/source/reference/bson-type-comparison-order.txt,manual,9,0,0,0,0,7, -420,https://www.mongodb.com/docs/manual/reference/bson-types/,manual/manual/source/reference/bson-types.txt,manual,15,5,5,0,1,14, -421,https://www.mongodb.com/docs/manual/reference/bson-types/migrate-undefined/,manual/manual/source/reference/bson-types/migrate-undefined.txt,manual,11,0,0,0,0,11, -422,https://www.mongodb.com/docs/manual/reference/built-in-roles/,manual/manual/source/reference/built-in-roles.txt,manual,2,1,1,0,0,2, -423,https://www.mongodb.com/docs/manual/reference/change-events/,manual/manual/source/reference/change-events.txt,manual,1,0,0,0,0,1, -424,https://www.mongodb.com/docs/manual/reference/change-events/create/,manual/manual/source/reference/change-events/create.txt,manual,1,0,0,0,0,0, -425,https://www.mongodb.com/docs/manual/reference/change-events/createIndexes/,manual/manual/source/reference/change-events/createIndexes.txt,manual,1,0,0,0,0,0, -426,https://www.mongodb.com/docs/manual/reference/change-events/delete/,manual/manual/source/reference/change-events/delete.txt,manual,4,0,0,0,0,2, -427,https://www.mongodb.com/docs/manual/reference/change-events/drop/,manual/manual/source/reference/change-events/drop.txt,manual,1,0,0,0,0,0, -428,https://www.mongodb.com/docs/manual/reference/change-events/dropDatabase/,manual/manual/source/reference/change-events/dropDatabase.txt,manual,1,0,0,0,0,0, -429,https://www.mongodb.com/docs/manual/reference/change-events/dropIndexes/,manual/manual/source/reference/change-events/dropIndexes.txt,manual,1,0,0,0,0,0, -430,https://www.mongodb.com/docs/manual/reference/change-events/insert/,manual/manual/source/reference/change-events/insert.txt,manual,1,0,0,0,0,0, -431,https://www.mongodb.com/docs/manual/reference/change-events/invalidate/,manual/manual/source/reference/change-events/invalidate.txt,manual,1,0,0,0,0,0, -432,https://www.mongodb.com/docs/manual/reference/change-events/modify/,manual/manual/source/reference/change-events/modify.txt,manual,1,0,0,0,0,0, -433,https://www.mongodb.com/docs/manual/reference/change-events/refineCollectionShardKey/,manual/manual/source/reference/change-events/refineCollectionShardKey.txt,manual,1,0,0,0,0,0, -434,https://www.mongodb.com/docs/manual/reference/change-events/rename/,manual/manual/source/reference/change-events/rename.txt,manual,1,0,0,0,0,0, -435,https://www.mongodb.com/docs/manual/reference/change-events/replace/,manual/manual/source/reference/change-events/replace.txt,manual,4,0,0,0,0,2, -436,https://www.mongodb.com/docs/manual/reference/change-events/reshardCollection/,manual/manual/source/reference/change-events/reshardCollection.txt,manual,1,0,0,0,0,0, -437,https://www.mongodb.com/docs/manual/reference/change-events/shardCollection/,manual/manual/source/reference/change-events/shardCollection.txt,manual,1,0,0,0,0,0, -438,https://www.mongodb.com/docs/manual/reference/change-events/update/,manual/manual/source/reference/change-events/update.txt,manual,17,1,1,0,0,11, -439,https://www.mongodb.com/docs/manual/reference/cluster-parameters/,manual/manual/source/reference/cluster-parameters.txt,manual,2,0,0,0,0,2, -440,https://www.mongodb.com/docs/manual/reference/cluster-parameters/auditConfig/,manual/manual/source/reference/cluster-parameters/auditConfig.txt,manual,5,0,0,0,0,5, -441,https://www.mongodb.com/docs/manual/reference/cluster-parameters/changeStreamOptions/,manual/manual/source/reference/cluster-parameters/changeStreamOptions.txt,manual,3,0,0,0,0,3, -442,https://www.mongodb.com/docs/manual/reference/cluster-parameters/defaultMaxTimeMS/,manual/manual/source/reference/cluster-parameters/defaultMaxTimeMS.txt,manual,6,1,1,0,0,6, -443,https://www.mongodb.com/docs/manual/reference/cluster-parameters/fleDisableSubstringPreviewParameterLimits/,manual/manual/source/reference/cluster-parameters/fleDisableSubstringPreviewParameterLimits.txt,manual,2,0,0,0,0,2, -444,https://www.mongodb.com/docs/manual/reference/collation-locales-defaults/,manual/manual/source/reference/collation-locales-defaults.txt,manual,11,0,0,0,0,9, -445,https://www.mongodb.com/docs/manual/reference/collation/,manual/manual/source/reference/collation.txt,manual,16,1,1,0,0,14, -446,https://www.mongodb.com/docs/manual/reference/command/,manual/manual/source/reference/command.txt,manual,3,0,0,0,0,3, -447,https://www.mongodb.com/docs/manual/reference/command/abortMoveCollection/,manual/manual/source/reference/command/abortMoveCollection.txt,manual,2,0,0,0,0,2, -448,https://www.mongodb.com/docs/manual/reference/command/abortReshardCollection/,manual/manual/source/reference/command/abortReshardCollection.txt,manual,2,0,0,0,0,2, -449,https://www.mongodb.com/docs/manual/reference/command/abortTransaction/,manual/manual/source/reference/command/abortTransaction.txt,manual,1,0,0,0,0,1, -450,https://www.mongodb.com/docs/manual/reference/command/abortUnshardCollection/,manual/manual/source/reference/command/abortUnshardCollection.txt,manual,2,0,0,0,0,2, -451,https://www.mongodb.com/docs/manual/reference/command/addShard/,manual/manual/source/reference/command/addShard.txt,manual,3,0,0,0,0,3, -452,https://www.mongodb.com/docs/manual/reference/command/addShardToZone/,manual/manual/source/reference/command/addShardToZone.txt,manual,3,0,0,0,0,3, -453,https://www.mongodb.com/docs/manual/reference/command/aggregate/,manual/manual/source/reference/command/aggregate.txt,manual,35,0,0,0,0,33, -454,https://www.mongodb.com/docs/manual/reference/command/analyzeShardKey/,manual/manual/source/reference/command/analyzeShardKey.txt,manual,12,0,0,0,0,9, -455,https://www.mongodb.com/docs/manual/reference/command/appendOplogNote/,manual/manual/source/reference/command/appendOplogNote.txt,manual,3,0,0,0,0,2, -456,https://www.mongodb.com/docs/manual/reference/command/applyOps/,manual/manual/source/reference/command/applyOps.txt,manual,0,0,0,0,0,0, -457,https://www.mongodb.com/docs/manual/reference/command/authenticate/,manual/manual/source/reference/command/authenticate.txt,manual,4,0,0,0,0,4, -458,https://www.mongodb.com/docs/manual/reference/command/autoCompact/,manual/manual/source/reference/command/autoCompact.txt,manual,2,0,0,0,0,2, -459,https://www.mongodb.com/docs/manual/reference/command/balancerCollectionStatus/,manual/manual/source/reference/command/balancerCollectionStatus.txt,manual,6,0,0,0,0,5, -460,https://www.mongodb.com/docs/manual/reference/command/balancerStart/,manual/manual/source/reference/command/balancerStart.txt,manual,2,0,0,0,0,2, -461,https://www.mongodb.com/docs/manual/reference/command/balancerStatus/,manual/manual/source/reference/command/balancerStatus.txt,manual,3,0,0,0,0,2, -462,https://www.mongodb.com/docs/manual/reference/command/balancerStop/,manual/manual/source/reference/command/balancerStop.txt,manual,2,0,0,0,0,2, -463,https://www.mongodb.com/docs/manual/reference/command/buildInfo/,manual/manual/source/reference/command/buildInfo.txt,manual,3,0,0,0,0,3, -464,https://www.mongodb.com/docs/manual/reference/command/bulkWrite/,manual/manual/source/reference/command/bulkWrite.txt,manual,7,0,0,4,0,7, -465,https://www.mongodb.com/docs/manual/reference/command/checkMetadataConsistency/,manual/manual/source/reference/command/checkMetadataConsistency.txt,manual,7,0,0,0,0,6, -466,https://www.mongodb.com/docs/manual/reference/command/cleanupOrphaned/,manual/manual/source/reference/command/cleanupOrphaned.txt,manual,1,0,0,0,0,1, -467,https://www.mongodb.com/docs/manual/reference/command/cleanupReshardCollection/,manual/manual/source/reference/command/cleanupReshardCollection.txt,manual,2,0,0,0,0,2, -468,https://www.mongodb.com/docs/manual/reference/command/clearJumboFlag/,manual/manual/source/reference/command/clearJumboFlag.txt,manual,12,0,0,0,0,12, -469,https://www.mongodb.com/docs/manual/reference/command/cloneCollectionAsCapped/,manual/manual/source/reference/command/cloneCollectionAsCapped.txt,manual,1,0,0,0,0,1, -470,https://www.mongodb.com/docs/manual/reference/command/collMod/,manual/manual/source/reference/command/collMod.txt,manual,17,0,0,0,0,17, -471,https://www.mongodb.com/docs/manual/reference/command/collStats/,manual/manual/source/reference/command/collStats.txt,manual,18,0,0,0,0,17, -472,https://www.mongodb.com/docs/manual/reference/command/commitReshardCollection/,manual/manual/source/reference/command/commitReshardCollection.txt,manual,2,0,0,0,0,2, -473,https://www.mongodb.com/docs/manual/reference/command/commitTransaction/,manual/manual/source/reference/command/commitTransaction.txt,manual,9,0,0,0,0,9, -474,https://www.mongodb.com/docs/manual/reference/command/compact/,manual/manual/source/reference/command/compact.txt,manual,8,2,2,0,0,8, -475,https://www.mongodb.com/docs/manual/reference/command/compactStructuredEncryptionData/,manual/manual/source/reference/command/compactStructuredEncryptionData.txt,manual,1,0,0,0,0,1, -476,https://www.mongodb.com/docs/manual/reference/command/configureCollectionBalancing/,manual/manual/source/reference/command/configureCollectionBalancing.txt,manual,6,0,0,0,0,6, -477,https://www.mongodb.com/docs/manual/reference/command/configureQueryAnalyzer/,manual/manual/source/reference/command/configureQueryAnalyzer.txt,manual,6,1,1,0,0,5, -478,https://www.mongodb.com/docs/manual/reference/command/connPoolStats/,manual/manual/source/reference/command/connPoolStats.txt,manual,6,0,0,0,0,5, -479,https://www.mongodb.com/docs/manual/reference/command/connectionStatus/,manual/manual/source/reference/command/connectionStatus.txt,manual,2,0,0,0,0,2, -480,https://www.mongodb.com/docs/manual/reference/command/convertToCapped/,manual/manual/source/reference/command/convertToCapped.txt,manual,5,0,0,0,0,5, -481,https://www.mongodb.com/docs/manual/reference/command/count/,manual/manual/source/reference/command/count.txt,manual,22,0,0,0,0,20, -482,https://www.mongodb.com/docs/manual/reference/command/create/,manual/manual/source/reference/command/create.txt,manual,41,0,0,0,0,39, -483,https://www.mongodb.com/docs/manual/reference/command/createIndexes/,manual/manual/source/reference/command/createIndexes.txt,manual,46,0,0,0,0,41, -484,https://www.mongodb.com/docs/manual/reference/command/createRole/,manual/manual/source/reference/command/createRole.txt,manual,4,0,0,0,0,4, -485,https://www.mongodb.com/docs/manual/reference/command/createSearchIndexes/,manual/manual/source/reference/command/createSearchIndexes.txt,manual,10,0,0,0,0,10, -486,https://www.mongodb.com/docs/manual/reference/command/createUser/,manual/manual/source/reference/command/createUser.txt,manual,6,0,0,0,0,6, -487,https://www.mongodb.com/docs/manual/reference/command/currentOp/,manual/manual/source/reference/command/currentOp.txt,manual,23,0,0,0,0,21, -488,https://www.mongodb.com/docs/manual/reference/command/dataSize/,manual/manual/source/reference/command/dataSize.txt,manual,2,0,0,0,0,2, -489,https://www.mongodb.com/docs/manual/reference/command/dbHash/,manual/manual/source/reference/command/dbHash.txt,manual,7,0,0,0,0,5, -490,https://www.mongodb.com/docs/manual/reference/command/dbStats/,manual/manual/source/reference/command/dbStats.txt,manual,19,0,0,0,0,18, -491,https://www.mongodb.com/docs/manual/reference/command/delete/,manual/manual/source/reference/command/delete.txt,manual,37,0,0,0,0,35, -492,https://www.mongodb.com/docs/manual/reference/command/distinct/,manual/manual/source/reference/command/distinct.txt,manual,44,0,0,0,0,41, -493,https://www.mongodb.com/docs/manual/reference/command/drop/,manual/manual/source/reference/command/drop.txt,manual,1,0,0,0,0,1, -494,https://www.mongodb.com/docs/manual/reference/command/dropAllRolesFromDatabase/,manual/manual/source/reference/command/dropAllRolesFromDatabase.txt,manual,3,0,0,0,0,3, -495,https://www.mongodb.com/docs/manual/reference/command/dropAllUsersFromDatabase/,manual/manual/source/reference/command/dropAllUsersFromDatabase.txt,manual,3,0,0,0,0,3, -496,https://www.mongodb.com/docs/manual/reference/command/dropConnections/,manual/manual/source/reference/command/dropConnections.txt,manual,6,0,0,0,0,6, -497,https://www.mongodb.com/docs/manual/reference/command/dropDatabase/,manual/manual/source/reference/command/dropDatabase.txt,manual,16,0,0,0,0,15, -498,https://www.mongodb.com/docs/manual/reference/command/dropIndexes/,manual/manual/source/reference/command/dropIndexes.txt,manual,5,0,0,0,0,5, -499,https://www.mongodb.com/docs/manual/reference/command/dropRole/,manual/manual/source/reference/command/dropRole.txt,manual,2,0,0,0,0,2, -500,https://www.mongodb.com/docs/manual/reference/command/dropSearchIndex/,manual/manual/source/reference/command/dropSearchIndex.txt,manual,5,0,0,0,0,5, -501,https://www.mongodb.com/docs/manual/reference/command/dropUser/,manual/manual/source/reference/command/dropUser.txt,manual,2,0,0,0,0,2, -502,https://www.mongodb.com/docs/manual/reference/command/enableSharding/,manual/manual/source/reference/command/enableSharding.txt,manual,3,0,0,0,0,3, -503,https://www.mongodb.com/docs/manual/reference/command/endSessions/,manual/manual/source/reference/command/endSessions.txt,manual,2,0,0,0,0,2, -504,https://www.mongodb.com/docs/manual/reference/command/explain/,manual/manual/source/reference/command/explain.txt,manual,6,0,0,0,0,6, -505,https://www.mongodb.com/docs/manual/reference/command/filemd5/,manual/manual/source/reference/command/filemd5.txt,manual,1,0,0,0,0,1, -506,https://www.mongodb.com/docs/manual/reference/command/find/,manual/manual/source/reference/command/find.txt,manual,28,0,0,0,0,26, -507,https://www.mongodb.com/docs/manual/reference/command/findAndModify/,manual/manual/source/reference/command/findAndModify.txt,manual,56,0,0,0,0,54, -508,https://www.mongodb.com/docs/manual/reference/command/flushRouterConfig/,manual/manual/source/reference/command/flushRouterConfig.txt,manual,3,0,0,0,0,3, -509,https://www.mongodb.com/docs/manual/reference/command/fsync/,manual/manual/source/reference/command/fsync.txt,manual,7,0,0,0,0,6, -510,https://www.mongodb.com/docs/manual/reference/command/fsyncUnlock/,manual/manual/source/reference/command/fsyncUnlock.txt,manual,5,0,0,0,0,5, -511,https://www.mongodb.com/docs/manual/reference/command/getAuditConfig/,manual/manual/source/reference/command/getAuditConfig.txt,manual,4,0,0,0,0,4, -512,https://www.mongodb.com/docs/manual/reference/command/getClusterParameter/,manual/manual/source/reference/command/getClusterParameter.txt,manual,4,0,0,0,0,4, -513,https://www.mongodb.com/docs/manual/reference/command/getCmdLineOpts/,manual/manual/source/reference/command/getCmdLineOpts.txt,manual,2,0,0,0,0,2, -514,https://www.mongodb.com/docs/manual/reference/command/getDefaultRWConcern/,manual/manual/source/reference/command/getDefaultRWConcern.txt,manual,3,0,0,0,0,3, -515,https://www.mongodb.com/docs/manual/reference/command/getLastError/,manual/manual/source/reference/command/getLastError.txt,manual,0,0,0,0,0,0, -516,https://www.mongodb.com/docs/manual/reference/command/getLog/,manual/manual/source/reference/command/getLog.txt,manual,8,0,0,0,0,8, -517,https://www.mongodb.com/docs/manual/reference/command/getMore/,manual/manual/source/reference/command/getMore.txt,manual,10,0,0,0,0,10, -518,https://www.mongodb.com/docs/manual/reference/command/getParameter/,manual/manual/source/reference/command/getParameter.txt,manual,9,0,0,0,0,9, -519,https://www.mongodb.com/docs/manual/reference/command/getShardMap/,manual/manual/source/reference/command/getShardMap.txt,manual,2,0,0,0,0,1, -520,https://www.mongodb.com/docs/manual/reference/command/grantPrivilegesToRole/,manual/manual/source/reference/command/grantPrivilegesToRole.txt,manual,2,0,0,0,0,2, -521,https://www.mongodb.com/docs/manual/reference/command/grantRolesToRole/,manual/manual/source/reference/command/grantRolesToRole.txt,manual,4,0,0,0,0,4, -522,https://www.mongodb.com/docs/manual/reference/command/grantRolesToUser/,manual/manual/source/reference/command/grantRolesToUser.txt,manual,6,0,0,0,0,6, -523,https://www.mongodb.com/docs/manual/reference/command/hello/,manual/manual/source/reference/command/hello.txt,manual,9,0,0,0,0,9, -524,https://www.mongodb.com/docs/manual/reference/command/hostInfo/,manual/manual/source/reference/command/hostInfo.txt,manual,2,0,0,0,0,2, -525,https://www.mongodb.com/docs/manual/reference/command/insert/,manual/manual/source/reference/command/insert.txt,manual,19,0,0,0,0,19, -526,https://www.mongodb.com/docs/manual/reference/command/invalidateUserCache/,manual/manual/source/reference/command/invalidateUserCache.txt,manual,1,0,0,0,0,1, -527,https://www.mongodb.com/docs/manual/reference/command/isdbgrid/,manual/manual/source/reference/command/isdbgrid.txt,manual,3,0,0,0,0,3, -528,https://www.mongodb.com/docs/manual/reference/command/killAllSessions/,manual/manual/source/reference/command/killAllSessions.txt,manual,3,0,0,0,0,3, -529,https://www.mongodb.com/docs/manual/reference/command/killAllSessionsByPattern/,manual/manual/source/reference/command/killAllSessionsByPattern.txt,manual,3,0,0,0,0,3, -530,https://www.mongodb.com/docs/manual/reference/command/killCursors/,manual/manual/source/reference/command/killCursors.txt,manual,13,0,0,0,0,13, -531,https://www.mongodb.com/docs/manual/reference/command/killOp/,manual/manual/source/reference/command/killOp.txt,manual,3,0,0,0,0,3, -532,https://www.mongodb.com/docs/manual/reference/command/killSessions/,manual/manual/source/reference/command/killSessions.txt,manual,2,0,0,0,0,2, -533,https://www.mongodb.com/docs/manual/reference/command/listCollections/,manual/manual/source/reference/command/listCollections.txt,manual,26,0,0,0,0,25, -534,https://www.mongodb.com/docs/manual/reference/command/listCommands/,manual/manual/source/reference/command/listCommands.txt,manual,1,0,0,0,0,1, -535,https://www.mongodb.com/docs/manual/reference/command/listDatabases/,manual/manual/source/reference/command/listDatabases.txt,manual,22,0,0,0,0,20, -536,https://www.mongodb.com/docs/manual/reference/command/listIndexes/,manual/manual/source/reference/command/listIndexes.txt,manual,22,3,3,0,0,15, -537,https://www.mongodb.com/docs/manual/reference/command/listShards/,manual/manual/source/reference/command/listShards.txt,manual,3,0,0,0,0,3, -538,https://www.mongodb.com/docs/manual/reference/command/lockInfo/,manual/manual/source/reference/command/lockInfo.txt,manual,2,0,0,0,0,2, -539,https://www.mongodb.com/docs/manual/reference/command/logApplicationMessage/,manual/manual/source/reference/command/logApplicationMessage.txt,manual,1,0,0,0,0,1, -540,https://www.mongodb.com/docs/manual/reference/command/logRotate/,manual/manual/source/reference/command/logRotate.txt,manual,5,0,0,0,0,4, -541,https://www.mongodb.com/docs/manual/reference/command/logout/,manual/manual/source/reference/command/logout.txt,manual,3,0,0,0,0,3, -542,https://www.mongodb.com/docs/manual/reference/command/mapReduce/,manual/manual/source/reference/command/mapReduce.txt,manual,63,0,0,0,0,60, -543,https://www.mongodb.com/docs/manual/reference/command/mergeAllChunksOnShard/,manual/manual/source/reference/command/mergeAllChunksOnShard.txt,manual,3,0,0,0,0,3, -544,https://www.mongodb.com/docs/manual/reference/command/mergeChunks/,manual/manual/source/reference/command/mergeChunks.txt,manual,6,0,0,0,0,5, -545,https://www.mongodb.com/docs/manual/reference/command/moveChunk/,manual/manual/source/reference/command/moveChunk.txt,manual,4,0,0,0,0,3, -546,https://www.mongodb.com/docs/manual/reference/command/moveCollection/,manual/manual/source/reference/command/moveCollection.txt,manual,2,0,0,0,0,2, -547,https://www.mongodb.com/docs/manual/reference/command/movePrimary/,manual/manual/source/reference/command/movePrimary.txt,manual,2,0,0,0,0,2, -548,https://www.mongodb.com/docs/manual/reference/command/moveRange/,manual/manual/source/reference/command/moveRange.txt,manual,1,0,0,0,0,1, -549,https://www.mongodb.com/docs/manual/reference/command/nav-administration/,manual/manual/source/reference/command/nav-administration.txt,manual,0,0,0,0,0,0, -550,https://www.mongodb.com/docs/manual/reference/command/nav-atlas-search/,manual/manual/source/reference/command/nav-atlas-search.txt,manual,0,0,0,0,0,0, -551,https://www.mongodb.com/docs/manual/reference/command/nav-auditing/,manual/manual/source/reference/command/nav-auditing.txt,manual,0,0,0,0,0,0, -552,https://www.mongodb.com/docs/manual/reference/command/nav-authentication/,manual/manual/source/reference/command/nav-authentication.txt,manual,0,0,0,0,0,0, -553,https://www.mongodb.com/docs/manual/reference/command/nav-diagnostic/,manual/manual/source/reference/command/nav-diagnostic.txt,manual,0,0,0,0,0,0, -554,https://www.mongodb.com/docs/manual/reference/command/nav-plan-cache/,manual/manual/source/reference/command/nav-plan-cache.txt,manual,0,0,0,0,0,0, -555,https://www.mongodb.com/docs/manual/reference/command/nav-replication/,manual/manual/source/reference/command/nav-replication.txt,manual,0,0,0,0,0,0, -556,https://www.mongodb.com/docs/manual/reference/command/nav-role-management/,manual/manual/source/reference/command/nav-role-management.txt,manual,0,0,0,0,0,0, -557,https://www.mongodb.com/docs/manual/reference/command/nav-sessions/,manual/manual/source/reference/command/nav-sessions.txt,manual,0,0,0,0,0,0, -558,https://www.mongodb.com/docs/manual/reference/command/nav-sharding/,manual/manual/source/reference/command/nav-sharding.txt,manual,0,0,0,0,0,0, -559,https://www.mongodb.com/docs/manual/reference/command/nav-user-management/,manual/manual/source/reference/command/nav-user-management.txt,manual,0,0,0,0,0,0, -560,https://www.mongodb.com/docs/manual/reference/command/ping/,manual/manual/source/reference/command/ping.txt,manual,1,0,0,0,0,1, -561,https://www.mongodb.com/docs/manual/reference/command/planCacheClear/,manual/manual/source/reference/command/planCacheClear.txt,manual,4,0,0,0,0,4, -562,https://www.mongodb.com/docs/manual/reference/command/planCacheClearFilters/,manual/manual/source/reference/command/planCacheClearFilters.txt,manual,6,0,0,0,0,6, -563,https://www.mongodb.com/docs/manual/reference/command/planCacheListFilters/,manual/manual/source/reference/command/planCacheListFilters.txt,manual,3,0,0,0,0,2, -564,https://www.mongodb.com/docs/manual/reference/command/planCacheSetFilter/,manual/manual/source/reference/command/planCacheSetFilter.txt,manual,5,0,0,0,0,5, -565,https://www.mongodb.com/docs/manual/reference/command/profile/,manual/manual/source/reference/command/profile.txt,manual,4,0,0,0,0,4, -566,https://www.mongodb.com/docs/manual/reference/command/reIndex/,manual/manual/source/reference/command/reIndex.txt,manual,1,0,0,0,0,1, -567,https://www.mongodb.com/docs/manual/reference/command/refineCollectionShardKey/,manual/manual/source/reference/command/refineCollectionShardKey.txt,manual,9,0,0,0,0,9, -568,https://www.mongodb.com/docs/manual/reference/command/refreshSessions/,manual/manual/source/reference/command/refreshSessions.txt,manual,2,0,0,0,0,2, -569,https://www.mongodb.com/docs/manual/reference/command/removeQuerySettings/,manual/manual/source/reference/command/removeQuerySettings.txt,manual,8,0,0,0,0,8, -570,https://www.mongodb.com/docs/manual/reference/command/removeShard/,manual/manual/source/reference/command/removeShard.txt,manual,6,0,0,0,0,6, -571,https://www.mongodb.com/docs/manual/reference/command/removeShardFromZone/,manual/manual/source/reference/command/removeShardFromZone.txt,manual,2,0,0,0,0,2, -572,https://www.mongodb.com/docs/manual/reference/command/renameCollection/,manual/manual/source/reference/command/renameCollection.txt,manual,3,0,0,0,0,3, -573,https://www.mongodb.com/docs/manual/reference/command/replSetAbortPrimaryCatchUp/,manual/manual/source/reference/command/replSetAbortPrimaryCatchUp.txt,manual,1,0,0,0,0,1, -574,https://www.mongodb.com/docs/manual/reference/command/replSetFreeze/,manual/manual/source/reference/command/replSetFreeze.txt,manual,2,0,0,0,0,2, -575,https://www.mongodb.com/docs/manual/reference/command/replSetGetConfig/,manual/manual/source/reference/command/replSetGetConfig.txt,manual,3,0,0,0,0,3, -576,https://www.mongodb.com/docs/manual/reference/command/replSetGetStatus/,manual/manual/source/reference/command/replSetGetStatus.txt,manual,11,0,0,0,0,11, -577,https://www.mongodb.com/docs/manual/reference/command/replSetInitiate/,manual/manual/source/reference/command/replSetInitiate.txt,manual,5,0,0,0,0,3, -578,https://www.mongodb.com/docs/manual/reference/command/replSetMaintenance/,manual/manual/source/reference/command/replSetMaintenance.txt,manual,1,0,0,0,0,1, -579,https://www.mongodb.com/docs/manual/reference/command/replSetReconfig/,manual/manual/source/reference/command/replSetReconfig.txt,manual,2,0,0,0,0,2, -580,https://www.mongodb.com/docs/manual/reference/command/replSetResizeOplog/,manual/manual/source/reference/command/replSetResizeOplog.txt,manual,9,0,0,0,0,9, -581,https://www.mongodb.com/docs/manual/reference/command/replSetStepDown/,manual/manual/source/reference/command/replSetStepDown.txt,manual,4,0,0,0,0,4, -582,https://www.mongodb.com/docs/manual/reference/command/replSetSyncFrom/,manual/manual/source/reference/command/replSetSyncFrom.txt,manual,1,0,0,0,0,1, -583,https://www.mongodb.com/docs/manual/reference/command/reshardCollection/,manual/manual/source/reference/command/reshardCollection.txt,manual,6,0,0,0,0,6, -584,https://www.mongodb.com/docs/manual/reference/command/revokePrivilegesFromRole/,manual/manual/source/reference/command/revokePrivilegesFromRole.txt,manual,5,0,0,0,0,5, -585,https://www.mongodb.com/docs/manual/reference/command/revokeRolesFromRole/,manual/manual/source/reference/command/revokeRolesFromRole.txt,manual,6,0,0,0,0,6, -586,https://www.mongodb.com/docs/manual/reference/command/revokeRolesFromUser/,manual/manual/source/reference/command/revokeRolesFromUser.txt,manual,6,0,0,0,0,6, -587,https://www.mongodb.com/docs/manual/reference/command/rolesInfo/,manual/manual/source/reference/command/rolesInfo.txt,manual,16,0,0,0,0,16, -588,https://www.mongodb.com/docs/manual/reference/command/rotateCertificates/,manual/manual/source/reference/command/rotateCertificates.txt,manual,3,0,0,0,0,3, -589,https://www.mongodb.com/docs/manual/reference/command/serverStatus/,manual/manual/source/reference/command/serverStatus.txt,manual,75,0,0,0,0,69, -590,https://www.mongodb.com/docs/manual/reference/command/setAllowMigrations/,manual/manual/source/reference/command/setAllowMigrations.txt,manual,2,0,0,0,0,2, -591,https://www.mongodb.com/docs/manual/reference/command/setAuditConfig/,manual/manual/source/reference/command/setAuditConfig.txt,manual,6,0,0,0,0,6, -592,https://www.mongodb.com/docs/manual/reference/command/setClusterParameter/,manual/manual/source/reference/command/setClusterParameter.txt,manual,1,0,0,0,0,1, -593,https://www.mongodb.com/docs/manual/reference/command/setDefaultRWConcern/,manual/manual/source/reference/command/setDefaultRWConcern.txt,manual,11,0,0,0,0,11, -594,https://www.mongodb.com/docs/manual/reference/command/setFeatureCompatibilityVersion/,manual/manual/source/reference/command/setFeatureCompatibilityVersion.txt,manual,9,0,0,0,0,9, -595,https://www.mongodb.com/docs/manual/reference/command/setIndexCommitQuorum/,manual/manual/source/reference/command/setIndexCommitQuorum.txt,manual,16,0,0,0,0,15, -596,https://www.mongodb.com/docs/manual/reference/command/setParameter/,manual/manual/source/reference/command/setParameter.txt,manual,1,0,0,0,0,1, -597,https://www.mongodb.com/docs/manual/reference/command/setQuerySettings/,manual/manual/source/reference/command/setQuerySettings.txt,manual,12,0,0,0,0,12, -598,https://www.mongodb.com/docs/manual/reference/command/setUserWriteBlockMode/,manual/manual/source/reference/command/setUserWriteBlockMode.txt,manual,6,0,0,0,0,5, -599,https://www.mongodb.com/docs/manual/reference/command/shardCollection/,manual/manual/source/reference/command/shardCollection.txt,manual,2,0,0,0,0,2, -600,https://www.mongodb.com/docs/manual/reference/command/shardConnPoolStats/,manual/manual/source/reference/command/shardConnPoolStats.txt,manual,2,0,0,0,0,2, -601,https://www.mongodb.com/docs/manual/reference/command/shardingState/,manual/manual/source/reference/command/shardingState.txt,manual,4,0,0,0,0,4, -602,https://www.mongodb.com/docs/manual/reference/command/shutdown/,manual/manual/source/reference/command/shutdown.txt,manual,4,0,0,0,0,4, -603,https://www.mongodb.com/docs/manual/reference/command/split/,manual/manual/source/reference/command/split.txt,manual,8,0,0,0,0,7, -604,https://www.mongodb.com/docs/manual/reference/command/startSession/,manual/manual/source/reference/command/startSession.txt,manual,3,0,0,0,0,3, -605,https://www.mongodb.com/docs/manual/reference/command/top/,manual/manual/source/reference/command/top.txt,manual,2,0,0,0,0,2, -606,https://www.mongodb.com/docs/manual/reference/command/transitionFromDedicatedConfigServer/,manual/manual/source/reference/command/transitionFromDedicatedConfigServer.txt,manual,4,0,0,0,0,4, -607,https://www.mongodb.com/docs/manual/reference/command/transitionToDedicatedConfigServer/,manual/manual/source/reference/command/transitionToDedicatedConfigServer.txt,manual,4,0,0,0,0,4, -608,https://www.mongodb.com/docs/manual/reference/command/unsetSharding/,manual/manual/source/reference/command/unsetSharding.txt,manual,0,0,0,0,0,0, -609,https://www.mongodb.com/docs/manual/reference/command/unshardCollection/,manual/manual/source/reference/command/unshardCollection.txt,manual,3,0,0,0,0,3, -610,https://www.mongodb.com/docs/manual/reference/command/update/,manual/manual/source/reference/command/update.txt,manual,48,0,0,16,0,46, -611,https://www.mongodb.com/docs/manual/reference/command/updateRole/,manual/manual/source/reference/command/updateRole.txt,manual,4,0,0,0,0,4, -612,https://www.mongodb.com/docs/manual/reference/command/updateSearchIndex/,manual/manual/source/reference/command/updateSearchIndex.txt,manual,6,0,0,0,0,6, -613,https://www.mongodb.com/docs/manual/reference/command/updateUser/,manual/manual/source/reference/command/updateUser.txt,manual,8,0,0,0,0,8, -614,https://www.mongodb.com/docs/manual/reference/command/updateZoneKeyRange/,manual/manual/source/reference/command/updateZoneKeyRange.txt,manual,5,0,0,0,0,5, -615,https://www.mongodb.com/docs/manual/reference/command/usersInfo/,manual/manual/source/reference/command/usersInfo.txt,manual,12,0,0,0,0,12, -616,https://www.mongodb.com/docs/manual/reference/command/validate/,manual/manual/source/reference/command/validate.txt,manual,26,0,0,0,0,25, -617,https://www.mongodb.com/docs/manual/reference/command/validateDBMetadata/,manual/manual/source/reference/command/validateDBMetadata.txt,manual,10,0,0,0,0,10, -618,https://www.mongodb.com/docs/manual/reference/command/whatsmyuri/,manual/manual/source/reference/command/whatsmyuri.txt,manual,0,0,0,0,0,0, -619,https://www.mongodb.com/docs/manual/reference/config-database/,manual/manual/source/reference/config-database.txt,manual,14,0,0,0,0,14, -620,https://www.mongodb.com/docs/manual/reference/configuration-file-settings-command-line-options-mapping/,manual/manual/source/reference/configuration-file-settings-command-line-options-mapping.txt,manual,0,0,0,0,0,0, -621,https://www.mongodb.com/docs/manual/reference/configuration-options/,manual/manual/source/reference/configuration-options.txt,manual,70,0,0,0,0,30, -622,https://www.mongodb.com/docs/manual/reference/connection-string-formats/,manual/manual/source/reference/connection-string-formats.txt,manual,10,0,0,0,0,1, -623,https://www.mongodb.com/docs/manual/reference/connection-string-options/,manual/manual/source/reference/connection-string-options.txt,manual,24,0,0,0,0,14, -624,https://www.mongodb.com/docs/manual/reference/connection-string/,manual/manual/source/reference/connection-string.txt,manual,24,0,0,0,0,20, -625,https://www.mongodb.com/docs/manual/reference/database-profiler/,manual/manual/source/reference/database-profiler.txt,manual,6,0,0,0,0,6, -626,https://www.mongodb.com/docs/manual/reference/database-references/,manual/manual/source/reference/database-references.txt,manual,5,0,0,0,0,3, -627,https://www.mongodb.com/docs/manual/reference/database-users/,manual/manual/source/reference/database-users.txt,manual,0,0,0,0,0,0, -628,https://www.mongodb.com/docs/manual/reference/ddl-operations/,manual/manual/source/reference/ddl-operations.txt,manual,2,0,0,0,0,2, -629,https://www.mongodb.com/docs/manual/reference/default-mongodb-port/,manual/manual/source/reference/default-mongodb-port.txt,manual,0,0,0,0,0,0, -630,https://www.mongodb.com/docs/manual/reference/delete-methods/,manual/manual/source/reference/delete-methods.txt,manual,0,0,0,0,0,0, -631,https://www.mongodb.com/docs/manual/reference/error-codes/,manual/manual/source/reference/error-codes.txt,manual,0,0,0,0,0,0, -632,https://www.mongodb.com/docs/manual/reference/exit-codes/,manual/manual/source/reference/exit-codes.txt,manual,0,0,0,0,0,0, -633,https://www.mongodb.com/docs/manual/reference/expansion-directives/,manual/manual/source/reference/expansion-directives.txt,manual,15,0,0,0,0,3, -634,https://www.mongodb.com/docs/manual/reference/explain-results/,manual/manual/source/reference/explain-results.txt,manual,11,0,0,0,0,10, -635,https://www.mongodb.com/docs/manual/reference/geojson/,manual/manual/source/reference/geojson.txt,manual,10,0,0,0,0,10, -636,https://www.mongodb.com/docs/manual/reference/glossary/,manual/manual/source/reference/glossary.txt,manual,0,0,0,0,0,0, -637,https://www.mongodb.com/docs/manual/reference/inconsistency-type/,manual/manual/source/reference/inconsistency-type.txt,manual,0,0,0,0,0,0, -638,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CollectionAuxiliaryMetadataMismatch/,manual/manual/source/reference/inconsistency-type/CollectionAuxiliaryMetadataMismatch.txt,manual,3,0,0,0,0,1, -639,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CollectionOptionsMismatch/,manual/manual/source/reference/inconsistency-type/CollectionOptionsMismatch.txt,manual,3,0,0,0,0,1, -640,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CollectionUUIDMismatch/,manual/manual/source/reference/inconsistency-type/CollectionUUIDMismatch.txt,manual,3,0,0,0,0,1, -641,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CorruptedChunkShardKey/,manual/manual/source/reference/inconsistency-type/CorruptedChunkShardKey.txt,manual,3,0,0,0,0,1, -642,https://www.mongodb.com/docs/manual/reference/inconsistency-type/CorruptedZoneShardKey/,manual/manual/source/reference/inconsistency-type/CorruptedZoneShardKey.txt,manual,3,0,0,0,0,1, -643,https://www.mongodb.com/docs/manual/reference/inconsistency-type/HiddenShardedCollection/,manual/manual/source/reference/inconsistency-type/HiddenShardedCollection.txt,manual,3,0,0,0,0,1, -644,https://www.mongodb.com/docs/manual/reference/inconsistency-type/InconsistentIndex/,manual/manual/source/reference/inconsistency-type/InconsistentIndex.txt,manual,3,0,0,0,0,1, -645,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MisplacedCollection/,manual/manual/source/reference/inconsistency-type/MisplacedCollection.txt,manual,3,0,0,0,0,1, -646,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MissingLocalCollection/,manual/manual/source/reference/inconsistency-type/MissingLocalCollection.txt,manual,3,0,0,0,0,1, -647,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MissingRoutingTable/,manual/manual/source/reference/inconsistency-type/MissingRoutingTable.txt,manual,3,0,0,0,0,1, -648,https://www.mongodb.com/docs/manual/reference/inconsistency-type/MissingShardKeyIndex/,manual/manual/source/reference/inconsistency-type/MissingShardKeyIndex.txt,manual,3,0,0,0,0,1, -649,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RangeDeletionMissingShardKeyIndex/,manual/manual/source/reference/inconsistency-type/RangeDeletionMissingShardKeyIndex.txt,manual,3,0,0,0,0,1, -650,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableMissingMaxKey/,manual/manual/source/reference/inconsistency-type/RoutingTableMissingMaxKey.txt,manual,3,0,0,0,0,1, -651,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableMissingMinKey/,manual/manual/source/reference/inconsistency-type/RoutingTableMissingMinKey.txt,manual,3,0,0,0,0,1, -652,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableRangeGap/,manual/manual/source/reference/inconsistency-type/RoutingTableRangeGap.txt,manual,3,0,0,0,0,1, -653,https://www.mongodb.com/docs/manual/reference/inconsistency-type/RoutingTableRangeOverlap/,manual/manual/source/reference/inconsistency-type/RoutingTableRangeOverlap.txt,manual,3,0,0,0,0,1, -654,https://www.mongodb.com/docs/manual/reference/inconsistency-type/ShardCatalogCacheCollectionMetadataMismatch/,manual/manual/source/reference/inconsistency-type/ShardCatalogCacheCollectionMetadataMismatch.txt,manual,3,0,0,0,0,1, -655,https://www.mongodb.com/docs/manual/reference/inconsistency-type/TrackedUnshardedCollectionHasInvalidKey/,manual/manual/source/reference/inconsistency-type/TrackedUnshardedCollectionHasInvalidKey.txt,manual,3,0,0,0,0,1, -656,https://www.mongodb.com/docs/manual/reference/inconsistency-type/TrackedUnshardedCollectionHasMultipleChunks/,manual/manual/source/reference/inconsistency-type/TrackedUnshardedCollectionHasMultipleChunks.txt,manual,3,0,0,0,0,1, -657,https://www.mongodb.com/docs/manual/reference/inconsistency-type/ZonesRangeOverlap/,manual/manual/source/reference/inconsistency-type/ZonesRangeOverlap.txt,manual,3,0,0,0,0,1, -658,https://www.mongodb.com/docs/manual/reference/indexes/,manual/manual/source/reference/indexes.txt,manual,0,0,0,0,0,0, -659,https://www.mongodb.com/docs/manual/reference/insert-methods/,manual/manual/source/reference/insert-methods.txt,manual,0,0,0,0,0,0, -660,https://www.mongodb.com/docs/manual/reference/installation-ubuntu-community-troubleshooting/,manual/manual/source/reference/installation-ubuntu-community-troubleshooting.txt,manual,16,0,0,0,0,0, -661,https://www.mongodb.com/docs/manual/reference/limits/,manual/manual/source/reference/limits.txt,manual,37,0,0,0,0,33, -662,https://www.mongodb.com/docs/manual/reference/local-database/,manual/manual/source/reference/local-database.txt,manual,1,0,0,0,0,1, -663,https://www.mongodb.com/docs/manual/reference/log-messages/,manual/manual/source/reference/log-messages.txt,manual,47,0,0,0,0,47, -664,https://www.mongodb.com/docs/manual/reference/map-reduce-to-aggregation-pipeline/,manual/manual/source/reference/map-reduce-to-aggregation-pipeline.txt,manual,13,0,0,0,0,13, -665,https://www.mongodb.com/docs/manual/reference/method/,manual/manual/source/reference/method.txt,manual,18,0,0,0,0,17, -666,https://www.mongodb.com/docs/manual/reference/method/BSONRegExp/,manual/manual/source/reference/method/BSONRegExp.txt,manual,6,1,1,0,0,6, -667,https://www.mongodb.com/docs/manual/reference/method/BinData/,manual/manual/source/reference/method/BinData.txt,manual,7,0,0,0,0,7, -668,https://www.mongodb.com/docs/manual/reference/method/Binary.createFromBase64/,manual/manual/source/reference/method/Binary.createFromBase64.txt,manual,3,0,0,0,0,3, -669,https://www.mongodb.com/docs/manual/reference/method/Binary.createFromHexString/,manual/manual/source/reference/method/Binary.createFromHexString.txt,manual,3,0,0,0,0,3, -670,https://www.mongodb.com/docs/manual/reference/method/Bulk.execute/,manual/manual/source/reference/method/Bulk.execute.txt,manual,12,0,0,0,0,12, -671,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.arrayFilters/,manual/manual/source/reference/method/Bulk.find.arrayFilters.txt,manual,4,0,0,0,0,4, -672,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.collation/,manual/manual/source/reference/method/Bulk.find.collation.txt,manual,12,1,1,0,0,10, -673,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.delete/,manual/manual/source/reference/method/Bulk.find.delete.txt,manual,3,0,0,0,0,3, -674,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.deleteOne/,manual/manual/source/reference/method/Bulk.find.deleteOne.txt,manual,3,0,0,0,0,3, -675,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.hint/,manual/manual/source/reference/method/Bulk.find.hint.txt,manual,4,0,0,0,0,4, -676,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.remove/,manual/manual/source/reference/method/Bulk.find.remove.txt,manual,0,0,0,0,0,0, -677,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.removeOne/,manual/manual/source/reference/method/Bulk.find.removeOne.txt,manual,0,0,0,0,0,0, -678,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.replaceOne/,manual/manual/source/reference/method/Bulk.find.replaceOne.txt,manual,1,0,0,0,0,1, -679,https://www.mongodb.com/docs/manual/reference/method/Bulk.find/,manual/manual/source/reference/method/Bulk.find.txt,manual,1,0,0,0,0,1, -680,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.update/,manual/manual/source/reference/method/Bulk.find.update.txt,manual,2,0,0,0,0,2, -681,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.updateOne/,manual/manual/source/reference/method/Bulk.find.updateOne.txt,manual,3,0,0,0,0,3, -682,https://www.mongodb.com/docs/manual/reference/method/Bulk.find.upsert/,manual/manual/source/reference/method/Bulk.find.upsert.txt,manual,13,0,0,0,0,13, -683,https://www.mongodb.com/docs/manual/reference/method/Bulk.getOperations/,manual/manual/source/reference/method/Bulk.getOperations.txt,manual,2,0,0,0,0,2, -684,https://www.mongodb.com/docs/manual/reference/method/Bulk.insert/,manual/manual/source/reference/method/Bulk.insert.txt,manual,1,0,0,0,0,1, -685,https://www.mongodb.com/docs/manual/reference/method/Bulk.toString/,manual/manual/source/reference/method/Bulk.toString.txt,manual,2,0,0,0,0,2, -686,https://www.mongodb.com/docs/manual/reference/method/Bulk.tojson/,manual/manual/source/reference/method/Bulk.tojson.txt,manual,2,0,0,0,0,2, -687,https://www.mongodb.com/docs/manual/reference/method/Bulk/,manual/manual/source/reference/method/Bulk.txt,manual,8,0,0,0,0,8, -688,https://www.mongodb.com/docs/manual/reference/method/BulkWriteResult/,manual/manual/source/reference/method/BulkWriteResult.txt,manual,0,0,0,0,0,0, -689,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.createEncryptedCollection/,manual/manual/source/reference/method/ClientEncryption.createEncryptedCollection.txt,manual,8,0,0,0,0,8, -690,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.decrypt/,manual/manual/source/reference/method/ClientEncryption.decrypt.txt,manual,8,0,0,0,0,8, -691,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.encrypt/,manual/manual/source/reference/method/ClientEncryption.encrypt.txt,manual,15,0,0,0,0,15, -692,https://www.mongodb.com/docs/manual/reference/method/ClientEncryption.encryptExpression/,manual/manual/source/reference/method/ClientEncryption.encryptExpression.txt,manual,2,0,0,0,0,2, -693,https://www.mongodb.com/docs/manual/reference/method/Date/,manual/manual/source/reference/method/Date.txt,manual,6,0,0,0,0,6, -694,https://www.mongodb.com/docs/manual/reference/method/HexData/,manual/manual/source/reference/method/HexData.txt,manual,3,0,0,0,0,3, -695,https://www.mongodb.com/docs/manual/reference/method/KeyVault.addKeyAlternateName/,manual/manual/source/reference/method/KeyVault.addKeyAlternateName.txt,manual,8,0,0,0,0,6, -696,https://www.mongodb.com/docs/manual/reference/method/KeyVault.addKeyName/,manual/manual/source/reference/method/KeyVault.addKeyName.txt,manual,0,0,0,0,0,0, -697,https://www.mongodb.com/docs/manual/reference/method/KeyVault.createDataKey/,manual/manual/source/reference/method/KeyVault.createDataKey.txt,manual,0,0,0,0,0,0, -698,https://www.mongodb.com/docs/manual/reference/method/KeyVault.createKey/,manual/manual/source/reference/method/KeyVault.createKey.txt,manual,7,0,0,0,0,7, -699,https://www.mongodb.com/docs/manual/reference/method/KeyVault.deleteKey/,manual/manual/source/reference/method/KeyVault.deleteKey.txt,manual,8,0,0,0,0,6, -700,https://www.mongodb.com/docs/manual/reference/method/KeyVault.getKey/,manual/manual/source/reference/method/KeyVault.getKey.txt,manual,8,0,0,0,0,6, -701,https://www.mongodb.com/docs/manual/reference/method/KeyVault.getKeyByAltName/,manual/manual/source/reference/method/KeyVault.getKeyByAltName.txt,manual,8,0,0,0,0,6, -702,https://www.mongodb.com/docs/manual/reference/method/KeyVault.getKeys/,manual/manual/source/reference/method/KeyVault.getKeys.txt,manual,8,0,0,0,0,6, -703,https://www.mongodb.com/docs/manual/reference/method/KeyVault.removeKeyAltName/,manual/manual/source/reference/method/KeyVault.removeKeyAltName.txt,manual,0,0,0,0,0,0, -704,https://www.mongodb.com/docs/manual/reference/method/KeyVault.removeKeyAlternateName/,manual/manual/source/reference/method/KeyVault.removeKeyAlternateName.txt,manual,8,0,0,0,0,6, -705,https://www.mongodb.com/docs/manual/reference/method/KeyVault.rewrapManyDataKey/,manual/manual/source/reference/method/KeyVault.rewrapManyDataKey.txt,manual,10,0,0,0,0,9, -706,https://www.mongodb.com/docs/manual/reference/method/Mongo.bulkWrite/,manual/manual/source/reference/method/Mongo.bulkWrite.txt,manual,10,0,0,2,0,10, -707,https://www.mongodb.com/docs/manual/reference/method/Mongo.getDB/,manual/manual/source/reference/method/Mongo.getDB.txt,manual,1,0,0,0,0,1, -708,https://www.mongodb.com/docs/manual/reference/method/Mongo.getDBNames/,manual/manual/source/reference/method/Mongo.getDBNames.txt,manual,4,0,0,0,0,4, -709,https://www.mongodb.com/docs/manual/reference/method/Mongo.getDBs/,manual/manual/source/reference/method/Mongo.getDBs.txt,manual,2,0,0,0,0,2, -710,https://www.mongodb.com/docs/manual/reference/method/Mongo.getReadPrefMode/,manual/manual/source/reference/method/Mongo.getReadPrefMode.txt,manual,2,0,0,0,0,2, -711,https://www.mongodb.com/docs/manual/reference/method/Mongo.getReadPrefTagSet/,manual/manual/source/reference/method/Mongo.getReadPrefTagSet.txt,manual,2,0,0,0,0,2, -712,https://www.mongodb.com/docs/manual/reference/method/Mongo.getURI/,manual/manual/source/reference/method/Mongo.getURI.txt,manual,4,1,1,0,0,4, -713,https://www.mongodb.com/docs/manual/reference/method/Mongo.getWriteConcern/,manual/manual/source/reference/method/Mongo.getWriteConcern.txt,manual,4,0,0,0,0,4, -714,https://www.mongodb.com/docs/manual/reference/method/Mongo.setCausalConsistency/,manual/manual/source/reference/method/Mongo.setCausalConsistency.txt,manual,4,0,0,0,0,4, -715,https://www.mongodb.com/docs/manual/reference/method/Mongo.setReadPref/,manual/manual/source/reference/method/Mongo.setReadPref.txt,manual,2,0,0,0,0,2, -716,https://www.mongodb.com/docs/manual/reference/method/Mongo.setWriteConcern/,manual/manual/source/reference/method/Mongo.setWriteConcern.txt,manual,2,0,0,0,0,2, -717,https://www.mongodb.com/docs/manual/reference/method/Mongo.startSession/,manual/manual/source/reference/method/Mongo.startSession.txt,manual,2,0,0,0,0,2, -718,https://www.mongodb.com/docs/manual/reference/method/Mongo/,manual/manual/source/reference/method/Mongo.txt,manual,21,0,0,0,0,15, -719,https://www.mongodb.com/docs/manual/reference/method/Mongo.watch/,manual/manual/source/reference/method/Mongo.watch.txt,manual,9,0,0,0,0,9, -720,https://www.mongodb.com/docs/manual/reference/method/ObjectId.createFromBase64/,manual/manual/source/reference/method/ObjectId.createFromBase64.txt,manual,3,0,0,0,0,3, -721,https://www.mongodb.com/docs/manual/reference/method/ObjectId.createFromHexString/,manual/manual/source/reference/method/ObjectId.createFromHexString.txt,manual,3,0,0,0,0,3, -722,https://www.mongodb.com/docs/manual/reference/method/ObjectId.getTimestamp/,manual/manual/source/reference/method/ObjectId.getTimestamp.txt,manual,2,0,0,0,0,2, -723,https://www.mongodb.com/docs/manual/reference/method/ObjectId.toString/,manual/manual/source/reference/method/ObjectId.toString.txt,manual,4,0,0,0,0,4, -724,https://www.mongodb.com/docs/manual/reference/method/ObjectId/,manual/manual/source/reference/method/ObjectId.txt,manual,11,1,1,0,0,10, -725,https://www.mongodb.com/docs/manual/reference/method/PlanCache.clear/,manual/manual/source/reference/method/PlanCache.clear.txt,manual,2,0,0,0,0,2, -726,https://www.mongodb.com/docs/manual/reference/method/PlanCache.clearPlansByQuery/,manual/manual/source/reference/method/PlanCache.clearPlansByQuery.txt,manual,3,0,0,0,0,3, -727,https://www.mongodb.com/docs/manual/reference/method/PlanCache.help/,manual/manual/source/reference/method/PlanCache.help.txt,manual,1,0,0,0,0,1, -728,https://www.mongodb.com/docs/manual/reference/method/PlanCache.list/,manual/manual/source/reference/method/PlanCache.list.txt,manual,14,0,0,0,0,14, -729,https://www.mongodb.com/docs/manual/reference/method/Session.abortTransaction/,manual/manual/source/reference/method/Session.abortTransaction.txt,manual,4,0,0,0,0,4, -730,https://www.mongodb.com/docs/manual/reference/method/Session.commitTransaction/,manual/manual/source/reference/method/Session.commitTransaction.txt,manual,11,0,0,0,0,11, -731,https://www.mongodb.com/docs/manual/reference/method/Session.startTransaction/,manual/manual/source/reference/method/Session.startTransaction.txt,manual,12,0,0,0,0,12, -732,https://www.mongodb.com/docs/manual/reference/method/Session/,manual/manual/source/reference/method/Session.txt,manual,2,0,0,0,0,2, -733,https://www.mongodb.com/docs/manual/reference/method/Session.withTransaction/,manual/manual/source/reference/method/Session.withTransaction.txt,manual,3,0,0,0,0,3, -734,https://www.mongodb.com/docs/manual/reference/method/SessionOptions/,manual/manual/source/reference/method/SessionOptions.txt,manual,0,0,0,0,0,0, -735,https://www.mongodb.com/docs/manual/reference/method/UUID/,manual/manual/source/reference/method/UUID.txt,manual,5,0,0,0,0,5, -736,https://www.mongodb.com/docs/manual/reference/method/WriteResult/,manual/manual/source/reference/method/WriteResult.txt,manual,0,0,0,0,0,0, -737,https://www.mongodb.com/docs/manual/reference/method/connect/,manual/manual/source/reference/method/connect.txt,manual,1,0,0,0,0,1, -738,https://www.mongodb.com/docs/manual/reference/method/convertShardKeyToHashed/,manual/manual/source/reference/method/convertShardKeyToHashed.txt,manual,3,0,0,0,0,3, -739,https://www.mongodb.com/docs/manual/reference/method/cursor.addOption/,manual/manual/source/reference/method/cursor.addOption.txt,manual,1,0,0,0,0,1, -740,https://www.mongodb.com/docs/manual/reference/method/cursor.allowDiskUse/,manual/manual/source/reference/method/cursor.allowDiskUse.txt,manual,3,0,0,0,0,2, -741,https://www.mongodb.com/docs/manual/reference/method/cursor.batchSize/,manual/manual/source/reference/method/cursor.batchSize.txt,manual,1,0,0,0,0,1, -742,https://www.mongodb.com/docs/manual/reference/method/cursor.close/,manual/manual/source/reference/method/cursor.close.txt,manual,1,0,0,0,0,1, -743,https://www.mongodb.com/docs/manual/reference/method/cursor.collation/,manual/manual/source/reference/method/cursor.collation.txt,manual,14,0,0,0,0,12, -744,https://www.mongodb.com/docs/manual/reference/method/cursor.comment/,manual/manual/source/reference/method/cursor.comment.txt,manual,6,0,0,0,0,6, -745,https://www.mongodb.com/docs/manual/reference/method/cursor.count/,manual/manual/source/reference/method/cursor.count.txt,manual,8,0,0,0,0,8, -746,https://www.mongodb.com/docs/manual/reference/method/cursor.disableBlockWarnings/,manual/manual/source/reference/method/cursor.disableBlockWarnings.txt,manual,2,0,0,0,0,2, -747,https://www.mongodb.com/docs/manual/reference/method/cursor.explain/,manual/manual/source/reference/method/cursor.explain.txt,manual,2,0,0,0,0,2, -748,https://www.mongodb.com/docs/manual/reference/method/cursor.forEach/,manual/manual/source/reference/method/cursor.forEach.txt,manual,5,0,0,0,0,1, -749,https://www.mongodb.com/docs/manual/reference/method/cursor.hasNext/,manual/manual/source/reference/method/cursor.hasNext.txt,manual,0,0,0,0,0,0, -750,https://www.mongodb.com/docs/manual/reference/method/cursor.hint/,manual/manual/source/reference/method/cursor.hint.txt,manual,4,0,0,0,0,4, -751,https://www.mongodb.com/docs/manual/reference/method/cursor.isClosed/,manual/manual/source/reference/method/cursor.isClosed.txt,manual,0,0,0,0,0,0, -752,https://www.mongodb.com/docs/manual/reference/method/cursor.isExhausted/,manual/manual/source/reference/method/cursor.isExhausted.txt,manual,10,0,0,0,0,10, -753,https://www.mongodb.com/docs/manual/reference/method/cursor.itcount/,manual/manual/source/reference/method/cursor.itcount.txt,manual,1,0,0,0,0,1, -754,https://www.mongodb.com/docs/manual/reference/method/cursor.limit/,manual/manual/source/reference/method/cursor.limit.txt,manual,2,0,0,0,0,2, -755,https://www.mongodb.com/docs/manual/reference/method/cursor.map/,manual/manual/source/reference/method/cursor.map.txt,manual,4,0,0,0,0,4, -756,https://www.mongodb.com/docs/manual/reference/method/cursor.max/,manual/manual/source/reference/method/cursor.max.txt,manual,8,0,0,0,0,8, -757,https://www.mongodb.com/docs/manual/reference/method/cursor.maxAwaitTimeMS/,manual/manual/source/reference/method/cursor.maxAwaitTimeMS.txt,manual,2,0,0,0,0,2, -758,https://www.mongodb.com/docs/manual/reference/method/cursor.maxTimeMS/,manual/manual/source/reference/method/cursor.maxTimeMS.txt,manual,3,0,0,0,0,3, -759,https://www.mongodb.com/docs/manual/reference/method/cursor.min/,manual/manual/source/reference/method/cursor.min.txt,manual,8,0,0,0,0,8, -760,https://www.mongodb.com/docs/manual/reference/method/cursor.next/,manual/manual/source/reference/method/cursor.next.txt,manual,0,0,0,0,0,0, -761,https://www.mongodb.com/docs/manual/reference/method/cursor.noCursorTimeout/,manual/manual/source/reference/method/cursor.noCursorTimeout.txt,manual,2,0,0,0,0,2, -762,https://www.mongodb.com/docs/manual/reference/method/cursor.objsLeftInBatch/,manual/manual/source/reference/method/cursor.objsLeftInBatch.txt,manual,0,0,0,0,0,0, -763,https://www.mongodb.com/docs/manual/reference/method/cursor.pretty/,manual/manual/source/reference/method/cursor.pretty.txt,manual,4,0,0,0,0,4, -764,https://www.mongodb.com/docs/manual/reference/method/cursor.readConcern/,manual/manual/source/reference/method/cursor.readConcern.txt,manual,2,0,0,0,0,2, -765,https://www.mongodb.com/docs/manual/reference/method/cursor.readPref/,manual/manual/source/reference/method/cursor.readPref.txt,manual,2,0,0,0,0,2, -766,https://www.mongodb.com/docs/manual/reference/method/cursor.returnKey/,manual/manual/source/reference/method/cursor.returnKey.txt,manual,5,0,0,0,0,5, -767,https://www.mongodb.com/docs/manual/reference/method/cursor.showRecordId/,manual/manual/source/reference/method/cursor.showRecordId.txt,manual,4,0,0,0,0,4, -768,https://www.mongodb.com/docs/manual/reference/method/cursor.size/,manual/manual/source/reference/method/cursor.size.txt,manual,0,0,0,0,0,0, -769,https://www.mongodb.com/docs/manual/reference/method/cursor.skip/,manual/manual/source/reference/method/cursor.skip.txt,manual,6,0,0,0,0,6, -770,https://www.mongodb.com/docs/manual/reference/method/cursor.sort/,manual/manual/source/reference/method/cursor.sort.txt,manual,17,0,0,0,0,17, -771,https://www.mongodb.com/docs/manual/reference/method/cursor.tailable/,manual/manual/source/reference/method/cursor.tailable.txt,manual,1,0,0,0,0,1, -772,https://www.mongodb.com/docs/manual/reference/method/cursor.toArray/,manual/manual/source/reference/method/cursor.toArray.txt,manual,1,0,0,0,0,1, -773,https://www.mongodb.com/docs/manual/reference/method/cursor.tryNext/,manual/manual/source/reference/method/cursor.tryNext.txt,manual,0,0,0,0,0,0, -774,https://www.mongodb.com/docs/manual/reference/method/db.adminCommand/,manual/manual/source/reference/method/db.adminCommand.txt,manual,6,0,0,0,0,6, -775,https://www.mongodb.com/docs/manual/reference/method/db.aggregate/,manual/manual/source/reference/method/db.aggregate.txt,manual,13,0,0,0,0,11, -776,https://www.mongodb.com/docs/manual/reference/method/db.auth/,manual/manual/source/reference/method/db.auth.txt,manual,22,0,0,0,0,21, -777,https://www.mongodb.com/docs/manual/reference/method/db.changeUserPassword/,manual/manual/source/reference/method/db.changeUserPassword.txt,manual,4,0,0,0,0,4, -778,https://www.mongodb.com/docs/manual/reference/method/db.checkMetadataConsistency/,manual/manual/source/reference/method/db.checkMetadataConsistency.txt,manual,5,2,2,0,0,3, -779,https://www.mongodb.com/docs/manual/reference/method/db.collection.aggregate/,manual/manual/source/reference/method/db.collection.aggregate.txt,manual,38,1,1,0,0,36, -780,https://www.mongodb.com/docs/manual/reference/method/db.collection.analyzeShardKey/,manual/manual/source/reference/method/db.collection.analyzeShardKey.txt,manual,10,0,0,0,0,7, -781,https://www.mongodb.com/docs/manual/reference/method/db.collection.bulkWrite/,manual/manual/source/reference/method/db.collection.bulkWrite.txt,manual,24,0,0,2,0,23, -782,https://www.mongodb.com/docs/manual/reference/method/db.collection.checkMetadataConsistency/,manual/manual/source/reference/method/db.collection.checkMetadataConsistency.txt,manual,3,1,1,0,0,2, -783,https://www.mongodb.com/docs/manual/reference/method/db.collection.compactStructuredEncryptionData/,manual/manual/source/reference/method/db.collection.compactStructuredEncryptionData.txt,manual,0,0,0,0,0,0, -784,https://www.mongodb.com/docs/manual/reference/method/db.collection.configureQueryAnalyzer/,manual/manual/source/reference/method/db.collection.configureQueryAnalyzer.txt,manual,1,0,0,0,0,1, -785,https://www.mongodb.com/docs/manual/reference/method/db.collection.count/,manual/manual/source/reference/method/db.collection.count.txt,manual,19,0,0,0,0,17, -786,https://www.mongodb.com/docs/manual/reference/method/db.collection.countDocuments/,manual/manual/source/reference/method/db.collection.countDocuments.txt,manual,16,0,0,0,0,16, -787,https://www.mongodb.com/docs/manual/reference/method/db.collection.createIndex/,manual/manual/source/reference/method/db.collection.createIndex.txt,manual,53,0,0,0,0,49, -788,https://www.mongodb.com/docs/manual/reference/method/db.collection.createIndexes/,manual/manual/source/reference/method/db.collection.createIndexes.txt,manual,53,0,0,0,0,48, -789,https://www.mongodb.com/docs/manual/reference/method/db.collection.createSearchIndex/,manual/manual/source/reference/method/db.collection.createSearchIndex.txt,manual,9,0,0,0,0,9, -790,https://www.mongodb.com/docs/manual/reference/method/db.collection.dataSize/,manual/manual/source/reference/method/db.collection.dataSize.txt,manual,13,0,0,0,0,12, -791,https://www.mongodb.com/docs/manual/reference/method/db.collection.deleteMany/,manual/manual/source/reference/method/db.collection.deleteMany.txt,manual,35,0,0,0,0,33, -792,https://www.mongodb.com/docs/manual/reference/method/db.collection.deleteOne/,manual/manual/source/reference/method/db.collection.deleteOne.txt,manual,34,0,0,0,0,32, -793,https://www.mongodb.com/docs/manual/reference/method/db.collection.distinct/,manual/manual/source/reference/method/db.collection.distinct.txt,manual,36,0,0,0,0,33, -794,https://www.mongodb.com/docs/manual/reference/method/db.collection.drop/,manual/manual/source/reference/method/db.collection.drop.txt,manual,3,0,0,0,0,3, -795,https://www.mongodb.com/docs/manual/reference/method/db.collection.dropIndex/,manual/manual/source/reference/method/db.collection.dropIndex.txt,manual,8,2,2,0,0,6, -796,https://www.mongodb.com/docs/manual/reference/method/db.collection.dropIndexes/,manual/manual/source/reference/method/db.collection.dropIndexes.txt,manual,4,0,0,0,0,4, -797,https://www.mongodb.com/docs/manual/reference/method/db.collection.dropSearchIndex/,manual/manual/source/reference/method/db.collection.dropSearchIndex.txt,manual,4,0,0,0,0,4, -798,https://www.mongodb.com/docs/manual/reference/method/db.collection.estimatedDocumentCount/,manual/manual/source/reference/method/db.collection.estimatedDocumentCount.txt,manual,4,0,0,0,0,4, -799,https://www.mongodb.com/docs/manual/reference/method/db.collection.explain/,manual/manual/source/reference/method/db.collection.explain.txt,manual,12,0,0,0,0,11, -800,https://www.mongodb.com/docs/manual/reference/method/db.collection.find/,manual/manual/source/reference/method/db.collection.find.txt,manual,96,1,1,0,0,94, -801,https://www.mongodb.com/docs/manual/reference/method/db.collection.findAndModify/,manual/manual/source/reference/method/db.collection.findAndModify.txt,manual,72,0,0,0,0,68, -802,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOne/,manual/manual/source/reference/method/db.collection.findOne.txt,manual,28,0,0,0,0,28, -803,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndDelete/,manual/manual/source/reference/method/db.collection.findOneAndDelete.txt,manual,53,0,0,0,0,50, -804,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndReplace/,manual/manual/source/reference/method/db.collection.findOneAndReplace.txt,manual,53,0,0,0,0,51, -805,https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndUpdate/,manual/manual/source/reference/method/db.collection.findOneAndUpdate.txt,manual,63,0,0,0,0,61, -806,https://www.mongodb.com/docs/manual/reference/method/db.collection.getIndexes/,manual/manual/source/reference/method/db.collection.getIndexes.txt,manual,17,0,0,0,0,16, -807,https://www.mongodb.com/docs/manual/reference/method/db.collection.getPlanCache/,manual/manual/source/reference/method/db.collection.getPlanCache.txt,manual,0,0,0,0,0,0, -808,https://www.mongodb.com/docs/manual/reference/method/db.collection.getSearchIndexes/,manual/manual/source/reference/method/db.collection.getSearchIndexes.txt,manual,7,0,0,0,0,7, -809,https://www.mongodb.com/docs/manual/reference/method/db.collection.getShardDistribution/,manual/manual/source/reference/method/db.collection.getShardDistribution.txt,manual,6,0,0,0,0,4, -810,https://www.mongodb.com/docs/manual/reference/method/db.collection.getShardLocation/,manual/manual/source/reference/method/db.collection.getShardLocation.txt,manual,7,3,3,0,0,7, -811,https://www.mongodb.com/docs/manual/reference/method/db.collection.getShardVersion/,manual/manual/source/reference/method/db.collection.getShardVersion.txt,manual,0,0,0,0,0,0, -812,https://www.mongodb.com/docs/manual/reference/method/db.collection.hideIndex/,manual/manual/source/reference/method/db.collection.hideIndex.txt,manual,5,0,0,0,0,5, -813,https://www.mongodb.com/docs/manual/reference/method/db.collection.initializeOrderedBulkOp/,manual/manual/source/reference/method/db.collection.initializeOrderedBulkOp.txt,manual,1,0,0,0,0,1, -814,https://www.mongodb.com/docs/manual/reference/method/db.collection.initializeUnorderedBulkOp/,manual/manual/source/reference/method/db.collection.initializeUnorderedBulkOp.txt,manual,1,0,0,0,0,1, -815,https://www.mongodb.com/docs/manual/reference/method/db.collection.insert/,manual/manual/source/reference/method/db.collection.insert.txt,manual,20,0,0,0,0,20, -816,https://www.mongodb.com/docs/manual/reference/method/db.collection.insertMany/,manual/manual/source/reference/method/db.collection.insertMany.txt,manual,20,0,0,0,0,20, -817,https://www.mongodb.com/docs/manual/reference/method/db.collection.insertOne/,manual/manual/source/reference/method/db.collection.insertOne.txt,manual,17,0,0,0,0,17, -818,https://www.mongodb.com/docs/manual/reference/method/db.collection.isCapped/,manual/manual/source/reference/method/db.collection.isCapped.txt,manual,0,0,0,0,0,0, -819,https://www.mongodb.com/docs/manual/reference/method/db.collection.latencyStats/,manual/manual/source/reference/method/db.collection.latencyStats.txt,manual,4,0,0,0,0,4, -820,https://www.mongodb.com/docs/manual/reference/method/db.collection.mapReduce/,manual/manual/source/reference/method/db.collection.mapReduce.txt,manual,60,0,0,0,0,57, -821,https://www.mongodb.com/docs/manual/reference/method/db.collection.reIndex/,manual/manual/source/reference/method/db.collection.reIndex.txt,manual,0,0,0,0,0,0, -822,https://www.mongodb.com/docs/manual/reference/method/db.collection.remove/,manual/manual/source/reference/method/db.collection.remove.txt,manual,31,0,0,0,0,29, -823,https://www.mongodb.com/docs/manual/reference/method/db.collection.renameCollection/,manual/manual/source/reference/method/db.collection.renameCollection.txt,manual,1,0,0,0,0,1, -824,https://www.mongodb.com/docs/manual/reference/method/db.collection.replaceOne/,manual/manual/source/reference/method/db.collection.replaceOne.txt,manual,41,0,0,0,0,39, -825,https://www.mongodb.com/docs/manual/reference/method/db.collection.stats/,manual/manual/source/reference/method/db.collection.stats.txt,manual,28,0,0,0,0,27, -826,https://www.mongodb.com/docs/manual/reference/method/db.collection.storageSize/,manual/manual/source/reference/method/db.collection.storageSize.txt,manual,13,0,0,0,0,12, -827,https://www.mongodb.com/docs/manual/reference/method/db.collection.totalIndexSize/,manual/manual/source/reference/method/db.collection.totalIndexSize.txt,manual,13,0,0,0,0,12, -828,https://www.mongodb.com/docs/manual/reference/method/db.collection.totalSize/,manual/manual/source/reference/method/db.collection.totalSize.txt,manual,13,0,0,0,0,12, -829,https://www.mongodb.com/docs/manual/reference/method/db.collection.unhideIndex/,manual/manual/source/reference/method/db.collection.unhideIndex.txt,manual,7,0,0,0,0,7, -830,https://www.mongodb.com/docs/manual/reference/method/db.collection.update/,manual/manual/source/reference/method/db.collection.update.txt,manual,40,0,0,19,0,38, -831,https://www.mongodb.com/docs/manual/reference/method/db.collection.updateMany/,manual/manual/source/reference/method/db.collection.updateMany.txt,manual,62,0,0,0,0,60, -832,https://www.mongodb.com/docs/manual/reference/method/db.collection.updateOne/,manual/manual/source/reference/method/db.collection.updateOne.txt,manual,65,0,0,0,0,63, -833,https://www.mongodb.com/docs/manual/reference/method/db.collection.updateSearchIndex/,manual/manual/source/reference/method/db.collection.updateSearchIndex.txt,manual,7,0,0,0,0,7, -834,https://www.mongodb.com/docs/manual/reference/method/db.collection.validate/,manual/manual/source/reference/method/db.collection.validate.txt,manual,18,0,0,0,0,17, -835,https://www.mongodb.com/docs/manual/reference/method/db.collection.watch/,manual/manual/source/reference/method/db.collection.watch.txt,manual,26,0,0,0,0,26, -836,https://www.mongodb.com/docs/manual/reference/method/db.commandHelp/,manual/manual/source/reference/method/db.commandHelp.txt,manual,0,0,0,0,0,0, -837,https://www.mongodb.com/docs/manual/reference/method/db.createCollection/,manual/manual/source/reference/method/db.createCollection.txt,manual,38,0,0,0,0,36, -838,https://www.mongodb.com/docs/manual/reference/method/db.createRole/,manual/manual/source/reference/method/db.createRole.txt,manual,6,0,0,0,0,6, -839,https://www.mongodb.com/docs/manual/reference/method/db.createUser/,manual/manual/source/reference/method/db.createUser.txt,manual,11,0,0,0,0,11, -840,https://www.mongodb.com/docs/manual/reference/method/db.createView/,manual/manual/source/reference/method/db.createView.txt,manual,11,0,0,0,0,9, -841,https://www.mongodb.com/docs/manual/reference/method/db.currentOp/,manual/manual/source/reference/method/db.currentOp.txt,manual,10,0,0,0,0,10, -842,https://www.mongodb.com/docs/manual/reference/method/db.dropAllRoles/,manual/manual/source/reference/method/db.dropAllRoles.txt,manual,2,0,0,0,0,2, -843,https://www.mongodb.com/docs/manual/reference/method/db.dropAllUsers/,manual/manual/source/reference/method/db.dropAllUsers.txt,manual,2,0,0,0,0,2, -844,https://www.mongodb.com/docs/manual/reference/method/db.dropDatabase/,manual/manual/source/reference/method/db.dropDatabase.txt,manual,15,0,0,0,0,14, -845,https://www.mongodb.com/docs/manual/reference/method/db.dropRole/,manual/manual/source/reference/method/db.dropRole.txt,manual,1,0,0,0,0,1, -846,https://www.mongodb.com/docs/manual/reference/method/db.dropUser/,manual/manual/source/reference/method/db.dropUser.txt,manual,1,0,0,0,0,1, -847,https://www.mongodb.com/docs/manual/reference/method/db.fsyncLock/,manual/manual/source/reference/method/db.fsyncLock.txt,manual,5,0,0,0,0,4, -848,https://www.mongodb.com/docs/manual/reference/method/db.fsyncUnlock/,manual/manual/source/reference/method/db.fsyncUnlock.txt,manual,6,0,0,0,0,5, -849,https://www.mongodb.com/docs/manual/reference/method/db.getCollection/,manual/manual/source/reference/method/db.getCollection.txt,manual,3,0,0,0,0,3, -850,https://www.mongodb.com/docs/manual/reference/method/db.getCollectionInfos/,manual/manual/source/reference/method/db.getCollectionInfos.txt,manual,29,4,4,0,0,28, -851,https://www.mongodb.com/docs/manual/reference/method/db.getCollectionNames/,manual/manual/source/reference/method/db.getCollectionNames.txt,manual,23,0,0,0,0,22, -852,https://www.mongodb.com/docs/manual/reference/method/db.getLastError/,manual/manual/source/reference/method/db.getLastError.txt,manual,0,0,0,0,0,0, -853,https://www.mongodb.com/docs/manual/reference/method/db.getLastErrorObj/,manual/manual/source/reference/method/db.getLastErrorObj.txt,manual,0,0,0,0,0,0, -854,https://www.mongodb.com/docs/manual/reference/method/db.getLogComponents/,manual/manual/source/reference/method/db.getLogComponents.txt,manual,1,0,0,0,0,0, -855,https://www.mongodb.com/docs/manual/reference/method/db.getMongo/,manual/manual/source/reference/method/db.getMongo.txt,manual,0,0,0,0,0,0, -856,https://www.mongodb.com/docs/manual/reference/method/db.getName/,manual/manual/source/reference/method/db.getName.txt,manual,1,0,0,0,0,1, -857,https://www.mongodb.com/docs/manual/reference/method/db.getProfilingStatus/,manual/manual/source/reference/method/db.getProfilingStatus.txt,manual,0,0,0,0,0,0, -858,https://www.mongodb.com/docs/manual/reference/method/db.getReplicationInfo/,manual/manual/source/reference/method/db.getReplicationInfo.txt,manual,0,0,0,0,0,0, -859,https://www.mongodb.com/docs/manual/reference/method/db.getRole/,manual/manual/source/reference/method/db.getRole.txt,manual,6,0,0,0,0,6, -860,https://www.mongodb.com/docs/manual/reference/method/db.getRoles/,manual/manual/source/reference/method/db.getRoles.txt,manual,4,0,0,0,0,4, -861,https://www.mongodb.com/docs/manual/reference/method/db.getSiblingDB/,manual/manual/source/reference/method/db.getSiblingDB.txt,manual,2,0,0,0,0,2, -862,https://www.mongodb.com/docs/manual/reference/method/db.getUser/,manual/manual/source/reference/method/db.getUser.txt,manual,6,0,0,0,0,5, -863,https://www.mongodb.com/docs/manual/reference/method/db.getUsers/,manual/manual/source/reference/method/db.getUsers.txt,manual,5,0,0,0,0,4, -864,https://www.mongodb.com/docs/manual/reference/method/db.grantPrivilegesToRole/,manual/manual/source/reference/method/db.grantPrivilegesToRole.txt,manual,5,0,0,0,0,5, -865,https://www.mongodb.com/docs/manual/reference/method/db.grantRolesToRole/,manual/manual/source/reference/method/db.grantRolesToRole.txt,manual,4,0,0,0,0,4, -866,https://www.mongodb.com/docs/manual/reference/method/db.grantRolesToUser/,manual/manual/source/reference/method/db.grantRolesToUser.txt,manual,6,0,0,0,0,6, -867,https://www.mongodb.com/docs/manual/reference/method/db.hello/,manual/manual/source/reference/method/db.hello.txt,manual,0,0,0,0,0,0, -868,https://www.mongodb.com/docs/manual/reference/method/db.help/,manual/manual/source/reference/method/db.help.txt,manual,0,0,0,0,0,0, -869,https://www.mongodb.com/docs/manual/reference/method/db.hostInfo/,manual/manual/source/reference/method/db.hostInfo.txt,manual,1,0,0,0,0,1, -870,https://www.mongodb.com/docs/manual/reference/method/db.killOp/,manual/manual/source/reference/method/db.killOp.txt,manual,9,0,0,0,0,9, -871,https://www.mongodb.com/docs/manual/reference/method/db.listCommands/,manual/manual/source/reference/method/db.listCommands.txt,manual,0,0,0,0,0,0, -872,https://www.mongodb.com/docs/manual/reference/method/db.logout/,manual/manual/source/reference/method/db.logout.txt,manual,2,0,0,0,0,2, -873,https://www.mongodb.com/docs/manual/reference/method/db.printCollectionStats/,manual/manual/source/reference/method/db.printCollectionStats.txt,manual,0,0,0,0,0,0, -874,https://www.mongodb.com/docs/manual/reference/method/db.printReplicationInfo/,manual/manual/source/reference/method/db.printReplicationInfo.txt,manual,1,0,0,0,0,0, -875,https://www.mongodb.com/docs/manual/reference/method/db.printSecondaryReplicationInfo/,manual/manual/source/reference/method/db.printSecondaryReplicationInfo.txt,manual,1,0,0,0,0,1, -876,https://www.mongodb.com/docs/manual/reference/method/db.printShardingStatus/,manual/manual/source/reference/method/db.printShardingStatus.txt,manual,0,0,0,0,0,0, -877,https://www.mongodb.com/docs/manual/reference/method/db.removeUser/,manual/manual/source/reference/method/db.removeUser.txt,manual,0,0,0,0,0,0, -878,https://www.mongodb.com/docs/manual/reference/method/db.revokePrivilegesFromRole/,manual/manual/source/reference/method/db.revokePrivilegesFromRole.txt,manual,7,0,0,0,0,7, -879,https://www.mongodb.com/docs/manual/reference/method/db.revokeRolesFromRole/,manual/manual/source/reference/method/db.revokeRolesFromRole.txt,manual,6,0,0,0,0,6, -880,https://www.mongodb.com/docs/manual/reference/method/db.revokeRolesFromUser/,manual/manual/source/reference/method/db.revokeRolesFromUser.txt,manual,6,0,0,0,0,6, -881,https://www.mongodb.com/docs/manual/reference/method/db.rotateCertificates/,manual/manual/source/reference/method/db.rotateCertificates.txt,manual,3,0,0,0,0,3, -882,https://www.mongodb.com/docs/manual/reference/method/db.runCommand/,manual/manual/source/reference/method/db.runCommand.txt,manual,2,0,0,0,0,2, -883,https://www.mongodb.com/docs/manual/reference/method/db.serverBuildInfo/,manual/manual/source/reference/method/db.serverBuildInfo.txt,manual,0,0,0,0,0,0, -884,https://www.mongodb.com/docs/manual/reference/method/db.serverCmdLineOpts/,manual/manual/source/reference/method/db.serverCmdLineOpts.txt,manual,0,0,0,0,0,0, -885,https://www.mongodb.com/docs/manual/reference/method/db.serverStatus/,manual/manual/source/reference/method/db.serverStatus.txt,manual,7,0,0,0,0,7, -886,https://www.mongodb.com/docs/manual/reference/method/db.setLogLevel/,manual/manual/source/reference/method/db.setLogLevel.txt,manual,9,3,3,0,0,9, -887,https://www.mongodb.com/docs/manual/reference/method/db.setProfilingLevel/,manual/manual/source/reference/method/db.setProfilingLevel.txt,manual,8,0,0,0,0,8, -888,https://www.mongodb.com/docs/manual/reference/method/db.shutdownServer/,manual/manual/source/reference/method/db.shutdownServer.txt,manual,4,0,0,0,0,4, -889,https://www.mongodb.com/docs/manual/reference/method/db.stats/,manual/manual/source/reference/method/db.stats.txt,manual,20,0,0,0,0,18, -890,https://www.mongodb.com/docs/manual/reference/method/db.updateRole/,manual/manual/source/reference/method/db.updateRole.txt,manual,6,0,0,0,0,6, -891,https://www.mongodb.com/docs/manual/reference/method/db.updateUser/,manual/manual/source/reference/method/db.updateUser.txt,manual,9,0,0,0,0,9, -892,https://www.mongodb.com/docs/manual/reference/method/db.version/,manual/manual/source/reference/method/db.version.txt,manual,0,0,0,0,0,0, -893,https://www.mongodb.com/docs/manual/reference/method/db.watch/,manual/manual/source/reference/method/db.watch.txt,manual,7,0,0,0,0,7, -894,https://www.mongodb.com/docs/manual/reference/method/getClientEncryption/,manual/manual/source/reference/method/getClientEncryption.txt,manual,7,0,0,0,0,7, -895,https://www.mongodb.com/docs/manual/reference/method/getKeyVault/,manual/manual/source/reference/method/getKeyVault.txt,manual,7,0,0,0,0,7, -896,https://www.mongodb.com/docs/manual/reference/method/hostname/,manual/manual/source/reference/method/hostname.txt,manual,0,0,0,0,0,0, -897,https://www.mongodb.com/docs/manual/reference/method/passwordPrompt/,manual/manual/source/reference/method/passwordPrompt.txt,manual,4,0,0,0,0,4, -898,https://www.mongodb.com/docs/manual/reference/method/rs.add/,manual/manual/source/reference/method/rs.add.txt,manual,9,0,0,0,0,7, -899,https://www.mongodb.com/docs/manual/reference/method/rs.addArb/,manual/manual/source/reference/method/rs.addArb.txt,manual,2,0,0,0,0,0, -900,https://www.mongodb.com/docs/manual/reference/method/rs.conf/,manual/manual/source/reference/method/rs.conf.txt,manual,14,0,0,0,0,12, -901,https://www.mongodb.com/docs/manual/reference/method/rs.freeze/,manual/manual/source/reference/method/rs.freeze.txt,manual,0,0,0,0,0,0, -902,https://www.mongodb.com/docs/manual/reference/method/rs.help/,manual/manual/source/reference/method/rs.help.txt,manual,0,0,0,0,0,0, -903,https://www.mongodb.com/docs/manual/reference/method/rs.initiate/,manual/manual/source/reference/method/rs.initiate.txt,manual,3,0,0,0,0,1, -904,https://www.mongodb.com/docs/manual/reference/method/rs.printReplicationInfo/,manual/manual/source/reference/method/rs.printReplicationInfo.txt,manual,1,0,0,0,0,0, -905,https://www.mongodb.com/docs/manual/reference/method/rs.printSecondaryReplicationInfo/,manual/manual/source/reference/method/rs.printSecondaryReplicationInfo.txt,manual,1,0,0,0,0,1, -906,https://www.mongodb.com/docs/manual/reference/method/rs.reconfig/,manual/manual/source/reference/method/rs.reconfig.txt,manual,6,0,0,0,0,6, -907,https://www.mongodb.com/docs/manual/reference/method/rs.reconfigForPSASet/,manual/manual/source/reference/method/rs.reconfigForPSASet.txt,manual,4,0,0,0,0,4, -908,https://www.mongodb.com/docs/manual/reference/method/rs.remove/,manual/manual/source/reference/method/rs.remove.txt,manual,1,0,0,0,0,1, -909,https://www.mongodb.com/docs/manual/reference/method/rs.status/,manual/manual/source/reference/method/rs.status.txt,manual,0,0,0,0,0,0, -910,https://www.mongodb.com/docs/manual/reference/method/rs.stepDown/,manual/manual/source/reference/method/rs.stepDown.txt,manual,0,0,0,0,0,0, -911,https://www.mongodb.com/docs/manual/reference/method/rs.syncFrom/,manual/manual/source/reference/method/rs.syncFrom.txt,manual,1,0,0,0,0,1, -912,https://www.mongodb.com/docs/manual/reference/method/sh.abortMoveCollection/,manual/manual/source/reference/method/sh.abortMoveCollection.txt,manual,2,0,0,0,0,2, -913,https://www.mongodb.com/docs/manual/reference/method/sh.abortReshardCollection/,manual/manual/source/reference/method/sh.abortReshardCollection.txt,manual,2,0,0,0,0,2, -914,https://www.mongodb.com/docs/manual/reference/method/sh.abortUnshardCollection/,manual/manual/source/reference/method/sh.abortUnshardCollection.txt,manual,2,0,0,0,0,2, -915,https://www.mongodb.com/docs/manual/reference/method/sh.addShard/,manual/manual/source/reference/method/sh.addShard.txt,manual,3,0,0,0,0,3, -916,https://www.mongodb.com/docs/manual/reference/method/sh.addShardTag/,manual/manual/source/reference/method/sh.addShardTag.txt,manual,1,0,0,0,0,1, -917,https://www.mongodb.com/docs/manual/reference/method/sh.addShardToZone/,manual/manual/source/reference/method/sh.addShardToZone.txt,manual,2,0,0,0,0,2, -918,https://www.mongodb.com/docs/manual/reference/method/sh.addTagRange/,manual/manual/source/reference/method/sh.addTagRange.txt,manual,1,0,0,0,0,1, -919,https://www.mongodb.com/docs/manual/reference/method/sh.balancerCollectionStatus/,manual/manual/source/reference/method/sh.balancerCollectionStatus.txt,manual,5,0,0,0,0,5, -920,https://www.mongodb.com/docs/manual/reference/method/sh.checkMetadataConsistency/,manual/manual/source/reference/method/sh.checkMetadataConsistency.txt,manual,3,1,1,0,0,2, -921,https://www.mongodb.com/docs/manual/reference/method/sh.commitReshardCollection/,manual/manual/source/reference/method/sh.commitReshardCollection.txt,manual,2,0,0,0,0,2, -922,https://www.mongodb.com/docs/manual/reference/method/sh.disableAutoMerger/,manual/manual/source/reference/method/sh.disableAutoMerger.txt,manual,2,0,0,0,0,2, -923,https://www.mongodb.com/docs/manual/reference/method/sh.disableAutoSplit/,manual/manual/source/reference/method/sh.disableAutoSplit.txt,manual,2,0,0,0,0,2, -924,https://www.mongodb.com/docs/manual/reference/method/sh.disableBalancing/,manual/manual/source/reference/method/sh.disableBalancing.txt,manual,0,0,0,0,0,0, -925,https://www.mongodb.com/docs/manual/reference/method/sh.disableMigrations/,manual/manual/source/reference/method/sh.disableMigrations.txt,manual,0,0,0,0,0,0, -926,https://www.mongodb.com/docs/manual/reference/method/sh.enableAutoMerger/,manual/manual/source/reference/method/sh.enableAutoMerger.txt,manual,2,0,0,0,0,2, -927,https://www.mongodb.com/docs/manual/reference/method/sh.enableAutoSplit/,manual/manual/source/reference/method/sh.enableAutoSplit.txt,manual,2,0,0,0,0,2, -928,https://www.mongodb.com/docs/manual/reference/method/sh.enableBalancing/,manual/manual/source/reference/method/sh.enableBalancing.txt,manual,0,0,0,0,0,0, -929,https://www.mongodb.com/docs/manual/reference/method/sh.enableMigrations/,manual/manual/source/reference/method/sh.enableMigrations.txt,manual,0,0,0,0,0,0, -930,https://www.mongodb.com/docs/manual/reference/method/sh.enableSharding/,manual/manual/source/reference/method/sh.enableSharding.txt,manual,2,0,0,0,0,2, -931,https://www.mongodb.com/docs/manual/reference/method/sh.getBalancerState/,manual/manual/source/reference/method/sh.getBalancerState.txt,manual,0,0,0,0,0,0, -932,https://www.mongodb.com/docs/manual/reference/method/sh.getShardedDataDistribution/,manual/manual/source/reference/method/sh.getShardedDataDistribution.txt,manual,3,0,0,0,0,3, -933,https://www.mongodb.com/docs/manual/reference/method/sh.help/,manual/manual/source/reference/method/sh.help.txt,manual,0,0,0,0,0,0, -934,https://www.mongodb.com/docs/manual/reference/method/sh.isBalancerRunning/,manual/manual/source/reference/method/sh.isBalancerRunning.txt,manual,1,0,0,0,0,0, -935,https://www.mongodb.com/docs/manual/reference/method/sh.isConfigShardEnabled/,manual/manual/source/reference/method/sh.isConfigShardEnabled.txt,manual,5,1,1,0,0,5, -936,https://www.mongodb.com/docs/manual/reference/method/sh.listShards/,manual/manual/source/reference/method/sh.listShards.txt,manual,3,1,1,0,0,3, -937,https://www.mongodb.com/docs/manual/reference/method/sh.moveChunk/,manual/manual/source/reference/method/sh.moveChunk.txt,manual,1,0,0,0,0,1, -938,https://www.mongodb.com/docs/manual/reference/method/sh.moveCollection/,manual/manual/source/reference/method/sh.moveCollection.txt,manual,2,0,0,0,0,2, -939,https://www.mongodb.com/docs/manual/reference/method/sh.moveRange/,manual/manual/source/reference/method/sh.moveRange.txt,manual,3,1,1,0,0,2, -940,https://www.mongodb.com/docs/manual/reference/method/sh.removeRangeFromZone/,manual/manual/source/reference/method/sh.removeRangeFromZone.txt,manual,3,0,0,0,0,3, -941,https://www.mongodb.com/docs/manual/reference/method/sh.removeShardFromZone/,manual/manual/source/reference/method/sh.removeShardFromZone.txt,manual,1,0,0,0,0,1, -942,https://www.mongodb.com/docs/manual/reference/method/sh.removeShardTag/,manual/manual/source/reference/method/sh.removeShardTag.txt,manual,0,0,0,0,0,0, -943,https://www.mongodb.com/docs/manual/reference/method/sh.removeTagRange/,manual/manual/source/reference/method/sh.removeTagRange.txt,manual,1,0,0,0,0,1, -944,https://www.mongodb.com/docs/manual/reference/method/sh.reshardCollection/,manual/manual/source/reference/method/sh.reshardCollection.txt,manual,8,0,0,0,0,8, -945,https://www.mongodb.com/docs/manual/reference/method/sh.setBalancerState/,manual/manual/source/reference/method/sh.setBalancerState.txt,manual,0,0,0,0,0,0, -946,https://www.mongodb.com/docs/manual/reference/method/sh.shardAndDistributeCollection/,manual/manual/source/reference/method/sh.shardAndDistributeCollection.txt,manual,2,0,0,0,0,2, -947,https://www.mongodb.com/docs/manual/reference/method/sh.shardCollection/,manual/manual/source/reference/method/sh.shardCollection.txt,manual,2,0,0,0,0,2, -948,https://www.mongodb.com/docs/manual/reference/method/sh.splitAt/,manual/manual/source/reference/method/sh.splitAt.txt,manual,1,0,0,0,0,1, -949,https://www.mongodb.com/docs/manual/reference/method/sh.splitFind/,manual/manual/source/reference/method/sh.splitFind.txt,manual,1,0,0,0,0,1, -950,https://www.mongodb.com/docs/manual/reference/method/sh.startAutoMerger/,manual/manual/source/reference/method/sh.startAutoMerger.txt,manual,2,0,0,0,0,2, -951,https://www.mongodb.com/docs/manual/reference/method/sh.startBalancer/,manual/manual/source/reference/method/sh.startBalancer.txt,manual,0,0,0,0,0,0, -952,https://www.mongodb.com/docs/manual/reference/method/sh.status/,manual/manual/source/reference/method/sh.status.txt,manual,12,0,0,0,0,11, -953,https://www.mongodb.com/docs/manual/reference/method/sh.stopAutoMerger/,manual/manual/source/reference/method/sh.stopAutoMerger.txt,manual,2,0,0,0,0,2, -954,https://www.mongodb.com/docs/manual/reference/method/sh.stopBalancer/,manual/manual/source/reference/method/sh.stopBalancer.txt,manual,0,0,0,0,0,0, -955,https://www.mongodb.com/docs/manual/reference/method/sh.unshardCollection/,manual/manual/source/reference/method/sh.unshardCollection.txt,manual,2,0,0,0,0,1, -956,https://www.mongodb.com/docs/manual/reference/method/sh.updateZoneKeyRange/,manual/manual/source/reference/method/sh.updateZoneKeyRange.txt,manual,20,0,0,0,0,20, -957,https://www.mongodb.com/docs/manual/reference/method/sh.waitForBalancer/,manual/manual/source/reference/method/sh.waitForBalancer.txt,manual,0,0,0,0,0,0, -958,https://www.mongodb.com/docs/manual/reference/method/sh.waitForBalancerOff/,manual/manual/source/reference/method/sh.waitForBalancerOff.txt,manual,0,0,0,0,0,0, -959,https://www.mongodb.com/docs/manual/reference/method/sh.waitForPingChange/,manual/manual/source/reference/method/sh.waitForPingChange.txt,manual,0,0,0,0,0,0, -960,https://www.mongodb.com/docs/manual/reference/method/sp.createStreamProcessor/,manual/manual/source/reference/method/sp.createStreamProcessor.txt,manual,2,0,0,0,0,0, -961,https://www.mongodb.com/docs/manual/reference/method/sp.listConnections/,manual/manual/source/reference/method/sp.listConnections.txt,manual,3,1,1,0,0,1, -962,https://www.mongodb.com/docs/manual/reference/method/sp.listStreamProcessors/,manual/manual/source/reference/method/sp.listStreamProcessors.txt,manual,5,2,2,0,0,2, -963,https://www.mongodb.com/docs/manual/reference/method/sp.listWorkspaceDefaults/,manual/manual/source/reference/method/sp.listWorkspaceDefaults.txt,manual,3,1,1,0,0,2, -964,https://www.mongodb.com/docs/manual/reference/method/sp.process/,manual/manual/source/reference/method/sp.process.txt,manual,2,0,0,0,0,0, -965,https://www.mongodb.com/docs/manual/reference/method/sp.processor.drop/,manual/manual/source/reference/method/sp.processor.drop.txt,manual,2,0,0,0,0,0, -966,https://www.mongodb.com/docs/manual/reference/method/sp.processor.sample/,manual/manual/source/reference/method/sp.processor.sample.txt,manual,3,1,1,0,0,1, -967,https://www.mongodb.com/docs/manual/reference/method/sp.processor.start/,manual/manual/source/reference/method/sp.processor.start.txt,manual,2,0,0,0,0,1, -968,https://www.mongodb.com/docs/manual/reference/method/sp.processor.stats/,manual/manual/source/reference/method/sp.processor.stats.txt,manual,3,1,1,0,0,1, -969,https://www.mongodb.com/docs/manual/reference/method/sp.processor.stop/,manual/manual/source/reference/method/sp.processor.stop.txt,manual,2,0,0,0,0,1, -970,https://www.mongodb.com/docs/manual/reference/mongo/,manual/manual/source/reference/mongo.txt,manual,0,0,0,0,0,0, -971,https://www.mongodb.com/docs/manual/reference/mongodb-defaults/,manual/manual/source/reference/mongodb-defaults.txt,manual,1,0,0,0,0,0, -972,https://www.mongodb.com/docs/manual/reference/mongodb-extended-json-v1/,manual/manual/source/reference/mongodb-extended-json-v1.txt,manual,8,0,0,0,0,8, -973,https://www.mongodb.com/docs/manual/reference/mongodb-extended-json/,manual/manual/source/reference/mongodb-extended-json.txt,manual,16,0,0,0,0,16, -974,https://www.mongodb.com/docs/manual/reference/mongodb-wire-protocol/,manual/manual/source/reference/mongodb-wire-protocol.txt,manual,3,0,0,0,0,1, -975,https://www.mongodb.com/docs/manual/reference/mql/,manual/manual/source/reference/mql.txt,manual,0,0,0,0,0,0, -976,https://www.mongodb.com/docs/manual/reference/mql/accumulators/,manual/manual/source/reference/mql/accumulators.txt,manual,0,0,0,0,0,0, -977,https://www.mongodb.com/docs/manual/reference/mql/aggregation-stages/,manual/manual/source/reference/mql/aggregation-stages.txt,manual,2,0,0,0,0,2, -978,https://www.mongodb.com/docs/manual/reference/mql/crud-commands/,manual/manual/source/reference/mql/crud-commands.txt,manual,0,0,0,0,0,0, -979,https://www.mongodb.com/docs/manual/reference/mql/expressions/,manual/manual/source/reference/mql/expressions.txt,manual,2,0,0,0,0,2, -980,https://www.mongodb.com/docs/manual/reference/mql/projection/,manual/manual/source/reference/mql/projection.txt,manual,0,0,0,0,0,0, -981,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/,manual/manual/source/reference/mql/query-predicates.txt,manual,0,0,0,0,0,0, -982,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/arrays/,manual/manual/source/reference/mql/query-predicates/arrays.txt,manual,0,0,0,0,0,0, -983,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/bitwise/,manual/manual/source/reference/mql/query-predicates/bitwise.txt,manual,0,0,0,0,0,0, -984,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/comparison/,manual/manual/source/reference/mql/query-predicates/comparison.txt,manual,0,0,0,0,0,0, -985,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/data-type/,manual/manual/source/reference/mql/query-predicates/data-type.txt,manual,0,0,0,0,0,0, -986,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/geospatial/,manual/manual/source/reference/mql/query-predicates/geospatial.txt,manual,0,0,0,0,0,0, -987,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/logical/,manual/manual/source/reference/mql/query-predicates/logical.txt,manual,0,0,0,0,0,0, -988,https://www.mongodb.com/docs/manual/reference/mql/query-predicates/misc/,manual/manual/source/reference/mql/query-predicates/misc.txt,manual,0,0,0,0,0,0, -989,https://www.mongodb.com/docs/manual/reference/mql/update/,manual/manual/source/reference/mql/update.txt,manual,2,0,0,0,0,2, -990,https://www.mongodb.com/docs/manual/reference/non-root-user-permissions/,manual/manual/source/reference/non-root-user-permissions.txt,manual,12,0,0,0,0,0, -991,https://www.mongodb.com/docs/manual/reference/operator/aggregation/abs/,manual/manual/source/reference/operator/aggregation/abs.txt,manual,4,0,0,0,0,4, -992,https://www.mongodb.com/docs/manual/reference/operator/aggregation/accumulator/,manual/manual/source/reference/operator/aggregation/accumulator.txt,manual,19,0,0,0,0,19, -993,https://www.mongodb.com/docs/manual/reference/operator/aggregation/acos/,manual/manual/source/reference/operator/aggregation/acos.txt,manual,8,0,0,0,0,8, -994,https://www.mongodb.com/docs/manual/reference/operator/aggregation/acosh/,manual/manual/source/reference/operator/aggregation/acosh.txt,manual,8,0,0,0,0,8, -995,https://www.mongodb.com/docs/manual/reference/operator/aggregation/add/,manual/manual/source/reference/operator/aggregation/add.txt,manual,9,1,1,0,0,8, -996,https://www.mongodb.com/docs/manual/reference/operator/aggregation/addFields/,manual/manual/source/reference/operator/aggregation/addFields.txt,manual,23,0,0,0,23,0, -997,https://www.mongodb.com/docs/manual/reference/operator/aggregation/addToSet/,manual/manual/source/reference/operator/aggregation/addToSet.txt,manual,7,0,0,0,0,6, -998,https://www.mongodb.com/docs/manual/reference/operator/aggregation/allElementsTrue/,manual/manual/source/reference/operator/aggregation/allElementsTrue.txt,manual,4,0,0,0,0,4, -999,https://www.mongodb.com/docs/manual/reference/operator/aggregation/and/,manual/manual/source/reference/operator/aggregation/and.txt,manual,6,0,0,0,0,6, -1000,https://www.mongodb.com/docs/manual/reference/operator/aggregation/anyElementTrue/,manual/manual/source/reference/operator/aggregation/anyElementTrue.txt,manual,4,1,1,0,0,4, -1001,https://www.mongodb.com/docs/manual/reference/operator/aggregation/arrayElemAt/,manual/manual/source/reference/operator/aggregation/arrayElemAt.txt,manual,4,0,0,0,0,4, -1002,https://www.mongodb.com/docs/manual/reference/operator/aggregation/arrayToObject/,manual/manual/source/reference/operator/aggregation/arrayToObject.txt,manual,10,0,0,0,0,9, -1003,https://www.mongodb.com/docs/manual/reference/operator/aggregation/asin/,manual/manual/source/reference/operator/aggregation/asin.txt,manual,8,0,0,0,0,8, -1004,https://www.mongodb.com/docs/manual/reference/operator/aggregation/asinh/,manual/manual/source/reference/operator/aggregation/asinh.txt,manual,7,0,0,0,0,7, -1005,https://www.mongodb.com/docs/manual/reference/operator/aggregation/atan/,manual/manual/source/reference/operator/aggregation/atan.txt,manual,7,0,0,0,0,7, -1006,https://www.mongodb.com/docs/manual/reference/operator/aggregation/atan2/,manual/manual/source/reference/operator/aggregation/atan2.txt,manual,7,0,0,0,0,7, -1007,https://www.mongodb.com/docs/manual/reference/operator/aggregation/atanh/,manual/manual/source/reference/operator/aggregation/atanh.txt,manual,8,0,0,0,0,8, -1008,https://www.mongodb.com/docs/manual/reference/operator/aggregation/avg/,manual/manual/source/reference/operator/aggregation/avg.txt,manual,12,0,0,0,0,9, -1009,https://www.mongodb.com/docs/manual/reference/operator/aggregation/binarySize/,manual/manual/source/reference/operator/aggregation/binarySize.txt,manual,8,0,0,0,0,8, -1010,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitAnd/,manual/manual/source/reference/operator/aggregation/bitAnd.txt,manual,6,0,0,0,0,6, -1011,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitNot/,manual/manual/source/reference/operator/aggregation/bitNot.txt,manual,4,0,0,0,0,4, -1012,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitOr/,manual/manual/source/reference/operator/aggregation/bitOr.txt,manual,6,0,0,0,0,6, -1013,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitXor/,manual/manual/source/reference/operator/aggregation/bitXor.txt,manual,4,0,0,0,0,4, -1014,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bottom/,manual/manual/source/reference/operator/aggregation/bottom.txt,manual,8,0,0,0,0,7, -1015,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bottomN/,manual/manual/source/reference/operator/aggregation/bottomN.txt,manual,14,0,0,0,0,11, -1016,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bsonSize/,manual/manual/source/reference/operator/aggregation/bsonSize.txt,manual,10,0,0,0,0,9, -1017,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bucket/,manual/manual/source/reference/operator/aggregation/bucket.txt,manual,14,0,0,0,14,0, -1018,https://www.mongodb.com/docs/manual/reference/operator/aggregation/bucketAuto/,manual/manual/source/reference/operator/aggregation/bucketAuto.txt,manual,16,0,0,0,16,0, -1019,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ceil/,manual/manual/source/reference/operator/aggregation/ceil.txt,manual,4,0,0,0,0,4, -1020,https://www.mongodb.com/docs/manual/reference/operator/aggregation/changeStream/,manual/manual/source/reference/operator/aggregation/changeStream.txt,manual,7,0,0,0,5,0, -1021,https://www.mongodb.com/docs/manual/reference/operator/aggregation/changeStreamSplitLargeEvent/,manual/manual/source/reference/operator/aggregation/changeStreamSplitLargeEvent.txt,manual,22,0,0,0,22,0, -1022,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cmp/,manual/manual/source/reference/operator/aggregation/cmp.txt,manual,4,0,0,0,0,4, -1023,https://www.mongodb.com/docs/manual/reference/operator/aggregation/collStats/,manual/manual/source/reference/operator/aggregation/collStats.txt,manual,19,0,0,0,18,1, -1024,https://www.mongodb.com/docs/manual/reference/operator/aggregation/concat/,manual/manual/source/reference/operator/aggregation/concat.txt,manual,4,0,0,0,0,4, -1025,https://www.mongodb.com/docs/manual/reference/operator/aggregation/concatArrays/,manual/manual/source/reference/operator/aggregation/concatArrays.txt,manual,8,0,0,0,0,8, -1026,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cond/,manual/manual/source/reference/operator/aggregation/cond.txt,manual,6,0,0,0,0,6, -1027,https://www.mongodb.com/docs/manual/reference/operator/aggregation/convert/,manual/manual/source/reference/operator/aggregation/convert.txt,manual,12,4,4,0,0,12, -1028,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cos/,manual/manual/source/reference/operator/aggregation/cos.txt,manual,8,0,0,0,0,8, -1029,https://www.mongodb.com/docs/manual/reference/operator/aggregation/cosh/,manual/manual/source/reference/operator/aggregation/cosh.txt,manual,7,0,0,0,0,7, -1030,https://www.mongodb.com/docs/manual/reference/operator/aggregation/count-accumulator/,manual/manual/source/reference/operator/aggregation/count-accumulator.txt,manual,6,0,0,0,0,5, -1031,https://www.mongodb.com/docs/manual/reference/operator/aggregation/count/,manual/manual/source/reference/operator/aggregation/count.txt,manual,10,0,0,0,10,0, -1032,https://www.mongodb.com/docs/manual/reference/operator/aggregation/covariancePop/,manual/manual/source/reference/operator/aggregation/covariancePop.txt,manual,4,0,0,0,0,3, -1033,https://www.mongodb.com/docs/manual/reference/operator/aggregation/covarianceSamp/,manual/manual/source/reference/operator/aggregation/covarianceSamp.txt,manual,4,0,0,0,0,3, -1034,https://www.mongodb.com/docs/manual/reference/operator/aggregation/currentOp/,manual/manual/source/reference/operator/aggregation/currentOp.txt,manual,26,0,0,0,15,9, -1035,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateAdd/,manual/manual/source/reference/operator/aggregation/dateAdd.txt,manual,13,0,0,0,0,13, -1036,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateDiff/,manual/manual/source/reference/operator/aggregation/dateDiff.txt,manual,11,0,0,0,0,11, -1037,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateFromParts/,manual/manual/source/reference/operator/aggregation/dateFromParts.txt,manual,11,0,0,0,0,11, -1038,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateFromString/,manual/manual/source/reference/operator/aggregation/dateFromString.txt,manual,12,0,0,0,0,12, -1039,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateSubtract/,manual/manual/source/reference/operator/aggregation/dateSubtract.txt,manual,12,0,0,0,0,12, -1040,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateToParts/,manual/manual/source/reference/operator/aggregation/dateToParts.txt,manual,7,0,0,0,0,7, -1041,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateToString/,manual/manual/source/reference/operator/aggregation/dateToString.txt,manual,4,0,0,0,0,4, -1042,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dateTrunc/,manual/manual/source/reference/operator/aggregation/dateTrunc.txt,manual,6,0,0,0,0,5, -1043,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dayOfMonth/,manual/manual/source/reference/operator/aggregation/dayOfMonth.txt,manual,5,0,0,0,0,5, -1044,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dayOfWeek/,manual/manual/source/reference/operator/aggregation/dayOfWeek.txt,manual,5,0,0,0,0,5, -1045,https://www.mongodb.com/docs/manual/reference/operator/aggregation/dayOfYear/,manual/manual/source/reference/operator/aggregation/dayOfYear.txt,manual,5,0,0,0,0,5, -1046,https://www.mongodb.com/docs/manual/reference/operator/aggregation/degreesToRadians/,manual/manual/source/reference/operator/aggregation/degreesToRadians.txt,manual,4,0,0,0,0,3, -1047,https://www.mongodb.com/docs/manual/reference/operator/aggregation/denseRank/,manual/manual/source/reference/operator/aggregation/denseRank.txt,manual,9,0,0,0,0,8, -1048,https://www.mongodb.com/docs/manual/reference/operator/aggregation/densify/,manual/manual/source/reference/operator/aggregation/densify.txt,manual,16,0,0,0,11,0, -1049,https://www.mongodb.com/docs/manual/reference/operator/aggregation/derivative/,manual/manual/source/reference/operator/aggregation/derivative.txt,manual,4,0,0,0,0,3, -1050,https://www.mongodb.com/docs/manual/reference/operator/aggregation/divide/,manual/manual/source/reference/operator/aggregation/divide.txt,manual,4,0,0,0,0,4, -1051,https://www.mongodb.com/docs/manual/reference/operator/aggregation/documentNumber/,manual/manual/source/reference/operator/aggregation/documentNumber.txt,manual,7,0,0,0,0,6, -1052,https://www.mongodb.com/docs/manual/reference/operator/aggregation/documents/,manual/manual/source/reference/operator/aggregation/documents.txt,manual,8,0,0,0,8,0, -1053,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrContains/,manual/manual/source/reference/operator/aggregation/encStrContains.txt,manual,3,0,0,0,0,3, -1054,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrEndsWith/,manual/manual/source/reference/operator/aggregation/encStrEndsWith.txt,manual,2,0,0,0,0,2, -1055,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrNormalizedEq/,manual/manual/source/reference/operator/aggregation/encStrNormalizedEq.txt,manual,2,0,0,0,0,2, -1056,https://www.mongodb.com/docs/manual/reference/operator/aggregation/encStrStartsWith/,manual/manual/source/reference/operator/aggregation/encStrStartsWith.txt,manual,2,0,0,0,0,2, -1057,https://www.mongodb.com/docs/manual/reference/operator/aggregation/eq/,manual/manual/source/reference/operator/aggregation/eq.txt,manual,4,0,0,0,0,4, -1058,https://www.mongodb.com/docs/manual/reference/operator/aggregation/exp/,manual/manual/source/reference/operator/aggregation/exp.txt,manual,4,0,0,0,0,4, -1059,https://www.mongodb.com/docs/manual/reference/operator/aggregation/expMovingAvg/,manual/manual/source/reference/operator/aggregation/expMovingAvg.txt,manual,8,0,0,0,0,5, -1060,https://www.mongodb.com/docs/manual/reference/operator/aggregation/facet/,manual/manual/source/reference/operator/aggregation/facet.txt,manual,8,0,0,0,8,0, -1061,https://www.mongodb.com/docs/manual/reference/operator/aggregation/fill/,manual/manual/source/reference/operator/aggregation/fill.txt,manual,22,0,0,0,21,0, -1062,https://www.mongodb.com/docs/manual/reference/operator/aggregation/filter/,manual/manual/source/reference/operator/aggregation/filter.txt,manual,12,5,5,0,0,12, -1063,https://www.mongodb.com/docs/manual/reference/operator/aggregation/first/,manual/manual/source/reference/operator/aggregation/first.txt,manual,10,0,0,0,0,10, -1064,https://www.mongodb.com/docs/manual/reference/operator/aggregation/firstN/,manual/manual/source/reference/operator/aggregation/firstN.txt,manual,18,0,0,0,0,17, -1065,https://www.mongodb.com/docs/manual/reference/operator/aggregation/floor/,manual/manual/source/reference/operator/aggregation/floor.txt,manual,4,0,0,0,0,4, -1066,https://www.mongodb.com/docs/manual/reference/operator/aggregation/function/,manual/manual/source/reference/operator/aggregation/function.txt,manual,7,0,0,0,0,7, -1067,https://www.mongodb.com/docs/manual/reference/operator/aggregation/geoNear/,manual/manual/source/reference/operator/aggregation/geoNear.txt,manual,18,0,0,0,18,0, -1068,https://www.mongodb.com/docs/manual/reference/operator/aggregation/getField/,manual/manual/source/reference/operator/aggregation/getField.txt,manual,11,0,0,0,0,11, -1069,https://www.mongodb.com/docs/manual/reference/operator/aggregation/graphLookup/,manual/manual/source/reference/operator/aggregation/graphLookup.txt,manual,23,0,0,0,23,0, -1070,https://www.mongodb.com/docs/manual/reference/operator/aggregation/group/,manual/manual/source/reference/operator/aggregation/group.txt,manual,28,0,0,0,24,0, -1071,https://www.mongodb.com/docs/manual/reference/operator/aggregation/gt/,manual/manual/source/reference/operator/aggregation/gt.txt,manual,4,0,0,0,0,4, -1072,https://www.mongodb.com/docs/manual/reference/operator/aggregation/gte/,manual/manual/source/reference/operator/aggregation/gte.txt,manual,4,0,0,0,0,4, -1073,https://www.mongodb.com/docs/manual/reference/operator/aggregation/hour/,manual/manual/source/reference/operator/aggregation/hour.txt,manual,5,0,0,0,0,5, -1074,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ifNull/,manual/manual/source/reference/operator/aggregation/ifNull.txt,manual,6,0,0,0,0,5, -1075,https://www.mongodb.com/docs/manual/reference/operator/aggregation/in/,manual/manual/source/reference/operator/aggregation/in.txt,manual,4,0,0,0,0,4, -1076,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexOfArray/,manual/manual/source/reference/operator/aggregation/indexOfArray.txt,manual,4,0,0,0,0,4, -1077,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexOfBytes/,manual/manual/source/reference/operator/aggregation/indexOfBytes.txt,manual,4,0,0,0,0,4, -1078,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexOfCP/,manual/manual/source/reference/operator/aggregation/indexOfCP.txt,manual,4,0,0,0,0,4, -1079,https://www.mongodb.com/docs/manual/reference/operator/aggregation/indexStats/,manual/manual/source/reference/operator/aggregation/indexStats.txt,manual,7,0,0,0,7,0, -1080,https://www.mongodb.com/docs/manual/reference/operator/aggregation/integral/,manual/manual/source/reference/operator/aggregation/integral.txt,manual,4,0,0,0,0,3, -1081,https://www.mongodb.com/docs/manual/reference/operator/aggregation/interface/,manual/manual/source/reference/operator/aggregation/interface.txt,manual,0,0,0,0,0,0, -1082,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isArray/,manual/manual/source/reference/operator/aggregation/isArray.txt,manual,3,0,0,0,0,3, -1083,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isNumber/,manual/manual/source/reference/operator/aggregation/isNumber.txt,manual,7,0,0,0,0,7, -1084,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isoDayOfWeek/,manual/manual/source/reference/operator/aggregation/isoDayOfWeek.txt,manual,5,0,0,0,0,5, -1085,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isoWeek/,manual/manual/source/reference/operator/aggregation/isoWeek.txt,manual,5,0,0,0,0,5, -1086,https://www.mongodb.com/docs/manual/reference/operator/aggregation/isoWeekYear/,manual/manual/source/reference/operator/aggregation/isoWeekYear.txt,manual,5,0,0,0,0,5, -1087,https://www.mongodb.com/docs/manual/reference/operator/aggregation/last/,manual/manual/source/reference/operator/aggregation/last.txt,manual,7,0,0,0,0,7, -1088,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lastN/,manual/manual/source/reference/operator/aggregation/lastN.txt,manual,18,0,0,0,0,17, -1089,https://www.mongodb.com/docs/manual/reference/operator/aggregation/let/,manual/manual/source/reference/operator/aggregation/let.txt,manual,5,0,0,0,0,2, -1090,https://www.mongodb.com/docs/manual/reference/operator/aggregation/limit/,manual/manual/source/reference/operator/aggregation/limit.txt,manual,4,0,0,0,4,0, -1091,https://www.mongodb.com/docs/manual/reference/operator/aggregation/linearFill/,manual/manual/source/reference/operator/aggregation/linearFill.txt,manual,8,0,0,0,0,7, -1092,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listClusterCatalog/,manual/manual/source/reference/operator/aggregation/listClusterCatalog.txt,manual,9,0,0,0,5,2, -1093,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listLocalSessions/,manual/manual/source/reference/operator/aggregation/listLocalSessions.txt,manual,7,0,0,0,7,0, -1094,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listSampledQueries/,manual/manual/source/reference/operator/aggregation/listSampledQueries.txt,manual,7,0,0,0,5,0, -1095,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listSearchIndexes/,manual/manual/source/reference/operator/aggregation/listSearchIndexes.txt,manual,14,1,1,0,12,2, -1096,https://www.mongodb.com/docs/manual/reference/operator/aggregation/listSessions/,manual/manual/source/reference/operator/aggregation/listSessions.txt,manual,7,0,0,0,7,0, -1097,https://www.mongodb.com/docs/manual/reference/operator/aggregation/literal/,manual/manual/source/reference/operator/aggregation/literal.txt,manual,6,0,0,0,0,5, -1098,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ln/,manual/manual/source/reference/operator/aggregation/ln.txt,manual,4,0,0,0,0,4, -1099,https://www.mongodb.com/docs/manual/reference/operator/aggregation/locf/,manual/manual/source/reference/operator/aggregation/locf.txt,manual,6,0,0,0,0,5, -1100,https://www.mongodb.com/docs/manual/reference/operator/aggregation/log/,manual/manual/source/reference/operator/aggregation/log.txt,manual,4,0,0,0,0,4, -1101,https://www.mongodb.com/docs/manual/reference/operator/aggregation/log10/,manual/manual/source/reference/operator/aggregation/log10.txt,manual,4,0,0,0,0,4, -1102,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lookup/,manual/manual/source/reference/operator/aggregation/lookup.txt,manual,46,0,0,0,35,0, -1103,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lt/,manual/manual/source/reference/operator/aggregation/lt.txt,manual,4,0,0,0,0,4, -1104,https://www.mongodb.com/docs/manual/reference/operator/aggregation/lte/,manual/manual/source/reference/operator/aggregation/lte.txt,manual,4,0,0,0,0,4, -1105,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ltrim/,manual/manual/source/reference/operator/aggregation/ltrim.txt,manual,4,0,0,0,0,4, -1106,https://www.mongodb.com/docs/manual/reference/operator/aggregation/map/,manual/manual/source/reference/operator/aggregation/map.txt,manual,10,0,0,0,0,10, -1107,https://www.mongodb.com/docs/manual/reference/operator/aggregation/match/,manual/manual/source/reference/operator/aggregation/match.txt,manual,12,1,1,0,12,0, -1108,https://www.mongodb.com/docs/manual/reference/operator/aggregation/max/,manual/manual/source/reference/operator/aggregation/max.txt,manual,12,0,0,0,0,9, -1109,https://www.mongodb.com/docs/manual/reference/operator/aggregation/maxN-array-element/,manual/manual/source/reference/operator/aggregation/maxN-array-element.txt,manual,4,0,0,0,0,4, -1110,https://www.mongodb.com/docs/manual/reference/operator/aggregation/maxN/,manual/manual/source/reference/operator/aggregation/maxN.txt,manual,10,0,0,0,0,9, -1111,https://www.mongodb.com/docs/manual/reference/operator/aggregation/median/,manual/manual/source/reference/operator/aggregation/median.txt,manual,9,0,0,0,0,9, -1112,https://www.mongodb.com/docs/manual/reference/operator/aggregation/merge/,manual/manual/source/reference/operator/aggregation/merge.txt,manual,55,0,0,0,49,6, -1113,https://www.mongodb.com/docs/manual/reference/operator/aggregation/mergeObjects/,manual/manual/source/reference/operator/aggregation/mergeObjects.txt,manual,9,0,0,0,0,7, -1114,https://www.mongodb.com/docs/manual/reference/operator/aggregation/meta/,manual/manual/source/reference/operator/aggregation/meta.txt,manual,20,0,0,0,10,9, -1115,https://www.mongodb.com/docs/manual/reference/operator/aggregation/millisecond/,manual/manual/source/reference/operator/aggregation/millisecond.txt,manual,5,0,0,0,0,5, -1116,https://www.mongodb.com/docs/manual/reference/operator/aggregation/min/,manual/manual/source/reference/operator/aggregation/min.txt,manual,12,0,0,0,0,9, -1117,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minMaxScaler/,manual/manual/source/reference/operator/aggregation/minMaxScaler.txt,manual,8,1,1,0,0,4, -1118,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minN-array-element/,manual/manual/source/reference/operator/aggregation/minN-array-element.txt,manual,4,0,0,0,0,4, -1119,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minN/,manual/manual/source/reference/operator/aggregation/minN.txt,manual,10,0,0,0,0,9, -1120,https://www.mongodb.com/docs/manual/reference/operator/aggregation/minute/,manual/manual/source/reference/operator/aggregation/minute.txt,manual,5,0,0,0,0,5, -1121,https://www.mongodb.com/docs/manual/reference/operator/aggregation/mod/,manual/manual/source/reference/operator/aggregation/mod.txt,manual,7,0,0,0,0,5, -1122,https://www.mongodb.com/docs/manual/reference/operator/aggregation/month/,manual/manual/source/reference/operator/aggregation/month.txt,manual,5,0,0,0,0,5, -1123,https://www.mongodb.com/docs/manual/reference/operator/aggregation/multiply/,manual/manual/source/reference/operator/aggregation/multiply.txt,manual,5,0,0,0,0,5, -1124,https://www.mongodb.com/docs/manual/reference/operator/aggregation/ne/,manual/manual/source/reference/operator/aggregation/ne.txt,manual,4,0,0,0,0,4, -1125,https://www.mongodb.com/docs/manual/reference/operator/aggregation/not/,manual/manual/source/reference/operator/aggregation/not.txt,manual,4,0,0,0,0,4, -1126,https://www.mongodb.com/docs/manual/reference/operator/aggregation/objectToArray/,manual/manual/source/reference/operator/aggregation/objectToArray.txt,manual,10,0,0,0,0,10, -1127,https://www.mongodb.com/docs/manual/reference/operator/aggregation/or/,manual/manual/source/reference/operator/aggregation/or.txt,manual,6,0,0,0,0,6, -1128,https://www.mongodb.com/docs/manual/reference/operator/aggregation/out/,manual/manual/source/reference/operator/aggregation/out.txt,manual,16,0,0,0,16,0, -1129,https://www.mongodb.com/docs/manual/reference/operator/aggregation/percentile/,manual/manual/source/reference/operator/aggregation/percentile.txt,manual,11,0,0,0,0,11, -1130,https://www.mongodb.com/docs/manual/reference/operator/aggregation/planCacheStats/,manual/manual/source/reference/operator/aggregation/planCacheStats.txt,manual,14,0,0,0,10,2, -1131,https://www.mongodb.com/docs/manual/reference/operator/aggregation/pow/,manual/manual/source/reference/operator/aggregation/pow.txt,manual,4,0,0,0,0,4, -1132,https://www.mongodb.com/docs/manual/reference/operator/aggregation/project/,manual/manual/source/reference/operator/aggregation/project.txt,manual,75,0,0,0,75,0, -1133,https://www.mongodb.com/docs/manual/reference/operator/aggregation/push/,manual/manual/source/reference/operator/aggregation/push.txt,manual,7,0,0,0,0,6, -1134,https://www.mongodb.com/docs/manual/reference/operator/aggregation/querySettings/,manual/manual/source/reference/operator/aggregation/querySettings.txt,manual,8,0,0,0,8,0, -1135,https://www.mongodb.com/docs/manual/reference/operator/aggregation/queryStats/,manual/manual/source/reference/operator/aggregation/queryStats.txt,manual,10,0,0,0,10,0, -1136,https://www.mongodb.com/docs/manual/reference/operator/aggregation/queryStats/toggle-logging/,manual/manual/source/reference/operator/aggregation/queryStats/toggle-logging.txt,manual,2,0,0,0,0,2, -1137,https://www.mongodb.com/docs/manual/reference/operator/aggregation/radiansToDegrees/,manual/manual/source/reference/operator/aggregation/radiansToDegrees.txt,manual,4,0,0,0,0,3, -1138,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rand/,manual/manual/source/reference/operator/aggregation/rand.txt,manual,8,0,0,0,0,8, -1139,https://www.mongodb.com/docs/manual/reference/operator/aggregation/range/,manual/manual/source/reference/operator/aggregation/range.txt,manual,4,0,0,0,0,4, -1140,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rank/,manual/manual/source/reference/operator/aggregation/rank.txt,manual,9,0,0,0,0,8, -1141,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rankFusion/,manual/manual/source/reference/operator/aggregation/rankFusion.txt,manual,8,0,0,0,7,0, -1142,https://www.mongodb.com/docs/manual/reference/operator/aggregation/redact/,manual/manual/source/reference/operator/aggregation/redact.txt,manual,8,0,0,0,7,0, -1143,https://www.mongodb.com/docs/manual/reference/operator/aggregation/reduce/,manual/manual/source/reference/operator/aggregation/reduce.txt,manual,15,0,0,0,0,15, -1144,https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexFind/,manual/manual/source/reference/operator/aggregation/regexFind.txt,manual,47,1,1,0,0,43, -1145,https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexFindAll/,manual/manual/source/reference/operator/aggregation/regexFindAll.txt,manual,40,1,1,0,0,40, -1146,https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexMatch/,manual/manual/source/reference/operator/aggregation/regexMatch.txt,manual,27,1,1,0,0,27, -1147,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceAll/,manual/manual/source/reference/operator/aggregation/replaceAll.txt,manual,9,1,1,0,0,9, -1148,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceOne/,manual/manual/source/reference/operator/aggregation/replaceOne.txt,manual,8,1,1,0,0,8, -1149,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceRoot/,manual/manual/source/reference/operator/aggregation/replaceRoot.txt,manual,23,0,0,0,23,0, -1150,https://www.mongodb.com/docs/manual/reference/operator/aggregation/replaceWith/,manual/manual/source/reference/operator/aggregation/replaceWith.txt,manual,31,0,0,0,31,0, -1151,https://www.mongodb.com/docs/manual/reference/operator/aggregation/reverseArray/,manual/manual/source/reference/operator/aggregation/reverseArray.txt,manual,4,0,0,0,0,4, -1152,https://www.mongodb.com/docs/manual/reference/operator/aggregation/round/,manual/manual/source/reference/operator/aggregation/round.txt,manual,10,0,0,0,0,10, -1153,https://www.mongodb.com/docs/manual/reference/operator/aggregation/rtrim/,manual/manual/source/reference/operator/aggregation/rtrim.txt,manual,4,0,0,0,0,4, -1154,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sample/,manual/manual/source/reference/operator/aggregation/sample.txt,manual,5,0,0,0,5,0, -1155,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sampleRate/,manual/manual/source/reference/operator/aggregation/sampleRate.txt,manual,6,0,0,0,0,6, -1156,https://www.mongodb.com/docs/manual/reference/operator/aggregation/score/,manual/manual/source/reference/operator/aggregation/score.txt,manual,4,0,0,0,0,4, -1157,https://www.mongodb.com/docs/manual/reference/operator/aggregation/scoreFusion/,manual/manual/source/reference/operator/aggregation/scoreFusion.txt,manual,5,0,0,0,0,5, -1158,https://www.mongodb.com/docs/manual/reference/operator/aggregation/search/,manual/manual/source/reference/operator/aggregation/search.txt,manual,0,0,0,0,0,0, -1159,https://www.mongodb.com/docs/manual/reference/operator/aggregation/searchMeta/,manual/manual/source/reference/operator/aggregation/searchMeta.txt,manual,0,0,0,0,0,0, -1160,https://www.mongodb.com/docs/manual/reference/operator/aggregation/second/,manual/manual/source/reference/operator/aggregation/second.txt,manual,5,0,0,0,0,5, -1161,https://www.mongodb.com/docs/manual/reference/operator/aggregation/set/,manual/manual/source/reference/operator/aggregation/set.txt,manual,24,0,0,0,24,0, -1162,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setDifference/,manual/manual/source/reference/operator/aggregation/setDifference.txt,manual,4,0,0,0,0,4, -1163,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setEquals/,manual/manual/source/reference/operator/aggregation/setEquals.txt,manual,4,0,0,0,0,4, -1164,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setField/,manual/manual/source/reference/operator/aggregation/setField.txt,manual,22,0,0,0,0,22, -1165,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setIntersection/,manual/manual/source/reference/operator/aggregation/setIntersection.txt,manual,12,0,0,0,0,12, -1166,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setIsSubset/,manual/manual/source/reference/operator/aggregation/setIsSubset.txt,manual,4,0,0,0,0,4, -1167,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setUnion/,manual/manual/source/reference/operator/aggregation/setUnion.txt,manual,8,0,0,0,0,8, -1168,https://www.mongodb.com/docs/manual/reference/operator/aggregation/setWindowFields/,manual/manual/source/reference/operator/aggregation/setWindowFields.txt,manual,21,0,0,0,20,0, -1169,https://www.mongodb.com/docs/manual/reference/operator/aggregation/shardedDataDistribution/,manual/manual/source/reference/operator/aggregation/shardedDataDistribution.txt,manual,9,0,0,0,8,0, -1170,https://www.mongodb.com/docs/manual/reference/operator/aggregation/shift/,manual/manual/source/reference/operator/aggregation/shift.txt,manual,6,0,0,0,0,5, -1171,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sigmoid/,manual/manual/source/reference/operator/aggregation/sigmoid.txt,manual,4,0,0,0,0,4, -1172,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sin/,manual/manual/source/reference/operator/aggregation/sin.txt,manual,8,0,0,0,0,8, -1173,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sinh/,manual/manual/source/reference/operator/aggregation/sinh.txt,manual,7,0,0,0,0,7, -1174,https://www.mongodb.com/docs/manual/reference/operator/aggregation/size/,manual/manual/source/reference/operator/aggregation/size.txt,manual,4,0,0,0,0,4, -1175,https://www.mongodb.com/docs/manual/reference/operator/aggregation/skip/,manual/manual/source/reference/operator/aggregation/skip.txt,manual,4,0,0,0,4,0, -1176,https://www.mongodb.com/docs/manual/reference/operator/aggregation/slice/,manual/manual/source/reference/operator/aggregation/slice.txt,manual,5,0,0,0,0,5, -1177,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sort/,manual/manual/source/reference/operator/aggregation/sort.txt,manual,14,0,0,0,13,1, -1178,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sortArray/,manual/manual/source/reference/operator/aggregation/sortArray.txt,manual,15,0,0,0,0,15, -1179,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sortByCount/,manual/manual/source/reference/operator/aggregation/sortByCount.txt,manual,12,0,0,0,12,0, -1180,https://www.mongodb.com/docs/manual/reference/operator/aggregation/split/,manual/manual/source/reference/operator/aggregation/split.txt,manual,4,0,0,0,0,4, -1181,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sqrt/,manual/manual/source/reference/operator/aggregation/sqrt.txt,manual,4,0,0,0,0,4, -1182,https://www.mongodb.com/docs/manual/reference/operator/aggregation/stdDevPop/,manual/manual/source/reference/operator/aggregation/stdDevPop.txt,manual,12,0,0,0,0,9, -1183,https://www.mongodb.com/docs/manual/reference/operator/aggregation/stdDevSamp/,manual/manual/source/reference/operator/aggregation/stdDevSamp.txt,manual,9,0,0,0,0,6, -1184,https://www.mongodb.com/docs/manual/reference/operator/aggregation/strLenBytes/,manual/manual/source/reference/operator/aggregation/strLenBytes.txt,manual,4,0,0,0,0,4, -1185,https://www.mongodb.com/docs/manual/reference/operator/aggregation/strLenCP/,manual/manual/source/reference/operator/aggregation/strLenCP.txt,manual,4,0,0,0,0,4, -1186,https://www.mongodb.com/docs/manual/reference/operator/aggregation/strcasecmp/,manual/manual/source/reference/operator/aggregation/strcasecmp.txt,manual,4,0,0,0,0,4, -1187,https://www.mongodb.com/docs/manual/reference/operator/aggregation/substr/,manual/manual/source/reference/operator/aggregation/substr.txt,manual,4,0,0,0,0,4, -1188,https://www.mongodb.com/docs/manual/reference/operator/aggregation/substrBytes/,manual/manual/source/reference/operator/aggregation/substrBytes.txt,manual,7,0,0,0,0,7, -1189,https://www.mongodb.com/docs/manual/reference/operator/aggregation/substrCP/,manual/manual/source/reference/operator/aggregation/substrCP.txt,manual,7,0,0,0,0,7, -1190,https://www.mongodb.com/docs/manual/reference/operator/aggregation/subtract/,manual/manual/source/reference/operator/aggregation/subtract.txt,manual,9,0,0,0,0,9, -1191,https://www.mongodb.com/docs/manual/reference/operator/aggregation/sum/,manual/manual/source/reference/operator/aggregation/sum.txt,manual,13,0,0,0,0,11, -1192,https://www.mongodb.com/docs/manual/reference/operator/aggregation/switch/,manual/manual/source/reference/operator/aggregation/switch.txt,manual,4,0,0,0,0,4, -1193,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tan/,manual/manual/source/reference/operator/aggregation/tan.txt,manual,8,0,0,0,0,8, -1194,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tanh/,manual/manual/source/reference/operator/aggregation/tanh.txt,manual,7,0,0,0,0,7, -1195,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toBool/,manual/manual/source/reference/operator/aggregation/toBool.txt,manual,5,0,0,0,0,5, -1196,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toDate/,manual/manual/source/reference/operator/aggregation/toDate.txt,manual,5,0,0,0,0,5, -1197,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toDecimal/,manual/manual/source/reference/operator/aggregation/toDecimal.txt,manual,5,0,0,0,0,5, -1198,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toDouble/,manual/manual/source/reference/operator/aggregation/toDouble.txt,manual,5,0,0,0,0,5, -1199,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toHashedIndexKey/,manual/manual/source/reference/operator/aggregation/toHashedIndexKey.txt,manual,3,0,0,0,0,3, -1200,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toInt/,manual/manual/source/reference/operator/aggregation/toInt.txt,manual,5,0,0,0,0,5, -1201,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toLong/,manual/manual/source/reference/operator/aggregation/toLong.txt,manual,5,0,0,0,0,5, -1202,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toLower/,manual/manual/source/reference/operator/aggregation/toLower.txt,manual,4,0,0,0,0,4, -1203,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toObjectId/,manual/manual/source/reference/operator/aggregation/toObjectId.txt,manual,5,0,0,0,0,5, -1204,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toString/,manual/manual/source/reference/operator/aggregation/toString.txt,manual,5,0,0,0,0,5, -1205,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toUUID/,manual/manual/source/reference/operator/aggregation/toUUID.txt,manual,5,0,0,0,0,5, -1206,https://www.mongodb.com/docs/manual/reference/operator/aggregation/toUpper/,manual/manual/source/reference/operator/aggregation/toUpper.txt,manual,4,0,0,0,0,4, -1207,https://www.mongodb.com/docs/manual/reference/operator/aggregation/top/,manual/manual/source/reference/operator/aggregation/top.txt,manual,8,0,0,0,0,7, -1208,https://www.mongodb.com/docs/manual/reference/operator/aggregation/topN/,manual/manual/source/reference/operator/aggregation/topN.txt,manual,14,0,0,0,0,11, -1209,https://www.mongodb.com/docs/manual/reference/operator/aggregation/trim/,manual/manual/source/reference/operator/aggregation/trim.txt,manual,4,0,0,0,0,4, -1210,https://www.mongodb.com/docs/manual/reference/operator/aggregation/trunc/,manual/manual/source/reference/operator/aggregation/trunc.txt,manual,8,0,0,0,0,8, -1211,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tsIncrement/,manual/manual/source/reference/operator/aggregation/tsIncrement.txt,manual,8,0,0,0,0,7, -1212,https://www.mongodb.com/docs/manual/reference/operator/aggregation/tsSecond/,manual/manual/source/reference/operator/aggregation/tsSecond.txt,manual,8,0,0,0,0,7, -1213,https://www.mongodb.com/docs/manual/reference/operator/aggregation/type/,manual/manual/source/reference/operator/aggregation/type.txt,manual,6,2,2,5,0,6, -1214,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unionWith/,manual/manual/source/reference/operator/aggregation/unionWith.txt,manual,27,0,0,0,24,0, -1215,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unset/,manual/manual/source/reference/operator/aggregation/unset.txt,manual,14,0,0,0,14,0, -1216,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unsetField/,manual/manual/source/reference/operator/aggregation/unsetField.txt,manual,10,0,0,0,0,10, -1217,https://www.mongodb.com/docs/manual/reference/operator/aggregation/unwind/,manual/manual/source/reference/operator/aggregation/unwind.txt,manual,30,0,0,0,30,0, -1218,https://www.mongodb.com/docs/manual/reference/operator/aggregation/vectorSearch/,manual/manual/source/reference/operator/aggregation/vectorSearch.txt,manual,0,0,0,0,0,0, -1219,https://www.mongodb.com/docs/manual/reference/operator/aggregation/week/,manual/manual/source/reference/operator/aggregation/week.txt,manual,5,0,0,0,0,5, -1220,https://www.mongodb.com/docs/manual/reference/operator/aggregation/year/,manual/manual/source/reference/operator/aggregation/year.txt,manual,5,0,0,0,0,5, -1221,https://www.mongodb.com/docs/manual/reference/operator/aggregation/zip/,manual/manual/source/reference/operator/aggregation/zip.txt,manual,7,0,0,0,0,7, -1222,https://www.mongodb.com/docs/manual/reference/operator/projection/elemMatch/,manual/manual/source/reference/operator/projection/elemMatch.txt,manual,28,0,0,0,13,15, -1223,https://www.mongodb.com/docs/manual/reference/operator/projection/positional/,manual/manual/source/reference/operator/projection/positional.txt,manual,25,0,0,0,0,25, -1224,https://www.mongodb.com/docs/manual/reference/operator/projection/slice/,manual/manual/source/reference/operator/projection/slice.txt,manual,26,0,0,0,0,26, -1225,https://www.mongodb.com/docs/manual/reference/operator/query/all/,manual/manual/source/reference/operator/query/all.txt,manual,14,0,0,0,0,14, -1226,https://www.mongodb.com/docs/manual/reference/operator/query/and/,manual/manual/source/reference/operator/query/and.txt,manual,12,0,0,0,0,12, -1227,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAllClear/,manual/manual/source/reference/operator/query/bitsAllClear.txt,manual,8,0,0,0,0,8, -1228,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAllSet/,manual/manual/source/reference/operator/query/bitsAllSet.txt,manual,8,0,0,0,0,8, -1229,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAnyClear/,manual/manual/source/reference/operator/query/bitsAnyClear.txt,manual,8,0,0,0,0,8, -1230,https://www.mongodb.com/docs/manual/reference/operator/query/bitsAnySet/,manual/manual/source/reference/operator/query/bitsAnySet.txt,manual,8,0,0,0,0,8, -1231,https://www.mongodb.com/docs/manual/reference/operator/query/box/,manual/manual/source/reference/operator/query/box.txt,manual,2,0,0,0,0,2, -1232,https://www.mongodb.com/docs/manual/reference/operator/query/center/,manual/manual/source/reference/operator/query/center.txt,manual,2,0,0,0,0,2, -1233,https://www.mongodb.com/docs/manual/reference/operator/query/centerSphere/,manual/manual/source/reference/operator/query/centerSphere.txt,manual,2,0,0,0,0,2, -1234,https://www.mongodb.com/docs/manual/reference/operator/query/elemMatch/,manual/manual/source/reference/operator/query/elemMatch.txt,manual,15,0,0,0,0,15, -1235,https://www.mongodb.com/docs/manual/reference/operator/query/eq/,manual/manual/source/reference/operator/query/eq.txt,manual,20,0,0,0,0,20, -1236,https://www.mongodb.com/docs/manual/reference/operator/query/exists/,manual/manual/source/reference/operator/query/exists.txt,manual,11,0,0,0,0,11, -1237,https://www.mongodb.com/docs/manual/reference/operator/query/expr/,manual/manual/source/reference/operator/query/expr.txt,manual,7,0,0,0,0,7, -1238,https://www.mongodb.com/docs/manual/reference/operator/query/geoIntersects/,manual/manual/source/reference/operator/query/geoIntersects.txt,manual,4,0,0,0,0,4, -1239,https://www.mongodb.com/docs/manual/reference/operator/query/geoWithin/,manual/manual/source/reference/operator/query/geoWithin.txt,manual,5,0,0,0,0,5, -1240,https://www.mongodb.com/docs/manual/reference/operator/query/geometry/,manual/manual/source/reference/operator/query/geometry.txt,manual,2,0,0,0,0,2, -1241,https://www.mongodb.com/docs/manual/reference/operator/query/gt/,manual/manual/source/reference/operator/query/gt.txt,manual,6,0,0,0,0,6, -1242,https://www.mongodb.com/docs/manual/reference/operator/query/gte/,manual/manual/source/reference/operator/query/gte.txt,manual,6,0,0,0,0,6, -1243,https://www.mongodb.com/docs/manual/reference/operator/query/in/,manual/manual/source/reference/operator/query/in.txt,manual,7,0,0,0,0,7, -1244,https://www.mongodb.com/docs/manual/reference/operator/query/jsonSchema/,manual/manual/source/reference/operator/query/jsonSchema.txt,manual,3,0,0,0,0,3, -1245,https://www.mongodb.com/docs/manual/reference/operator/query/lt/,manual/manual/source/reference/operator/query/lt.txt,manual,5,0,0,0,0,5, -1246,https://www.mongodb.com/docs/manual/reference/operator/query/lte/,manual/manual/source/reference/operator/query/lte.txt,manual,5,0,0,0,0,5, -1247,https://www.mongodb.com/docs/manual/reference/operator/query/maxDistance/,manual/manual/source/reference/operator/query/maxDistance.txt,manual,1,0,0,0,0,1, -1248,https://www.mongodb.com/docs/manual/reference/operator/query/minDistance/,manual/manual/source/reference/operator/query/minDistance.txt,manual,2,0,0,0,0,2, -1249,https://www.mongodb.com/docs/manual/reference/operator/query/mod/,manual/manual/source/reference/operator/query/mod.txt,manual,18,0,0,0,0,13, -1250,https://www.mongodb.com/docs/manual/reference/operator/query/ne/,manual/manual/source/reference/operator/query/ne.txt,manual,15,2,2,0,0,13, -1251,https://www.mongodb.com/docs/manual/reference/operator/query/near/,manual/manual/source/reference/operator/query/near.txt,manual,4,0,0,0,0,4, -1252,https://www.mongodb.com/docs/manual/reference/operator/query/nearSphere/,manual/manual/source/reference/operator/query/nearSphere.txt,manual,5,0,0,0,0,5, -1253,https://www.mongodb.com/docs/manual/reference/operator/query/nin/,manual/manual/source/reference/operator/query/nin.txt,manual,5,0,0,0,0,5, -1254,https://www.mongodb.com/docs/manual/reference/operator/query/nor/,manual/manual/source/reference/operator/query/nor.txt,manual,4,0,0,0,0,4, -1255,https://www.mongodb.com/docs/manual/reference/operator/query/not/,manual/manual/source/reference/operator/query/not.txt,manual,8,0,0,0,1,7, -1256,https://www.mongodb.com/docs/manual/reference/operator/query/or/,manual/manual/source/reference/operator/query/or.txt,manual,9,0,0,0,0,9, -1257,https://www.mongodb.com/docs/manual/reference/operator/query/polygon/,manual/manual/source/reference/operator/query/polygon.txt,manual,2,0,0,0,0,2, -1258,https://www.mongodb.com/docs/manual/reference/operator/query/regex/,manual/manual/source/reference/operator/query/regex.txt,manual,31,0,0,0,0,30, -1259,https://www.mongodb.com/docs/manual/reference/operator/query/size/,manual/manual/source/reference/operator/query/size.txt,manual,3,0,0,0,0,3, -1260,https://www.mongodb.com/docs/manual/reference/operator/query/text/,manual/manual/source/reference/operator/query/text.txt,manual,46,0,0,0,0,42, -1261,https://www.mongodb.com/docs/manual/reference/operator/query/type/,manual/manual/source/reference/operator/query/type.txt,manual,24,0,0,0,0,24, -1262,https://www.mongodb.com/docs/manual/reference/operator/query/where/,manual/manual/source/reference/operator/query/where.txt,manual,5,0,0,0,0,5, -1263,https://www.mongodb.com/docs/manual/reference/operator/update-array/,manual/manual/source/reference/operator/update-array.txt,manual,0,0,0,0,0,0, -1264,https://www.mongodb.com/docs/manual/reference/operator/update-bitwise/,manual/manual/source/reference/operator/update-bitwise.txt,manual,0,0,0,0,0,0, -1265,https://www.mongodb.com/docs/manual/reference/operator/update-field/,manual/manual/source/reference/operator/update-field.txt,manual,0,0,0,0,0,0, -1266,https://www.mongodb.com/docs/manual/reference/operator/update/addToSet/,manual/manual/source/reference/operator/update/addToSet.txt,manual,12,0,0,0,0,12, -1267,https://www.mongodb.com/docs/manual/reference/operator/update/bit/,manual/manual/source/reference/operator/update/bit.txt,manual,11,0,0,0,0,11, -1268,https://www.mongodb.com/docs/manual/reference/operator/update/currentDate/,manual/manual/source/reference/operator/update/currentDate.txt,manual,8,0,0,0,0,8, -1269,https://www.mongodb.com/docs/manual/reference/operator/update/each/,manual/manual/source/reference/operator/update/each.txt,manual,6,0,0,0,0,6, -1270,https://www.mongodb.com/docs/manual/reference/operator/update/inc/,manual/manual/source/reference/operator/update/inc.txt,manual,4,0,0,0,0,4, -1271,https://www.mongodb.com/docs/manual/reference/operator/update/max/,manual/manual/source/reference/operator/update/max.txt,manual,9,0,0,0,0,9, -1272,https://www.mongodb.com/docs/manual/reference/operator/update/min/,manual/manual/source/reference/operator/update/min.txt,manual,9,0,0,0,0,9, -1273,https://www.mongodb.com/docs/manual/reference/operator/update/mul/,manual/manual/source/reference/operator/update/mul.txt,manual,10,0,0,0,0,10, -1274,https://www.mongodb.com/docs/manual/reference/operator/update/pop/,manual/manual/source/reference/operator/update/pop.txt,manual,7,0,0,0,0,7, -1275,https://www.mongodb.com/docs/manual/reference/operator/update/position/,manual/manual/source/reference/operator/update/position.txt,manual,10,0,0,0,0,10, -1276,https://www.mongodb.com/docs/manual/reference/operator/update/positional-all/,manual/manual/source/reference/operator/update/positional-all.txt,manual,18,0,0,0,0,18, -1277,https://www.mongodb.com/docs/manual/reference/operator/update/positional-filtered/,manual/manual/source/reference/operator/update/positional-filtered.txt,manual,23,0,0,0,0,23, -1278,https://www.mongodb.com/docs/manual/reference/operator/update/positional/,manual/manual/source/reference/operator/update/positional.txt,manual,16,0,0,0,0,16, -1279,https://www.mongodb.com/docs/manual/reference/operator/update/pull/,manual/manual/source/reference/operator/update/pull.txt,manual,17,0,0,0,0,17, -1280,https://www.mongodb.com/docs/manual/reference/operator/update/pullAll/,manual/manual/source/reference/operator/update/pullAll.txt,manual,4,0,0,0,0,4, -1281,https://www.mongodb.com/docs/manual/reference/operator/update/push/,manual/manual/source/reference/operator/update/push.txt,manual,13,0,0,0,0,13, -1282,https://www.mongodb.com/docs/manual/reference/operator/update/rename/,manual/manual/source/reference/operator/update/rename.txt,manual,8,0,0,0,0,8, -1283,https://www.mongodb.com/docs/manual/reference/operator/update/set/,manual/manual/source/reference/operator/update/set.txt,manual,9,0,0,0,0,9, -1284,https://www.mongodb.com/docs/manual/reference/operator/update/setOnInsert/,manual/manual/source/reference/operator/update/setOnInsert.txt,manual,3,0,0,0,0,3, -1285,https://www.mongodb.com/docs/manual/reference/operator/update/slice/,manual/manual/source/reference/operator/update/slice.txt,manual,13,0,0,0,0,13, -1286,https://www.mongodb.com/docs/manual/reference/operator/update/sort/,manual/manual/source/reference/operator/update/sort.txt,manual,13,0,0,0,0,13, -1287,https://www.mongodb.com/docs/manual/reference/operator/update/unset/,manual/manual/source/reference/operator/update/unset.txt,manual,4,0,0,0,0,4, -1288,https://www.mongodb.com/docs/manual/reference/parameters/,manual/manual/source/reference/parameters.txt,manual,230,0,0,0,0,219, -1289,https://www.mongodb.com/docs/manual/reference/privilege-actions/,manual/manual/source/reference/privilege-actions.txt,manual,1,0,0,0,0,1, -1290,https://www.mongodb.com/docs/manual/reference/program/,manual/manual/source/reference/program.txt,manual,0,0,0,0,0,0, -1291,https://www.mongodb.com/docs/manual/reference/program/install_compass/,manual/manual/source/reference/program/install_compass.txt,manual,4,0,0,0,0,2, -1292,https://www.mongodb.com/docs/manual/reference/program/mongod.exe/,manual/manual/source/reference/program/mongod.exe.txt,manual,0,0,0,0,0,0, -1293,https://www.mongodb.com/docs/manual/reference/program/mongod/,manual/manual/source/reference/program/mongod.txt,manual,24,0,0,0,0,20, -1294,https://www.mongodb.com/docs/manual/reference/program/mongokerberos/,manual/manual/source/reference/program/mongokerberos.txt,manual,4,0,0,0,0,2, -1295,https://www.mongodb.com/docs/manual/reference/program/mongoldap/,manual/manual/source/reference/program/mongoldap.txt,manual,7,0,0,0,0,5, -1296,https://www.mongodb.com/docs/manual/reference/program/mongos.exe/,manual/manual/source/reference/program/mongos.exe.txt,manual,0,0,0,0,0,0, -1297,https://www.mongodb.com/docs/manual/reference/program/mongos/,manual/manual/source/reference/program/mongos.txt,manual,21,0,0,0,0,18, -1298,https://www.mongodb.com/docs/manual/reference/read-concern-available/,manual/manual/source/reference/read-concern-available.txt,manual,0,0,0,0,0,0, -1299,https://www.mongodb.com/docs/manual/reference/read-concern-linearizable/,manual/manual/source/reference/read-concern-linearizable.txt,manual,11,0,0,0,0,11, -1300,https://www.mongodb.com/docs/manual/reference/read-concern-local/,manual/manual/source/reference/read-concern-local.txt,manual,8,0,0,0,0,8, -1301,https://www.mongodb.com/docs/manual/reference/read-concern-majority/,manual/manual/source/reference/read-concern-majority.txt,manual,0,0,0,0,0,0, -1302,https://www.mongodb.com/docs/manual/reference/read-concern-snapshot/,manual/manual/source/reference/read-concern-snapshot.txt,manual,1,0,0,0,0,1, -1303,https://www.mongodb.com/docs/manual/reference/read-concern/,manual/manual/source/reference/read-concern.txt,manual,13,0,0,0,0,13, -1304,https://www.mongodb.com/docs/manual/reference/replica-configuration/,manual/manual/source/reference/replica-configuration.txt,manual,15,0,0,0,0,11, -1305,https://www.mongodb.com/docs/manual/reference/replica-set-protocol-versions/,manual/manual/source/reference/replica-set-protocol-versions.txt,manual,0,0,0,0,0,0, -1306,https://www.mongodb.com/docs/manual/reference/replica-states/,manual/manual/source/reference/replica-states.txt,manual,2,0,0,0,0,2, -1307,https://www.mongodb.com/docs/manual/reference/replication/,manual/manual/source/reference/replication.txt,manual,0,0,0,0,0,0, -1308,https://www.mongodb.com/docs/manual/reference/resource-document/,manual/manual/source/reference/resource-document.txt,manual,8,0,0,0,0,8, -1309,https://www.mongodb.com/docs/manual/reference/sbe/,manual/manual/source/reference/sbe.txt,manual,0,0,0,0,0,0, -1310,https://www.mongodb.com/docs/manual/reference/security/,manual/manual/source/reference/security.txt,manual,0,0,0,0,0,0, -1311,https://www.mongodb.com/docs/manual/reference/server-sessions/,manual/manual/source/reference/server-sessions.txt,manual,0,0,0,0,0,0, -1312,https://www.mongodb.com/docs/manual/reference/sharding/,manual/manual/source/reference/sharding.txt,manual,0,0,0,0,0,0, -1313,https://www.mongodb.com/docs/manual/reference/sql-aggregation-comparison/,manual/manual/source/reference/sql-aggregation-comparison.txt,manual,1,0,0,0,0,1, -1314,https://www.mongodb.com/docs/manual/reference/sql-comparison/,manual/manual/source/reference/sql-comparison.txt,manual,12,0,0,0,0,12, -1315,https://www.mongodb.com/docs/manual/reference/stable-api-changelog/,manual/manual/source/reference/stable-api-changelog.txt,manual,0,0,0,0,0,0, -1316,https://www.mongodb.com/docs/manual/reference/stable-api-reference/,manual/manual/source/reference/stable-api-reference.txt,manual,1,0,0,0,0,0, -1317,https://www.mongodb.com/docs/manual/reference/stable-api/,manual/manual/source/reference/stable-api.txt,manual,46,0,0,0,19,0, -1318,https://www.mongodb.com/docs/manual/reference/supported-shard-direct-commands/,manual/manual/source/reference/supported-shard-direct-commands.txt,manual,0,0,0,0,0,0, -1319,https://www.mongodb.com/docs/manual/reference/system-collections/,manual/manual/source/reference/system-collections.txt,manual,0,0,0,0,0,0, -1320,https://www.mongodb.com/docs/manual/reference/system-roles-collection/,manual/manual/source/reference/system-roles-collection.txt,manual,7,0,0,0,0,7, -1321,https://www.mongodb.com/docs/manual/reference/system-users-collection/,manual/manual/source/reference/system-users-collection.txt,manual,3,0,0,0,0,3, -1322,https://www.mongodb.com/docs/manual/reference/text-search-languages/,manual/manual/source/reference/text-search-languages.txt,manual,0,0,0,0,0,0, -1323,https://www.mongodb.com/docs/manual/reference/ulimit/,manual/manual/source/reference/ulimit.txt,manual,10,0,0,0,0,10, -1324,https://www.mongodb.com/docs/manual/reference/update-methods/,manual/manual/source/reference/update-methods.txt,manual,0,0,0,0,0,0, -1325,https://www.mongodb.com/docs/manual/reference/versioning/,manual/manual/source/reference/versioning.txt,manual,0,0,0,0,0,0, -1326,https://www.mongodb.com/docs/manual/reference/write-concern/,manual/manual/source/reference/write-concern.txt,manual,12,0,0,0,0,11, -1327,https://www.mongodb.com/docs/manual/reference/write-concern/write-lifecycle/,manual/manual/source/reference/write-concern/write-lifecycle.txt,manual,0,0,0,0,0,0, -1328,https://www.mongodb.com/docs/manual/release-notes/,manual/manual/source/release-notes.txt,manual,0,0,0,0,0,0, -1329,https://www.mongodb.com/docs/manual/release-notes/7.0-changelog/,manual/manual/source/release-notes/7.0-changelog.txt,manual,0,0,0,0,0,0, -1330,https://www.mongodb.com/docs/manual/release-notes/7.0-compatibility/,manual/manual/source/release-notes/7.0-compatibility.txt,manual,3,0,0,0,0,3, -1331,https://www.mongodb.com/docs/manual/release-notes/7.0-downgrade/,manual/manual/source/release-notes/7.0-downgrade.txt,manual,0,0,0,0,0,0, -1332,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-replica-set/,manual/manual/source/release-notes/7.0-upgrade-replica-set.txt,manual,5,0,0,0,0,5, -1333,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-sharded-cluster/,manual/manual/source/release-notes/7.0-upgrade-sharded-cluster.txt,manual,22,0,0,0,0,18, -1334,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-standalone/,manual/manual/source/release-notes/7.0-upgrade-standalone.txt,manual,6,0,0,0,0,6, -1335,https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade/,manual/manual/source/release-notes/7.0-upgrade.txt,manual,0,0,0,0,0,0, -1336,https://www.mongodb.com/docs/manual/release-notes/7.0/,manual/manual/source/release-notes/7.0.txt,manual,2,0,0,0,0,1, -1337,https://www.mongodb.com/docs/manual/release-notes/8.0-changelog/,manual/manual/source/release-notes/8.0-changelog.txt,manual,0,0,0,0,0,0, -1338,https://www.mongodb.com/docs/manual/release-notes/8.0-compatibility/,manual/manual/source/release-notes/8.0-compatibility.txt,manual,3,0,0,0,0,2, -1339,https://www.mongodb.com/docs/manual/release-notes/8.0-downgrade/,manual/manual/source/release-notes/8.0-downgrade.txt,manual,0,0,0,0,0,0, -1340,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade-replica-set/,manual/manual/source/release-notes/8.0-upgrade-replica-set.txt,manual,6,0,0,0,0,6, -1341,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade-sharded-cluster/,manual/manual/source/release-notes/8.0-upgrade-sharded-cluster.txt,manual,23,0,0,0,0,19, -1342,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade-standalone/,manual/manual/source/release-notes/8.0-upgrade-standalone.txt,manual,6,0,0,0,0,6, -1343,https://www.mongodb.com/docs/manual/release-notes/8.0-upgrade/,manual/manual/source/release-notes/8.0-upgrade.txt,manual,0,0,0,0,0,0, -1344,https://www.mongodb.com/docs/manual/release-notes/8.0/,manual/manual/source/release-notes/8.0.txt,manual,1,0,0,0,0,1, -1345,https://www.mongodb.com/docs/manual/release-notes/8.2-changelog/,manual/manual/source/release-notes/8.2-changelog.txt,manual,0,0,0,0,0,0, -1346,https://www.mongodb.com/docs/manual/release-notes/8.2-compatibility/,manual/manual/source/release-notes/8.2-compatibility.txt,manual,0,0,0,0,0,0, -1347,https://www.mongodb.com/docs/manual/release-notes/8.2-downgrade/,manual/manual/source/release-notes/8.2-downgrade.txt,manual,0,0,0,0,0,0, -1348,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade-replica-set/,manual/manual/source/release-notes/8.2-upgrade-replica-set.txt,manual,6,0,0,0,0,6, -1349,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade-sharded-cluster/,manual/manual/source/release-notes/8.2-upgrade-sharded-cluster.txt,manual,23,0,0,0,0,19, -1350,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade-standalone/,manual/manual/source/release-notes/8.2-upgrade-standalone.txt,manual,6,0,0,0,0,6, -1351,https://www.mongodb.com/docs/manual/release-notes/8.2-upgrade/,manual/manual/source/release-notes/8.2-upgrade.txt,manual,0,0,0,0,0,0, -1352,https://www.mongodb.com/docs/manual/release-notes/8.2/,manual/manual/source/release-notes/8.2.txt,manual,1,0,0,0,0,1, -1353,https://www.mongodb.com/docs/manual/release-notes/drivers-write-concern/,manual/manual/source/release-notes/drivers-write-concern.txt,manual,0,0,0,0,0,0, -1354,https://www.mongodb.com/docs/manual/replication/,manual/manual/source/replication.txt,manual,12,0,0,0,0,12, -1355,https://www.mongodb.com/docs/manual/security/,manual/manual/source/security.txt,manual,0,0,0,0,0,0, -1356,https://www.mongodb.com/docs/manual/self-managed-deployments/,manual/manual/source/self-managed-deployments.txt,manual,0,0,0,0,0,0, -1357,https://www.mongodb.com/docs/manual/sharding/,manual/manual/source/sharding.txt,manual,9,0,0,0,0,8, -1358,https://www.mongodb.com/docs/manual/storage/,manual/manual/source/storage.txt,manual,0,0,0,0,0,0, -1359,https://www.mongodb.com/docs/manual/support/,manual/manual/source/support.txt,manual,0,0,0,0,0,0, -1360,https://www.mongodb.com/docs/manual/text-search/,manual/manual/source/text-search.txt,manual,0,0,0,0,0,0, -1361,https://www.mongodb.com/docs/manual/tutorial/,manual/manual/source/tutorial.txt,manual,0,0,0,0,0,0, -1362,https://www.mongodb.com/docs/manual/tutorial/add-member-to-shard/,manual/manual/source/tutorial/add-member-to-shard.txt,manual,6,0,0,0,0,6, -1363,https://www.mongodb.com/docs/manual/tutorial/add-replica-set-arbiter/,manual/manual/source/tutorial/add-replica-set-arbiter.txt,manual,5,0,0,0,0,3, -1364,https://www.mongodb.com/docs/manual/tutorial/add-shards-to-shard-cluster/,manual/manual/source/tutorial/add-shards-to-shard-cluster.txt,manual,2,0,0,0,0,2, -1365,https://www.mongodb.com/docs/manual/tutorial/adjust-replica-set-member-priority/,manual/manual/source/tutorial/adjust-replica-set-member-priority.txt,manual,3,0,0,0,0,3, -1366,https://www.mongodb.com/docs/manual/tutorial/aggregation-complete-examples/,manual/manual/source/tutorial/aggregation-complete-examples.txt,manual,0,0,0,0,0,0, -1367,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/filtered-subset/,manual/manual/source/tutorial/aggregation-examples/filtered-subset.txt,manual,122,0,0,44,43,8, -1368,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/group-and-total/,manual/manual/source/tutorial/aggregation-examples/group-and-total.txt,manual,145,0,0,52,51,8, -1369,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/multi-field-join/,manual/manual/source/tutorial/aggregation-examples/multi-field-join.txt,manual,144,0,0,55,52,8, -1370,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/one-to-one-join/,manual/manual/source/tutorial/aggregation-examples/one-to-one-join.txt,manual,122,0,0,43,42,8, -1371,https://www.mongodb.com/docs/manual/tutorial/aggregation-examples/unpack-arrays/,manual/manual/source/tutorial/aggregation-examples/unpack-arrays.txt,manual,133,0,0,47,46,8, -1372,https://www.mongodb.com/docs/manual/tutorial/analyze-query-plan/,manual/manual/source/tutorial/analyze-query-plan.txt,manual,17,0,0,0,17,0, -1373,https://www.mongodb.com/docs/manual/tutorial/authenticate-a-user/,manual/manual/source/tutorial/authenticate-a-user.txt,manual,3,0,0,0,0,3, -1374,https://www.mongodb.com/docs/manual/tutorial/authenticate-nativeldap-activedirectory/,manual/manual/source/tutorial/authenticate-nativeldap-activedirectory.txt,manual,14,0,0,0,0,8, -1375,https://www.mongodb.com/docs/manual/tutorial/backup-and-restore-tools/,manual/manual/source/tutorial/backup-and-restore-tools.txt,manual,11,0,0,0,0,10, -1376,https://www.mongodb.com/docs/manual/tutorial/backup-sharded-cluster-metadata/,manual/manual/source/tutorial/backup-sharded-cluster-metadata.txt,manual,0,0,0,0,0,0, -1377,https://www.mongodb.com/docs/manual/tutorial/backup-sharded-cluster-with-database-dumps/,manual/manual/source/tutorial/backup-sharded-cluster-with-database-dumps.txt,manual,13,3,3,0,0,11, -1378,https://www.mongodb.com/docs/manual/tutorial/backup-sharded-cluster-with-filesystem-snapshots/,manual/manual/source/tutorial/backup-sharded-cluster-with-filesystem-snapshots.txt,manual,13,3,3,0,0,11, -1379,https://www.mongodb.com/docs/manual/tutorial/backup-with-filesystem-snapshots/,manual/manual/source/tutorial/backup-with-filesystem-snapshots.txt,manual,9,0,0,0,0,9, -1380,https://www.mongodb.com/docs/manual/tutorial/build-indexes-on-replica-sets/,manual/manual/source/tutorial/build-indexes-on-replica-sets.txt,manual,9,0,0,0,0,7, -1381,https://www.mongodb.com/docs/manual/tutorial/build-indexes-on-sharded-clusters/,manual/manual/source/tutorial/build-indexes-on-sharded-clusters.txt,manual,14,1,1,0,0,12, -1382,https://www.mongodb.com/docs/manual/tutorial/change-hostnames-in-a-replica-set/,manual/manual/source/tutorial/change-hostnames-in-a-replica-set.txt,manual,20,0,0,0,0,20, -1383,https://www.mongodb.com/docs/manual/tutorial/change-oplog-size/,manual/manual/source/tutorial/change-oplog-size.txt,manual,4,0,0,0,0,4, -1384,https://www.mongodb.com/docs/manual/tutorial/change-own-password-and-custom-data/,manual/manual/source/tutorial/change-own-password-and-custom-data.txt,manual,8,0,0,0,0,8, -1385,https://www.mongodb.com/docs/manual/tutorial/change-replica-set-wiredtiger/,manual/manual/source/tutorial/change-replica-set-wiredtiger.txt,manual,4,0,0,0,0,4, -1386,https://www.mongodb.com/docs/manual/tutorial/change-sharded-cluster-wiredtiger/,manual/manual/source/tutorial/change-sharded-cluster-wiredtiger.txt,manual,12,0,0,0,0,12, -1387,https://www.mongodb.com/docs/manual/tutorial/change-standalone-wiredtiger/,manual/manual/source/tutorial/change-standalone-wiredtiger.txt,manual,3,0,0,0,0,3, -1388,https://www.mongodb.com/docs/manual/tutorial/clear-jumbo-flag/,manual/manual/source/tutorial/clear-jumbo-flag.txt,manual,11,0,0,0,0,8, -1389,https://www.mongodb.com/docs/manual/tutorial/configure-a-delayed-replica-set-member/,manual/manual/source/tutorial/configure-a-delayed-replica-set-member.txt,manual,1,0,0,0,0,1, -1390,https://www.mongodb.com/docs/manual/tutorial/configure-a-hidden-replica-set-member/,manual/manual/source/tutorial/configure-a-hidden-replica-set-member.txt,manual,2,0,0,0,0,2, -1391,https://www.mongodb.com/docs/manual/tutorial/configure-a-non-voting-replica-set-member/,manual/manual/source/tutorial/configure-a-non-voting-replica-set-member.txt,manual,4,0,0,0,0,4, -1392,https://www.mongodb.com/docs/manual/tutorial/configure-audit-filters/,manual/manual/source/tutorial/configure-audit-filters.txt,manual,24,0,0,0,0,16, -1393,https://www.mongodb.com/docs/manual/tutorial/configure-auditing/,manual/manual/source/tutorial/configure-auditing.txt,manual,11,0,0,0,0,6, -1394,https://www.mongodb.com/docs/manual/tutorial/configure-encryption/,manual/manual/source/tutorial/configure-encryption.txt,manual,7,0,0,0,0,5, -1395,https://www.mongodb.com/docs/manual/tutorial/configure-fips/,manual/manual/source/tutorial/configure-fips.txt,manual,9,0,0,0,0,8, -1396,https://www.mongodb.com/docs/manual/tutorial/configure-ldap-sasl-activedirectory/,manual/manual/source/tutorial/configure-ldap-sasl-activedirectory.txt,manual,15,0,0,0,0,8, -1397,https://www.mongodb.com/docs/manual/tutorial/configure-ldap-sasl-openldap/,manual/manual/source/tutorial/configure-ldap-sasl-openldap.txt,manual,13,0,0,0,0,5, -1398,https://www.mongodb.com/docs/manual/tutorial/configure-linux-iptables-firewall/,manual/manual/source/tutorial/configure-linux-iptables-firewall.txt,manual,12,0,0,0,0,12, -1399,https://www.mongodb.com/docs/manual/tutorial/configure-rate-limiter/,manual/manual/source/tutorial/configure-rate-limiter.txt,manual,2,0,0,0,0,2, -1400,https://www.mongodb.com/docs/manual/tutorial/configure-replica-set-secondary-sync-target/,manual/manual/source/tutorial/configure-replica-set-secondary-sync-target.txt,manual,2,0,0,0,0,2, -1401,https://www.mongodb.com/docs/manual/tutorial/configure-replica-set-tag-sets/,manual/manual/source/tutorial/configure-replica-set-tag-sets.txt,manual,10,0,0,0,0,10, -1402,https://www.mongodb.com/docs/manual/tutorial/configure-scram-client-authentication/,manual/manual/source/tutorial/configure-scram-client-authentication.txt,manual,9,0,0,0,0,9, -1403,https://www.mongodb.com/docs/manual/tutorial/configure-secondary-only-replica-set-member/,manual/manual/source/tutorial/configure-secondary-only-replica-set-member.txt,manual,3,0,0,0,0,3, -1404,https://www.mongodb.com/docs/manual/tutorial/configure-ssl-clients/,manual/manual/source/tutorial/configure-ssl-clients.txt,manual,18,0,0,0,0,17, -1405,https://www.mongodb.com/docs/manual/tutorial/configure-ssl/,manual/manual/source/tutorial/configure-ssl.txt,manual,39,0,0,0,0,19, -1406,https://www.mongodb.com/docs/manual/tutorial/configure-windows-netsh-firewall/,manual/manual/source/tutorial/configure-windows-netsh-firewall.txt,manual,13,0,0,0,0,0, -1407,https://www.mongodb.com/docs/manual/tutorial/configure-x509-client-authentication/,manual/manual/source/tutorial/configure-x509-client-authentication.txt,manual,10,0,0,0,0,9, -1408,https://www.mongodb.com/docs/manual/tutorial/configure-x509-member-authentication/,manual/manual/source/tutorial/configure-x509-member-authentication.txt,manual,27,0,0,0,0,17, -1409,https://www.mongodb.com/docs/manual/tutorial/connection-pool-performance-tuning/,manual/manual/source/tutorial/connection-pool-performance-tuning.txt,manual,0,0,0,0,0,0, -1410,https://www.mongodb.com/docs/manual/tutorial/control-access-to-mongodb-windows-with-kerberos-authentication/,manual/manual/source/tutorial/control-access-to-mongodb-windows-with-kerberos-authentication.txt,manual,11,0,0,0,0,11, -1411,https://www.mongodb.com/docs/manual/tutorial/control-access-to-mongodb-with-kerberos-authentication/,manual/manual/source/tutorial/control-access-to-mongodb-with-kerberos-authentication.txt,manual,20,0,0,0,0,18, -1412,https://www.mongodb.com/docs/manual/tutorial/convert-command-line-options-to-yaml/,manual/manual/source/tutorial/convert-command-line-options-to-yaml.txt,manual,6,0,0,0,0,4, -1413,https://www.mongodb.com/docs/manual/tutorial/convert-replica-set-to-embedded-config-server/,manual/manual/source/tutorial/convert-replica-set-to-embedded-config-server.txt,manual,4,0,0,0,0,4, -1414,https://www.mongodb.com/docs/manual/tutorial/convert-replica-set-to-replicated-shard-cluster/,manual/manual/source/tutorial/convert-replica-set-to-replicated-shard-cluster.txt,manual,55,0,0,0,0,42, -1415,https://www.mongodb.com/docs/manual/tutorial/convert-secondary-into-arbiter/,manual/manual/source/tutorial/convert-secondary-into-arbiter.txt,manual,16,0,0,0,0,16, -1416,https://www.mongodb.com/docs/manual/tutorial/convert-sharded-cluster-to-replica-set/,manual/manual/source/tutorial/convert-sharded-cluster-to-replica-set.txt,manual,9,0,0,0,0,9, -1417,https://www.mongodb.com/docs/manual/tutorial/convert-standalone-to-replica-set/,manual/manual/source/tutorial/convert-standalone-to-replica-set.txt,manual,11,0,0,0,0,5, -1418,https://www.mongodb.com/docs/manual/tutorial/create-a-vulnerability-report/,manual/manual/source/tutorial/create-a-vulnerability-report.txt,manual,0,0,0,0,0,0, -1419,https://www.mongodb.com/docs/manual/tutorial/create-chunks-in-sharded-cluster/,manual/manual/source/tutorial/create-chunks-in-sharded-cluster.txt,manual,3,0,0,0,0,3, -1420,https://www.mongodb.com/docs/manual/tutorial/create-queries-that-ensure-selectivity/,manual/manual/source/tutorial/create-queries-that-ensure-selectivity.txt,manual,3,0,0,0,0,3, -1421,https://www.mongodb.com/docs/manual/tutorial/create-users/,manual/manual/source/tutorial/create-users.txt,manual,12,0,0,0,0,12, -1422,https://www.mongodb.com/docs/manual/tutorial/deploy-geographically-distributed-replica-set/,manual/manual/source/tutorial/deploy-geographically-distributed-replica-set.txt,manual,10,0,0,0,0,7, -1423,https://www.mongodb.com/docs/manual/tutorial/deploy-replica-set-for-testing/,manual/manual/source/tutorial/deploy-replica-set-for-testing.txt,manual,11,0,0,0,0,8, -1424,https://www.mongodb.com/docs/manual/tutorial/deploy-replica-set-with-keyfile-access-control/,manual/manual/source/tutorial/deploy-replica-set-with-keyfile-access-control.txt,manual,11,0,0,0,0,10, -1425,https://www.mongodb.com/docs/manual/tutorial/deploy-replica-set/,manual/manual/source/tutorial/deploy-replica-set.txt,manual,9,0,0,0,0,6, -1426,https://www.mongodb.com/docs/manual/tutorial/deploy-shard-cluster/,manual/manual/source/tutorial/deploy-shard-cluster.txt,manual,17,0,0,0,0,14, -1427,https://www.mongodb.com/docs/manual/tutorial/deploy-sharded-cluster-with-keyfile-access-control/,manual/manual/source/tutorial/deploy-sharded-cluster-with-keyfile-access-control.txt,manual,21,0,0,0,0,18, -1428,https://www.mongodb.com/docs/manual/tutorial/develop-mongodb-locally-with-tls/,manual/manual/source/tutorial/develop-mongodb-locally-with-tls.txt,manual,6,0,0,0,0,2, -1429,https://www.mongodb.com/docs/manual/tutorial/disable-transparent-huge-pages/,manual/manual/source/tutorial/disable-transparent-huge-pages.txt,manual,20,0,0,0,0,18, -1430,https://www.mongodb.com/docs/manual/tutorial/drop-a-hashed-shard-key-index/,manual/manual/source/tutorial/drop-a-hashed-shard-key-index.txt,manual,5,0,0,0,0,4, -1431,https://www.mongodb.com/docs/manual/tutorial/enable-authentication/,manual/manual/source/tutorial/enable-authentication.txt,manual,0,0,0,0,0,0, -1432,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set-without-downtime/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-replica-set-without-downtime.txt,manual,12,0,0,0,0,10, -1433,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-replica-set/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-replica-set.txt,manual,1,0,0,0,0,1, -1434,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster-no-downtime/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster-no-downtime.txt,manual,20,0,0,0,0,16, -1435,https://www.mongodb.com/docs/manual/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster/,manual/manual/source/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster.txt,manual,18,0,0,0,0,15, -1436,https://www.mongodb.com/docs/manual/tutorial/equality-sort-range-guideline/,manual/manual/source/tutorial/equality-sort-range-guideline.txt,manual,6,0,0,0,0,6, -1437,https://www.mongodb.com/docs/manual/tutorial/evaluate-operation-performance/,manual/manual/source/tutorial/evaluate-operation-performance.txt,manual,0,0,0,0,0,0, -1438,https://www.mongodb.com/docs/manual/tutorial/expand-replica-set/,manual/manual/source/tutorial/expand-replica-set.txt,manual,5,0,0,0,0,3, -1439,https://www.mongodb.com/docs/manual/tutorial/expire-data/,manual/manual/source/tutorial/expire-data.txt,manual,12,0,0,0,0,9, -1440,https://www.mongodb.com/docs/manual/tutorial/explain-slow-queries/,manual/manual/source/tutorial/explain-slow-queries.txt,manual,1,0,0,0,0,1, -1441,https://www.mongodb.com/docs/manual/tutorial/find-slow-queries-with-database-profiler/,manual/manual/source/tutorial/find-slow-queries-with-database-profiler.txt,manual,7,3,3,0,0,7, -1442,https://www.mongodb.com/docs/manual/tutorial/force-member-to-be-primary/,manual/manual/source/tutorial/force-member-to-be-primary.txt,manual,6,0,0,0,0,6, -1443,https://www.mongodb.com/docs/manual/tutorial/geospatial-tutorial/,manual/manual/source/tutorial/geospatial-tutorial.txt,manual,11,0,0,0,0,11, -1444,https://www.mongodb.com/docs/manual/tutorial/getting-started/,manual/manual/source/tutorial/getting-started.txt,manual,0,0,0,0,0,0, -1445,https://www.mongodb.com/docs/manual/tutorial/implement-field-level-redaction/,manual/manual/source/tutorial/implement-field-level-redaction.txt,manual,3,0,0,0,0,1, -1446,https://www.mongodb.com/docs/manual/tutorial/insert-documents/,manual/manual/source/tutorial/insert-documents.txt,manual,57,0,0,0,25,9, -1447,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-amazon-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-amazon-tarball.txt,manual,11,0,0,0,0,9, -1448,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-amazon/,manual/manual/source/tutorial/install-mongodb-enterprise-on-amazon.txt,manual,21,0,0,0,0,17, -1449,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-debian-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-debian-tarball.txt,manual,10,0,0,0,0,9, -1450,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-debian/,manual/manual/source/tutorial/install-mongodb-enterprise-on-debian.txt,manual,22,0,0,0,0,22, -1451,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-os-x/,manual/manual/source/tutorial/install-mongodb-enterprise-on-os-x.txt,manual,10,0,0,0,0,9, -1452,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-red-hat-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-red-hat-tarball.txt,manual,26,0,0,0,0,25, -1453,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-red-hat/,manual/manual/source/tutorial/install-mongodb-enterprise-on-red-hat.txt,manual,28,0,0,0,0,24, -1454,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-suse-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-suse-tarball.txt,manual,10,0,0,0,0,9, -1455,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-suse/,manual/manual/source/tutorial/install-mongodb-enterprise-on-suse.txt,manual,14,0,0,0,0,13, -1456,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-ubuntu-tarball/,manual/manual/source/tutorial/install-mongodb-enterprise-on-ubuntu-tarball.txt,manual,13,0,0,0,0,12, -1457,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-ubuntu/,manual/manual/source/tutorial/install-mongodb-enterprise-on-ubuntu.txt,manual,26,0,0,0,0,26, -1458,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-windows-unattended/,manual/manual/source/tutorial/install-mongodb-enterprise-on-windows-unattended.txt,manual,6,0,0,0,0,1, -1459,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-windows-zip/,manual/manual/source/tutorial/install-mongodb-enterprise-on-windows-zip.txt,manual,8,0,0,0,0,1, -1460,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-windows/,manual/manual/source/tutorial/install-mongodb-enterprise-on-windows.txt,manual,6,0,0,0,0,1, -1461,https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-with-docker/,manual/manual/source/tutorial/install-mongodb-enterprise-with-docker.txt,manual,11,0,0,0,0,11, -1462,https://www.mongodb.com/docs/manual/tutorial/iterate-a-cursor/,manual/manual/source/tutorial/iterate-a-cursor.txt,manual,22,10,10,0,0,22, -1463,https://www.mongodb.com/docs/manual/tutorial/kerberos-auth-activedirectory-authz/,manual/manual/source/tutorial/kerberos-auth-activedirectory-authz.txt,manual,22,0,0,0,0,12, -1464,https://www.mongodb.com/docs/manual/tutorial/list-users/,manual/manual/source/tutorial/list-users.txt,manual,1,0,0,0,0,1, -1465,https://www.mongodb.com/docs/manual/tutorial/long-running-queries/,manual/manual/source/tutorial/long-running-queries.txt,manual,17,0,0,0,7,0, -1466,https://www.mongodb.com/docs/manual/tutorial/manage-chained-replication/,manual/manual/source/tutorial/manage-chained-replication.txt,manual,4,0,0,0,0,4, -1467,https://www.mongodb.com/docs/manual/tutorial/manage-indexes/,manual/manual/source/tutorial/manage-indexes.txt,manual,17,0,0,0,0,17, -1468,https://www.mongodb.com/docs/manual/tutorial/manage-journaling/,manual/manual/source/tutorial/manage-journaling.txt,manual,9,0,0,0,0,9, -1469,https://www.mongodb.com/docs/manual/tutorial/manage-mongodb-processes/,manual/manual/source/tutorial/manage-mongodb-processes.txt,manual,11,0,0,0,0,9, -1470,https://www.mongodb.com/docs/manual/tutorial/manage-shard-zone/,manual/manual/source/tutorial/manage-shard-zone.txt,manual,6,0,0,0,0,6, -1471,https://www.mongodb.com/docs/manual/tutorial/manage-shard-zone/update-existing-shard-zone/,manual/manual/source/tutorial/manage-shard-zone/update-existing-shard-zone.txt,manual,6,0,0,0,0,5, -1472,https://www.mongodb.com/docs/manual/tutorial/manage-sharded-cluster-balancer/,manual/manual/source/tutorial/manage-sharded-cluster-balancer.txt,manual,21,0,0,0,0,21, -1473,https://www.mongodb.com/docs/manual/tutorial/manage-the-database-profiler/,manual/manual/source/tutorial/manage-the-database-profiler.txt,manual,21,0,0,0,0,21, -1474,https://www.mongodb.com/docs/manual/tutorial/manage-users-and-roles/,manual/manual/source/tutorial/manage-users-and-roles.txt,manual,12,0,0,0,0,12, -1475,https://www.mongodb.com/docs/manual/tutorial/map-reduce-examples/,manual/manual/source/tutorial/map-reduce-examples.txt,manual,24,0,0,0,0,24, -1476,https://www.mongodb.com/docs/manual/tutorial/measure-index-use/,manual/manual/source/tutorial/measure-index-use.txt,manual,5,0,0,0,0,5, -1477,https://www.mongodb.com/docs/manual/tutorial/merge-chunks-in-sharded-cluster/,manual/manual/source/tutorial/merge-chunks-in-sharded-cluster.txt,manual,8,0,0,0,0,5, -1478,https://www.mongodb.com/docs/manual/tutorial/migrate-chunks-in-sharded-cluster/,manual/manual/source/tutorial/migrate-chunks-in-sharded-cluster.txt,manual,2,0,0,0,0,2, -1479,https://www.mongodb.com/docs/manual/tutorial/migrate-sharded-cluster-to-new-hardware/,manual/manual/source/tutorial/migrate-sharded-cluster-to-new-hardware.txt,manual,11,0,0,0,0,11, -1480,https://www.mongodb.com/docs/manual/tutorial/mitigate-psa-performance-issues/,manual/manual/source/tutorial/mitigate-psa-performance-issues.txt,manual,1,0,0,0,0,1, -1481,https://www.mongodb.com/docs/manual/tutorial/model-data-for-atomic-operations/,manual/manual/source/tutorial/model-data-for-atomic-operations.txt,manual,3,0,0,0,0,3, -1482,https://www.mongodb.com/docs/manual/tutorial/model-data-for-keyword-search/,manual/manual/source/tutorial/model-data-for-keyword-search.txt,manual,3,0,0,0,0,3, -1483,https://www.mongodb.com/docs/manual/tutorial/model-embedded-many-to-many-relationships-between-documents/,manual/manual/source/tutorial/model-embedded-many-to-many-relationships-between-documents.txt,manual,1,0,0,0,0,1, -1484,https://www.mongodb.com/docs/manual/tutorial/model-embedded-one-to-many-relationships-between-documents/,manual/manual/source/tutorial/model-embedded-one-to-many-relationships-between-documents.txt,manual,2,0,0,0,0,2, -1485,https://www.mongodb.com/docs/manual/tutorial/model-embedded-one-to-one-relationships-between-documents/,manual/manual/source/tutorial/model-embedded-one-to-one-relationships-between-documents.txt,manual,2,0,0,0,0,2, -1486,https://www.mongodb.com/docs/manual/tutorial/model-iot-data/,manual/manual/source/tutorial/model-iot-data.txt,manual,4,0,0,0,0,4, -1487,https://www.mongodb.com/docs/manual/tutorial/model-monetary-data/,manual/manual/source/tutorial/model-monetary-data.txt,manual,12,0,0,0,0,12, -1488,https://www.mongodb.com/docs/manual/tutorial/model-referenced-one-to-many-relationships-between-documents/,manual/manual/source/tutorial/model-referenced-one-to-many-relationships-between-documents.txt,manual,3,0,0,0,0,3, -1489,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-ancestors-array/,manual/manual/source/tutorial/model-tree-structures-with-ancestors-array.txt,manual,4,0,0,0,0,4, -1490,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-child-references/,manual/manual/source/tutorial/model-tree-structures-with-child-references.txt,manual,4,0,0,0,0,4, -1491,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-materialized-paths/,manual/manual/source/tutorial/model-tree-structures-with-materialized-paths.txt,manual,5,0,0,0,0,5, -1492,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-nested-sets/,manual/manual/source/tutorial/model-tree-structures-with-nested-sets.txt,manual,2,0,0,0,0,2, -1493,https://www.mongodb.com/docs/manual/tutorial/model-tree-structures-with-parent-references/,manual/manual/source/tutorial/model-tree-structures-with-parent-references.txt,manual,4,0,0,0,0,4, -1494,https://www.mongodb.com/docs/manual/tutorial/modify-chunk-size-in-sharded-cluster/,manual/manual/source/tutorial/modify-chunk-size-in-sharded-cluster.txt,manual,2,0,0,0,0,2, -1495,https://www.mongodb.com/docs/manual/tutorial/modify-psa-replica-set-safely/,manual/manual/source/tutorial/modify-psa-replica-set-safely.txt,manual,2,0,0,0,0,2, -1496,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/advanced-guidance/architecture/,manual/manual/source/tutorial/mongot-sizing/advanced-guidance/architecture.txt,manual,0,0,0,0,0,0, -1497,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/advanced-guidance/hardware/,manual/manual/source/tutorial/mongot-sizing/advanced-guidance/hardware.txt,manual,1,0,0,0,0,1, -1498,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/advanced-guidance/resource-allocation/,manual/manual/source/tutorial/mongot-sizing/advanced-guidance/resource-allocation.txt,manual,2,0,0,0,0,0, -1499,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/introduction/,manual/manual/source/tutorial/mongot-sizing/introduction.txt,manual,0,0,0,0,0,0, -1500,https://www.mongodb.com/docs/manual/tutorial/mongot-sizing/quick-start/,manual/manual/source/tutorial/mongot-sizing/quick-start.txt,manual,0,0,0,0,0,0, -1501,https://www.mongodb.com/docs/manual/tutorial/monitor-slow-queries/,manual/manual/source/tutorial/monitor-slow-queries.txt,manual,2,1,1,0,0,2, -1502,https://www.mongodb.com/docs/manual/tutorial/move-a-collection/,manual/manual/source/tutorial/move-a-collection.txt,manual,5,0,0,0,0,5, -1503,https://www.mongodb.com/docs/manual/tutorial/operation-rejection-filters/,manual/manual/source/tutorial/operation-rejection-filters.txt,manual,12,0,0,0,0,12, -1504,https://www.mongodb.com/docs/manual/tutorial/perform-incremental-map-reduce/,manual/manual/source/tutorial/perform-incremental-map-reduce.txt,manual,23,0,0,0,0,23, -1505,https://www.mongodb.com/docs/manual/tutorial/perform-maintence-on-replica-set-members/,manual/manual/source/tutorial/perform-maintence-on-replica-set-members.txt,manual,11,0,0,0,0,9, -1506,https://www.mongodb.com/docs/manual/tutorial/project-fields-from-query-results/,manual/manual/source/tutorial/project-fields-from-query-results.txt,manual,207,14,14,0,54,66, -1507,https://www.mongodb.com/docs/manual/tutorial/query-array-of-documents/,manual/manual/source/tutorial/query-array-of-documents.txt,manual,127,0,0,0,54,28, -1508,https://www.mongodb.com/docs/manual/tutorial/query-arrays/,manual/manual/source/tutorial/query-arrays.txt,manual,182,0,0,0,76,36, -1509,https://www.mongodb.com/docs/manual/tutorial/query-documents/,manual/manual/source/tutorial/query-documents.txt,manual,152,0,0,0,66,29, -1510,https://www.mongodb.com/docs/manual/tutorial/query-documents/specify-query-timeout/,manual/manual/source/tutorial/query-documents/specify-query-timeout.txt,manual,0,0,0,0,0,0, -1511,https://www.mongodb.com/docs/manual/tutorial/query-embedded-documents/,manual/manual/source/tutorial/query-embedded-documents.txt,manual,131,0,0,2,58,27, -1512,https://www.mongodb.com/docs/manual/tutorial/query-for-null-fields/,manual/manual/source/tutorial/query-for-null-fields.txt,manual,73,0,0,0,30,18, -1513,https://www.mongodb.com/docs/manual/tutorial/reconfigure-replica-set-with-unavailable-members/,manual/manual/source/tutorial/reconfigure-replica-set-with-unavailable-members.txt,manual,3,0,0,0,0,3, -1514,https://www.mongodb.com/docs/manual/tutorial/recover-data-following-unexpected-shutdown/,manual/manual/source/tutorial/recover-data-following-unexpected-shutdown.txt,manual,2,0,0,0,0,1, -1515,https://www.mongodb.com/docs/manual/tutorial/remove-documents/,manual/manual/source/tutorial/remove-documents.txt,manual,100,0,0,0,46,19, -1516,https://www.mongodb.com/docs/manual/tutorial/remove-replica-set-member/,manual/manual/source/tutorial/remove-replica-set-member.txt,manual,6,0,0,0,0,6, -1517,https://www.mongodb.com/docs/manual/tutorial/remove-shards-from-cluster/,manual/manual/source/tutorial/remove-shards-from-cluster.txt,manual,12,0,0,0,0,12, -1518,https://www.mongodb.com/docs/manual/tutorial/rename-unsharded-replica-set/,manual/manual/source/tutorial/rename-unsharded-replica-set.txt,manual,1,0,0,0,0,1, -1519,https://www.mongodb.com/docs/manual/tutorial/replace-config-server/,manual/manual/source/tutorial/replace-config-server.txt,manual,5,0,0,0,0,5, -1520,https://www.mongodb.com/docs/manual/tutorial/replace-replica-set-member/,manual/manual/source/tutorial/replace-replica-set-member.txt,manual,1,0,0,0,0,1, -1521,https://www.mongodb.com/docs/manual/tutorial/resharding-back-to-same-key/,manual/manual/source/tutorial/resharding-back-to-same-key.txt,manual,6,0,0,0,0,4, -1522,https://www.mongodb.com/docs/manual/tutorial/resharding-for-adding-and-removing-shards/,manual/manual/source/tutorial/resharding-for-adding-and-removing-shards.txt,manual,5,0,0,0,0,3, -1523,https://www.mongodb.com/docs/manual/tutorial/restart-sharded-cluster/,manual/manual/source/tutorial/restart-sharded-cluster.txt,manual,11,0,0,0,0,11, -1524,https://www.mongodb.com/docs/manual/tutorial/restore-replica-set-from-backup/,manual/manual/source/tutorial/restore-replica-set-from-backup.txt,manual,6,0,0,0,0,6, -1525,https://www.mongodb.com/docs/manual/tutorial/restore-sharded-cluster/,manual/manual/source/tutorial/restore-sharded-cluster.txt,manual,51,0,0,0,0,44, -1526,https://www.mongodb.com/docs/manual/tutorial/resync-replica-set-member/,manual/manual/source/tutorial/resync-replica-set-member.txt,manual,0,0,0,0,0,0, -1527,https://www.mongodb.com/docs/manual/tutorial/rotate-encryption-key/,manual/manual/source/tutorial/rotate-encryption-key.txt,manual,7,0,0,0,0,7, -1528,https://www.mongodb.com/docs/manual/tutorial/rotate-key-replica-set/,manual/manual/source/tutorial/rotate-key-replica-set.txt,manual,6,0,0,0,0,6, -1529,https://www.mongodb.com/docs/manual/tutorial/rotate-key-sharded-cluster/,manual/manual/source/tutorial/rotate-key-sharded-cluster.txt,manual,14,0,0,0,0,14, -1530,https://www.mongodb.com/docs/manual/tutorial/rotate-log-files/,manual/manual/source/tutorial/rotate-log-files.txt,manual,7,0,0,0,0,7, -1531,https://www.mongodb.com/docs/manual/tutorial/rotate-x509-member-cert/,manual/manual/source/tutorial/rotate-x509-member-cert.txt,manual,8,0,0,0,0,4, -1532,https://www.mongodb.com/docs/manual/tutorial/rotate-x509-membership-certificates/,manual/manual/source/tutorial/rotate-x509-membership-certificates.txt,manual,8,0,0,0,0,4, -1533,https://www.mongodb.com/docs/manual/tutorial/rotate-x509-to-extensionValue/,manual/manual/source/tutorial/rotate-x509-to-extensionValue.txt,manual,8,0,0,0,0,4, -1534,https://www.mongodb.com/docs/manual/tutorial/schedule-backup-window-for-sharded-clusters/,manual/manual/source/tutorial/schedule-backup-window-for-sharded-clusters.txt,manual,1,0,0,0,0,1, -1535,https://www.mongodb.com/docs/manual/tutorial/shard-collection-with-unique-index/,manual/manual/source/tutorial/shard-collection-with-unique-index.txt,manual,6,3,3,0,0,6, -1536,https://www.mongodb.com/docs/manual/tutorial/sharding-distribute-collections-with-zones/,manual/manual/source/tutorial/sharding-distribute-collections-with-zones.txt,manual,6,0,0,0,0,6, -1537,https://www.mongodb.com/docs/manual/tutorial/sharding-high-availability-writes/,manual/manual/source/tutorial/sharding-high-availability-writes.txt,manual,11,0,0,0,0,11, -1538,https://www.mongodb.com/docs/manual/tutorial/sharding-segmenting-data-by-location/,manual/manual/source/tutorial/sharding-segmenting-data-by-location.txt,manual,16,0,0,0,0,16, -1539,https://www.mongodb.com/docs/manual/tutorial/sharding-segmenting-shards/,manual/manual/source/tutorial/sharding-segmenting-shards.txt,manual,10,0,0,0,0,10, -1540,https://www.mongodb.com/docs/manual/tutorial/sharding-tiered-hardware-for-varying-slas/,manual/manual/source/tutorial/sharding-tiered-hardware-for-varying-slas.txt,manual,15,0,0,0,0,15, -1541,https://www.mongodb.com/docs/manual/tutorial/sort-results-with-indexes/,manual/manual/source/tutorial/sort-results-with-indexes.txt,manual,25,0,0,0,0,20, -1542,https://www.mongodb.com/docs/manual/tutorial/split-chunks-in-sharded-cluster/,manual/manual/source/tutorial/split-chunks-in-sharded-cluster.txt,manual,2,0,0,0,0,2, -1543,https://www.mongodb.com/docs/manual/tutorial/start-a-sharded-cluster-with-config-shard/,manual/manual/source/tutorial/start-a-sharded-cluster-with-config-shard.txt,manual,12,1,1,0,0,10, -1544,https://www.mongodb.com/docs/manual/tutorial/stop-moving-a-collection/,manual/manual/source/tutorial/stop-moving-a-collection.txt,manual,4,0,0,0,0,4, -1545,https://www.mongodb.com/docs/manual/tutorial/stop-unsharding-collection/,manual/manual/source/tutorial/stop-unsharding-collection.txt,manual,3,0,0,0,0,3, -1546,https://www.mongodb.com/docs/manual/tutorial/store-javascript-function-on-server/,manual/manual/source/tutorial/store-javascript-function-on-server.txt,manual,8,2,2,0,0,8, -1547,https://www.mongodb.com/docs/manual/tutorial/terminate-running-operations/,manual/manual/source/tutorial/terminate-running-operations.txt,manual,4,0,0,0,0,4, -1548,https://www.mongodb.com/docs/manual/tutorial/text-search-in-aggregation/,manual/manual/source/tutorial/text-search-in-aggregation.txt,manual,5,0,0,0,0,5, -1549,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-kerberos/,manual/manual/source/tutorial/troubleshoot-kerberos.txt,manual,5,0,0,0,0,5, -1550,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-map-function/,manual/manual/source/tutorial/troubleshoot-map-function.txt,manual,6,0,0,0,0,6, -1551,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-reduce-function/,manual/manual/source/tutorial/troubleshoot-reduce-function.txt,manual,18,0,0,0,0,18, -1552,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-replica-sets/,manual/manual/source/tutorial/troubleshoot-replica-sets.txt,manual,13,0,0,0,0,10, -1553,https://www.mongodb.com/docs/manual/tutorial/troubleshoot-sharded-clusters/,manual/manual/source/tutorial/troubleshoot-sharded-clusters.txt,manual,4,1,1,0,0,1, -1554,https://www.mongodb.com/docs/manual/tutorial/unique-constraints-on-arbitrary-fields/,manual/manual/source/tutorial/unique-constraints-on-arbitrary-fields.txt,manual,3,0,0,0,0,3, -1555,https://www.mongodb.com/docs/manual/tutorial/unique-indexes-schema-validation/,manual/manual/source/tutorial/unique-indexes-schema-validation.txt,manual,14,5,5,0,0,9, -1556,https://www.mongodb.com/docs/manual/tutorial/unshard-collection/,manual/manual/source/tutorial/unshard-collection.txt,manual,3,0,0,0,0,3, -1557,https://www.mongodb.com/docs/manual/tutorial/update-documents-with-aggregation-pipeline/,manual/manual/source/tutorial/update-documents-with-aggregation-pipeline.txt,manual,24,0,0,0,0,24, -1558,https://www.mongodb.com/docs/manual/tutorial/update-documents/,manual/manual/source/tutorial/update-documents.txt,manual,67,0,0,0,30,10, -1559,https://www.mongodb.com/docs/manual/tutorial/upgrade-cluster-to-ssl/,manual/manual/source/tutorial/upgrade-cluster-to-ssl.txt,manual,8,0,0,0,0,6, -1560,https://www.mongodb.com/docs/manual/tutorial/upgrade-keyfile-to-x509/,manual/manual/source/tutorial/upgrade-keyfile-to-x509.txt,manual,14,0,0,0,0,9, -1561,https://www.mongodb.com/docs/manual/tutorial/upgrade-revision/,manual/manual/source/tutorial/upgrade-revision.txt,manual,2,0,0,0,0,2, -1562,https://www.mongodb.com/docs/manual/tutorial/upgrade-to-enterprise-replica-set/,manual/manual/source/tutorial/upgrade-to-enterprise-replica-set.txt,manual,0,0,0,0,0,0, -1563,https://www.mongodb.com/docs/manual/tutorial/upgrade-to-enterprise-sharded-cluster/,manual/manual/source/tutorial/upgrade-to-enterprise-sharded-cluster.txt,manual,7,0,0,0,0,7, -1564,https://www.mongodb.com/docs/manual/tutorial/upgrade-to-enterprise-standalone/,manual/manual/source/tutorial/upgrade-to-enterprise-standalone.txt,manual,0,0,0,0,0,0, -1565,https://www.mongodb.com/docs/manual/tutorial/use-database-commands/,manual/manual/source/tutorial/use-database-commands.txt,manual,4,0,0,0,0,4, -1566,https://www.mongodb.com/docs/manual/tutorial/use-mql-to-update-an-array/,manual/manual/source/tutorial/use-mql-to-update-an-array.txt,manual,15,5,5,0,0,15, -1567,https://www.mongodb.com/docs/manual/tutorial/verify-mongodb-packages/,manual/manual/source/tutorial/verify-mongodb-packages.txt,manual,18,0,0,0,0,17, -1568,https://www.mongodb.com/docs/manual/tutorial/view-sharded-cluster-configuration/,manual/manual/source/tutorial/view-sharded-cluster-configuration.txt,manual,3,0,0,0,0,3, -1569,https://www.mongodb.com/docs/atlas/access-tracking/,atlas/source/access-tracking.txt,atlas,0,0,0,0,0,0, -1570,https://www.mongodb.com/docs/atlas/access/manage-org-users/,atlas/source/access/manage-org-users.txt,atlas,0,0,0,0,0,0, -1571,https://www.mongodb.com/docs/atlas/access/manage-project-access/,atlas/source/access/manage-project-access.txt,atlas,0,0,0,0,0,0, -1572,https://www.mongodb.com/docs/atlas/access/manage-teams-in-orgs/,atlas/source/access/manage-teams-in-orgs.txt,atlas,0,0,0,0,0,0, -1573,https://www.mongodb.com/docs/atlas/access/orgs-create-view-edit-delete/,atlas/source/access/orgs-create-view-edit-delete.txt,atlas,0,0,0,0,0,0, -1574,https://www.mongodb.com/docs/atlas/ai-and-data-usage-information/,atlas/source/ai-and-data-usage-information.txt,atlas,6,0,0,0,0,0, -1575,https://www.mongodb.com/docs/atlas/ai-cluster-assistant/,atlas/source/ai-cluster-assistant.txt,atlas,8,4,4,0,0,0, -1576,https://www.mongodb.com/docs/atlas/ai-integrations/,atlas/source/ai-integrations.txt,atlas,0,0,0,0,0,0, -1577,https://www.mongodb.com/docs/atlas/ai-integrations/agent-frameworks/,atlas/source/ai-integrations/agent-frameworks.txt,atlas,0,0,0,0,0,0, -1578,https://www.mongodb.com/docs/atlas/ai-integrations/ai-api-resources/,atlas/source/ai-integrations/ai-api-resources.txt,atlas,0,0,0,0,0,0, -1579,https://www.mongodb.com/docs/atlas/ai-integrations/amazon-bedrock/,atlas/source/ai-integrations/amazon-bedrock.txt,atlas,6,1,1,0,0,0, -1580,https://www.mongodb.com/docs/atlas/ai-integrations/amazon-bedrock/hybrid-search/,atlas/source/ai-integrations/amazon-bedrock/hybrid-search.txt,atlas,1,0,0,0,0,0, -1581,https://www.mongodb.com/docs/atlas/ai-integrations/amazon-bedrock/troubleshooting/,atlas/source/ai-integrations/amazon-bedrock/troubleshooting.txt,atlas,1,0,0,0,0,0, -1582,https://www.mongodb.com/docs/atlas/ai-integrations/community-frameworks/,atlas/source/ai-integrations/community-frameworks.txt,atlas,0,0,0,0,0,0, -1583,https://www.mongodb.com/docs/atlas/ai-integrations/crewai/,atlas/source/ai-integrations/crewai.txt,atlas,6,0,0,0,3,2, -1584,https://www.mongodb.com/docs/atlas/ai-integrations/crewai/build-agents/,atlas/source/ai-integrations/crewai/build-agents.txt,atlas,7,1,1,0,1,1, -1585,https://www.mongodb.com/docs/atlas/ai-integrations/frameworks/,atlas/source/ai-integrations/frameworks.txt,atlas,0,0,0,0,0,0, -1586,https://www.mongodb.com/docs/atlas/ai-integrations/google-vertex-ai/,atlas/source/ai-integrations/google-vertex-ai.txt,atlas,3,0,0,0,0,3, -1587,https://www.mongodb.com/docs/atlas/ai-integrations/google-vertex-ai/agent-engine/,atlas/source/ai-integrations/google-vertex-ai/agent-engine.txt,atlas,18,3,3,0,12,1, -1588,https://www.mongodb.com/docs/atlas/ai-integrations/google-vertex-ai/extensions/,atlas/source/ai-integrations/google-vertex-ai/extensions.txt,atlas,15,0,0,0,10,0, -1589,https://www.mongodb.com/docs/atlas/ai-integrations/haystack/,atlas/source/ai-integrations/haystack.txt,atlas,24,4,4,0,18,0, -1590,https://www.mongodb.com/docs/atlas/ai-integrations/langchain-js/,atlas/source/ai-integrations/langchain-js.txt,atlas,24,5,5,0,0,14, -1591,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/,atlas/source/ai-integrations/langchain.txt,atlas,18,0,0,0,18,0, -1592,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/evaluate-rag/,atlas/source/ai-integrations/langchain/evaluate-rag.txt,atlas,17,0,0,0,14,1, -1593,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/get-started/,atlas/source/ai-integrations/langchain/get-started.txt,atlas,20,6,6,0,12,0, -1594,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/graph-rag/,atlas/source/ai-integrations/langchain/graph-rag.txt,atlas,10,1,1,0,7,0, -1595,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/hybrid-search/,atlas/source/ai-integrations/langchain/hybrid-search.txt,atlas,13,2,2,0,9,0, -1596,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/local-rag/,atlas/source/ai-integrations/langchain/local-rag.txt,atlas,10,1,1,0,7,2, -1597,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/memory-semantic-cache/,atlas/source/ai-integrations/langchain/memory-semantic-cache.txt,atlas,18,2,2,0,13,1, -1598,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/natural-language-to-mql/,atlas/source/ai-integrations/langchain/natural-language-to-mql.txt,atlas,7,1,1,0,1,1, -1599,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/parent-document-retrieval/,atlas/source/ai-integrations/langchain/parent-document-retrieval.txt,atlas,16,3,3,0,9,0, -1600,https://www.mongodb.com/docs/atlas/ai-integrations/langchain/self-query-retrieval/,atlas/source/ai-integrations/langchain/self-query-retrieval.txt,atlas,17,4,4,0,10,1, -1601,https://www.mongodb.com/docs/atlas/ai-integrations/langchain4j/,atlas/source/ai-integrations/langchain4j.txt,atlas,23,3,3,0,15,0, -1602,https://www.mongodb.com/docs/atlas/ai-integrations/langchaingo/,atlas/source/ai-integrations/langchaingo.txt,atlas,41,8,8,0,17,8, -1603,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph-js/,atlas/source/ai-integrations/langgraph-js.txt,atlas,4,0,0,0,0,4, -1604,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph-js/build-agents/,atlas/source/ai-integrations/langgraph-js/build-agents.txt,atlas,25,3,3,0,0,2, -1605,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph/,atlas/source/ai-integrations/langgraph.txt,atlas,10,0,0,0,8,2, -1606,https://www.mongodb.com/docs/atlas/ai-integrations/langgraph/build-agents/,atlas/source/ai-integrations/langgraph/build-agents.txt,atlas,12,1,1,0,7,1, -1607,https://www.mongodb.com/docs/atlas/ai-integrations/llamaindex/,atlas/source/ai-integrations/llamaindex.txt,atlas,26,6,4,0,20,0, -1608,https://www.mongodb.com/docs/atlas/ai-integrations/mastra/,atlas/source/ai-integrations/mastra.txt,atlas,8,0,0,0,0,1, -1609,https://www.mongodb.com/docs/atlas/ai-integrations/n8n/,atlas/source/ai-integrations/n8n.txt,atlas,5,0,0,0,0,0, -1610,https://www.mongodb.com/docs/atlas/ai-integrations/n8n/build-ai-agent/,atlas/source/ai-integrations/n8n/build-ai-agent.txt,atlas,6,2,2,0,0,0, -1611,https://www.mongodb.com/docs/atlas/ai-integrations/platforms/,atlas/source/ai-integrations/platforms.txt,atlas,0,0,0,0,0,0, -1612,https://www.mongodb.com/docs/atlas/ai-integrations/semantic-kernel-csharp/,atlas/source/ai-integrations/semantic-kernel-csharp.txt,atlas,13,2,2,0,3,5, -1613,https://www.mongodb.com/docs/atlas/ai-integrations/semantic-kernel-python/,atlas/source/ai-integrations/semantic-kernel-python.txt,atlas,15,3,3,0,10,0, -1614,https://www.mongodb.com/docs/atlas/ai-integrations/semantic-kernel/,atlas/source/ai-integrations/semantic-kernel.txt,atlas,0,0,0,0,0,0, -1615,https://www.mongodb.com/docs/atlas/ai-integrations/spring-ai/,atlas/source/ai-integrations/spring-ai.txt,atlas,19,2,2,0,9,2, -1616,https://www.mongodb.com/docs/atlas/ai-integrations/tools/,atlas/source/ai-integrations/tools.txt,atlas,0,0,0,0,0,0, -1617,https://www.mongodb.com/docs/atlas/alert-basics/,atlas/source/alert-basics.txt,atlas,0,0,0,0,0,0, -1618,https://www.mongodb.com/docs/atlas/alert-resolutions/,atlas/source/alert-resolutions.txt,atlas,0,0,0,0,0,0, -1619,https://www.mongodb.com/docs/atlas/alerts/,atlas/source/alerts.txt,atlas,0,0,0,0,0,0, -1620,https://www.mongodb.com/docs/atlas/analyze-slow-queries/,atlas/source/analyze-slow-queries.txt,atlas,0,0,0,0,0,0, -1621,https://www.mongodb.com/docs/atlas/api/,atlas/source/api.txt,atlas,0,0,0,0,0,0, -1622,https://www.mongodb.com/docs/atlas/api/api-authentication/,atlas/source/api/api-authentication.txt,atlas,0,0,0,0,0,0, -1623,https://www.mongodb.com/docs/atlas/api/api-rate-limit/,atlas/source/api/api-rate-limit.txt,atlas,4,0,0,0,0,4, -1624,https://www.mongodb.com/docs/atlas/api/api-upgrades/,atlas/source/api/api-upgrades.txt,atlas,0,0,0,0,0,0, -1625,https://www.mongodb.com/docs/atlas/api/atlas-admin-api-ref/,atlas/source/api/atlas-admin-api-ref.txt,atlas,2,0,0,0,0,1, -1626,https://www.mongodb.com/docs/atlas/api/atlas-admin-api/,atlas/source/api/atlas-admin-api.txt,atlas,0,0,0,0,0,0, -1627,https://www.mongodb.com/docs/atlas/api/migrate-to-new-version/,atlas/source/api/migrate-to-new-version.txt,atlas,5,0,0,0,0,5, -1628,https://www.mongodb.com/docs/atlas/api/service-accounts/generate-oauth2-token/,atlas/source/api/service-accounts/generate-oauth2-token.txt,atlas,17,0,0,0,0,1, -1629,https://www.mongodb.com/docs/atlas/api/service-accounts/revoke-oauth2-token/,atlas/source/api/service-accounts/revoke-oauth2-token.txt,atlas,16,0,0,0,0,1, -1630,https://www.mongodb.com/docs/atlas/api/versioned-api-overview/,atlas/source/api/versioned-api-overview.txt,atlas,3,0,0,0,0,3, -1631,https://www.mongodb.com/docs/atlas/atlas-data-processing/,atlas/source/atlas-data-processing.txt,atlas,0,0,0,0,0,0, -1632,https://www.mongodb.com/docs/atlas/atlas-resource-policies/,atlas/source/atlas-resource-policies.txt,atlas,64,0,0,0,0,4, -1633,https://www.mongodb.com/docs/atlas/atlas-search/,atlas/source/atlas-search.txt,atlas,0,0,0,0,0,0, -1634,https://www.mongodb.com/docs/atlas/atlas-search/about/deployment-options/,atlas/source/atlas-search/about/deployment-options.txt,atlas,0,0,0,0,0,0, -1635,https://www.mongodb.com/docs/atlas/atlas-search/about/feature-compatibility/,atlas/source/atlas-search/about/feature-compatibility.txt,atlas,0,0,0,0,0,0, -1636,https://www.mongodb.com/docs/atlas/atlas-search/accuracy/,atlas/source/atlas-search/accuracy.txt,atlas,0,0,0,0,0,0, -1637,https://www.mongodb.com/docs/atlas/atlas-search/aggregation-stages/search/,atlas/source/atlas-search/aggregation-stages/search.txt,atlas,4,1,1,0,0,0, -1638,https://www.mongodb.com/docs/atlas/atlas-search/aggregation-stages/searchMeta/,atlas/source/atlas-search/aggregation-stages/searchMeta.txt,atlas,4,1,1,0,0,0, -1639,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/,atlas/source/atlas-search/analyzers.txt,atlas,4,0,0,0,0,0, -1640,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/character-filters/,atlas/source/atlas-search/analyzers/character-filters.txt,atlas,25,8,8,0,8,0, -1641,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/custom/,atlas/source/atlas-search/analyzers/custom.txt,atlas,3,0,0,0,0,0, -1642,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/keyword/,atlas/source/atlas-search/analyzers/keyword.txt,atlas,7,2,2,0,1,0, -1643,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/language/,atlas/source/atlas-search/analyzers/language.txt,atlas,12,4,4,0,0,3, -1644,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/multi/,atlas/source/atlas-search/analyzers/multi.txt,atlas,12,4,4,0,4,0, -1645,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/simple/,atlas/source/atlas-search/analyzers/simple.txt,atlas,6,2,2,0,1,0, -1646,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/standard/,atlas/source/atlas-search/analyzers/standard.txt,atlas,6,2,2,0,1,0, -1647,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/token-filters/,atlas/source/atlas-search/analyzers/token-filters.txt,atlas,144,45,45,0,38,2, -1648,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/tokenizers/,atlas/source/atlas-search/analyzers/tokenizers.txt,atlas,55,18,18,0,18,0, -1649,https://www.mongodb.com/docs/atlas/atlas-search/analyzers/whitespace/,atlas/source/atlas-search/analyzers/whitespace.txt,atlas,6,2,2,0,0,0, -1650,https://www.mongodb.com/docs/atlas/atlas-search/changelog/,atlas/source/atlas-search/changelog.txt,atlas,0,0,0,0,0,0, -1651,https://www.mongodb.com/docs/atlas/atlas-search/concurrent-query/,atlas/source/atlas-search/concurrent-query.txt,atlas,2,0,0,0,0,0, -1652,https://www.mongodb.com/docs/atlas/atlas-search/counting/,atlas/source/atlas-search/counting.txt,atlas,12,2,2,0,0,0, -1653,https://www.mongodb.com/docs/atlas/atlas-search/customize-score/,atlas/source/atlas-search/customize-score.txt,atlas,150,41,41,0,53,48, -1654,https://www.mongodb.com/docs/atlas/atlas-search/define-field-mappings/,atlas/source/atlas-search/define-field-mappings.txt,atlas,12,0,0,0,0,0, -1655,https://www.mongodb.com/docs/atlas/atlas-search/design-patterns/,atlas/source/atlas-search/design-patterns.txt,atlas,0,0,0,0,0,0, -1656,https://www.mongodb.com/docs/atlas/atlas-search/explain/,atlas/source/atlas-search/explain.txt,atlas,23,3,3,0,0,8, -1657,https://www.mongodb.com/docs/atlas/atlas-search/faq/,atlas/source/atlas-search/faq.txt,atlas,0,0,0,0,0,0, -1658,https://www.mongodb.com/docs/atlas/atlas-search/field-types/array-type/,atlas/source/atlas-search/field-types/array-type.txt,atlas,4,0,0,0,0,2, -1659,https://www.mongodb.com/docs/atlas/atlas-search/field-types/autocomplete-type/,atlas/source/atlas-search/field-types/autocomplete-type.txt,atlas,100,9,9,0,20,34, -1660,https://www.mongodb.com/docs/atlas/atlas-search/field-types/boolean-type/,atlas/source/atlas-search/field-types/boolean-type.txt,atlas,60,9,9,0,8,25, -1661,https://www.mongodb.com/docs/atlas/atlas-search/field-types/date-facet-type/,atlas/source/atlas-search/field-types/date-facet-type.txt,atlas,3,0,0,0,0,0, -1662,https://www.mongodb.com/docs/atlas/atlas-search/field-types/date-type/,atlas/source/atlas-search/field-types/date-type.txt,atlas,72,9,9,0,12,28, -1663,https://www.mongodb.com/docs/atlas/atlas-search/field-types/document-type/,atlas/source/atlas-search/field-types/document-type.txt,atlas,72,9,9,0,12,28, -1664,https://www.mongodb.com/docs/atlas/atlas-search/field-types/embedded-documents-type/,atlas/source/atlas-search/field-types/embedded-documents-type.txt,atlas,127,9,9,0,28,52, -1665,https://www.mongodb.com/docs/atlas/atlas-search/field-types/geo-type/,atlas/source/atlas-search/field-types/geo-type.txt,atlas,60,9,9,0,8,25, -1666,https://www.mongodb.com/docs/atlas/atlas-search/field-types/knn-vector/,atlas/source/atlas-search/field-types/knn-vector.txt,atlas,3,0,0,0,0,0, -1667,https://www.mongodb.com/docs/atlas/atlas-search/field-types/number-facet-type/,atlas/source/atlas-search/field-types/number-facet-type.txt,atlas,3,0,0,0,0,0, -1668,https://www.mongodb.com/docs/atlas/atlas-search/field-types/number-type/,atlas/source/atlas-search/field-types/number-type.txt,atlas,90,15,15,0,16,31, -1669,https://www.mongodb.com/docs/atlas/atlas-search/field-types/object-id-type/,atlas/source/atlas-search/field-types/object-id-type.txt,atlas,58,9,9,0,8,27, -1670,https://www.mongodb.com/docs/atlas/atlas-search/field-types/string-facet-type/,atlas/source/atlas-search/field-types/string-facet-type.txt,atlas,3,0,0,0,0,0, -1671,https://www.mongodb.com/docs/atlas/atlas-search/field-types/string-type/,atlas/source/atlas-search/field-types/string-type.txt,atlas,73,11,11,0,12,28, -1672,https://www.mongodb.com/docs/atlas/atlas-search/field-types/token-type/,atlas/source/atlas-search/field-types/token-type.txt,atlas,74,11,11,0,12,28, -1673,https://www.mongodb.com/docs/atlas/atlas-search/field-types/uuid-type/,atlas/source/atlas-search/field-types/uuid-type.txt,atlas,48,9,9,0,4,22, -1674,https://www.mongodb.com/docs/atlas/atlas-search/field-types/vector-type/,atlas/source/atlas-search/field-types/vector-type.txt,atlas,59,10,10,0,8,24, -1675,https://www.mongodb.com/docs/atlas/atlas-search/highlighting/,atlas/source/atlas-search/highlighting.txt,atlas,16,6,6,0,0,1, -1676,https://www.mongodb.com/docs/atlas/atlas-search/index-definitions/,atlas/source/atlas-search/index-definitions.txt,atlas,3,0,0,0,0,1, -1677,https://www.mongodb.com/docs/atlas/atlas-search/index-partition/,atlas/source/atlas-search/index-partition.txt,atlas,10,0,0,0,3,3, -1678,https://www.mongodb.com/docs/atlas/atlas-search/manage-indexes/,atlas/source/atlas-search/manage-indexes.txt,atlas,92,6,6,0,21,46, -1679,https://www.mongodb.com/docs/atlas/atlas-search/monitoring/,atlas/source/atlas-search/monitoring.txt,atlas,0,0,0,0,0,0, -1680,https://www.mongodb.com/docs/atlas/atlas-search/operators-and-collectors/,atlas/source/atlas-search/operators-and-collectors.txt,atlas,0,0,0,0,0,0, -1681,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/autocomplete/,atlas/source/atlas-search/operators-collectors/autocomplete.txt,atlas,242,2,2,0,89,10, -1682,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/compound/,atlas/source/atlas-search/operators-collectors/compound.txt,atlas,22,8,8,0,0,17, -1683,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/embedded-document/,atlas/source/atlas-search/operators-collectors/embedded-document.txt,atlas,10,4,4,0,0,1, -1684,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/equals/,atlas/source/atlas-search/operators-collectors/equals.txt,atlas,23,2,2,0,0,18, -1685,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/exists/,atlas/source/atlas-search/operators-collectors/exists.txt,atlas,7,2,2,0,0,6, -1686,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/facet/,atlas/source/atlas-search/operators-collectors/facet.txt,atlas,26,8,6,0,0,8, -1687,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/geoShape/,atlas/source/atlas-search/operators-collectors/geoShape.txt,atlas,10,4,4,0,0,5, -1688,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/geoWithin/,atlas/source/atlas-search/operators-collectors/geoWithin.txt,atlas,10,4,4,0,0,0, -1689,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/hasAncestor/,atlas/source/atlas-search/operators-collectors/hasAncestor.txt,atlas,4,1,1,0,0,3, -1690,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/hasRoot/,atlas/source/atlas-search/operators-collectors/hasRoot.txt,atlas,8,3,3,0,0,7, -1691,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/in/,atlas/source/atlas-search/operators-collectors/in.txt,atlas,10,4,4,0,0,0, -1692,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/knn-beta/,atlas/source/atlas-search/operators-collectors/knn-beta.txt,atlas,8,2,2,0,0,4, -1693,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/morelikethis/,atlas/source/atlas-search/operators-collectors/morelikethis.txt,atlas,16,6,6,0,0,9, -1694,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/near/,atlas/source/atlas-search/operators-collectors/near.txt,atlas,16,2,2,0,0,8, -1695,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/phrase/,atlas/source/atlas-search/operators-collectors/phrase.txt,atlas,11,5,5,0,0,4, -1696,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/queryString/,atlas/source/atlas-search/operators-collectors/queryString.txt,atlas,30,12,12,0,0,11, -1697,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/range/,atlas/source/atlas-search/operators-collectors/range.txt,atlas,27,8,8,0,0,18, -1698,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/regex/,atlas/source/atlas-search/operators-collectors/regex.txt,atlas,10,3,3,0,0,8, -1699,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/span/,atlas/source/atlas-search/operators-collectors/span.txt,atlas,19,6,6,0,0,8, -1700,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/text/,atlas/source/atlas-search/operators-collectors/text.txt,atlas,19,9,9,0,0,4, -1701,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/vectorSearch/,atlas/source/atlas-search/operators-collectors/vectorSearch.txt,atlas,27,5,5,0,0,26, -1702,https://www.mongodb.com/docs/atlas/atlas-search/operators-collectors/wildcard/,atlas/source/atlas-search/operators-collectors/wildcard.txt,atlas,60,27,27,0,35,1, -1703,https://www.mongodb.com/docs/atlas/atlas-search/paginate-results/,atlas/source/atlas-search/paginate-results.txt,atlas,16,6,6,0,0,0, -1704,https://www.mongodb.com/docs/atlas/atlas-search/path-construction/,atlas/source/atlas-search/path-construction.txt,atlas,27,0,0,0,0,11, -1705,https://www.mongodb.com/docs/atlas/atlas-search/performance-options/,atlas/source/atlas-search/performance-options.txt,atlas,0,0,0,0,0,0, -1706,https://www.mongodb.com/docs/atlas/atlas-search/performance/,atlas/source/atlas-search/performance.txt,atlas,0,0,0,0,0,0, -1707,https://www.mongodb.com/docs/atlas/atlas-search/performance/index-performance/,atlas/source/atlas-search/performance/index-performance.txt,atlas,9,0,0,0,0,6, -1708,https://www.mongodb.com/docs/atlas/atlas-search/performance/query-performance/,atlas/source/atlas-search/performance/query-performance.txt,atlas,1,0,0,0,0,0, -1709,https://www.mongodb.com/docs/atlas/atlas-search/playground/,atlas/source/atlas-search/playground.txt,atlas,0,0,0,0,0,0, -1710,https://www.mongodb.com/docs/atlas/atlas-search/query-ref/,atlas/source/atlas-search/query-ref.txt,atlas,1,0,0,0,0,1, -1711,https://www.mongodb.com/docs/atlas/atlas-search/query-syntax/,atlas/source/atlas-search/query-syntax.txt,atlas,0,0,0,0,0,0, -1712,https://www.mongodb.com/docs/atlas/atlas-search/return-scope/,atlas/source/atlas-search/return-scope.txt,atlas,8,2,2,0,0,4, -1713,https://www.mongodb.com/docs/atlas/atlas-search/return-stored-source/,atlas/source/atlas-search/return-stored-source.txt,atlas,7,0,0,0,0,0, -1714,https://www.mongodb.com/docs/atlas/atlas-search/score/get-details/,atlas/source/atlas-search/score/get-details.txt,atlas,28,10,10,0,0,1, -1715,https://www.mongodb.com/docs/atlas/atlas-search/score/modify-score/,atlas/source/atlas-search/score/modify-score.txt,atlas,33,0,0,0,0,6, -1716,https://www.mongodb.com/docs/atlas/atlas-search/scoring/,atlas/source/atlas-search/scoring.txt,atlas,3,0,0,0,0,3, -1717,https://www.mongodb.com/docs/atlas/atlas-search/search-options/,atlas/source/atlas-search/search-options.txt,atlas,0,0,0,0,0,0, -1718,https://www.mongodb.com/docs/atlas/atlas-search/searching/,atlas/source/atlas-search/searching.txt,atlas,14,2,2,0,0,0, -1719,https://www.mongodb.com/docs/atlas/atlas-search/sort/,atlas/source/atlas-search/sort.txt,atlas,137,47,47,0,31,32, -1720,https://www.mongodb.com/docs/atlas/atlas-search/stored-source-definition/,atlas/source/atlas-search/stored-source-definition.txt,atlas,7,0,0,0,1,2, -1721,https://www.mongodb.com/docs/atlas/atlas-search/synonyms/,atlas/source/atlas-search/synonyms.txt,atlas,63,16,16,0,6,26, -1722,https://www.mongodb.com/docs/atlas/atlas-search/tracking/,atlas/source/atlas-search/tracking.txt,atlas,3,1,1,0,0,0, -1723,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/,atlas/source/atlas-search/tutorial.txt,atlas,130,30,30,0,16,73, -1724,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/cross-collection-tutorials/,atlas/source/atlas-search/tutorial/cross-collection-tutorials.txt,atlas,341,91,91,0,39,164, -1725,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/embedded-documents-tutorial/,atlas/source/atlas-search/tutorial/embedded-documents-tutorial.txt,atlas,141,35,35,0,18,63, -1726,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/facet-tutorial/,atlas/source/atlas-search/tutorial/facet-tutorial.txt,atlas,103,21,21,0,13,41, -1727,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/hybrid-search/,atlas/source/atlas-search/tutorial/hybrid-search.txt,atlas,28,6,6,0,0,26, -1728,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/partial-match/,atlas/source/atlas-search/tutorial/partial-match.txt,atlas,105,4,4,0,24,36, -1729,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/string-operators-tutorial/,atlas/source/atlas-search/tutorial/string-operators-tutorial.txt,atlas,86,15,15,0,20,31, -1730,https://www.mongodb.com/docs/atlas/atlas-search/tutorial/synonyms-tutorial/,atlas/source/atlas-search/tutorial/synonyms-tutorial.txt,atlas,238,60,60,0,34,86, -1731,https://www.mongodb.com/docs/atlas/atlas-search/view-query-analytics/,atlas/source/atlas-search/view-query-analytics.txt,atlas,0,0,0,0,0,0, -1732,https://www.mongodb.com/docs/atlas/atlas-search/view-support/,atlas/source/atlas-search/view-support.txt,atlas,32,7,7,0,0,21, -1733,https://www.mongodb.com/docs/atlas/atlas-stream-processing/,atlas/source/atlas-stream-processing.txt,atlas,0,0,0,0,0,0, -1734,https://www.mongodb.com/docs/atlas/atlas-stream-processing/add-sp-connection/,atlas/source/atlas-stream-processing/add-sp-connection.txt,atlas,5,0,0,0,0,4, -1735,https://www.mongodb.com/docs/atlas/atlas-stream-processing/architecture/,atlas/source/atlas-stream-processing/architecture.txt,atlas,0,0,0,0,0,0, -1736,https://www.mongodb.com/docs/atlas/atlas-stream-processing/changelog/,atlas/source/atlas-stream-processing/changelog.txt,atlas,0,0,0,0,0,0, -1737,https://www.mongodb.com/docs/atlas/atlas-stream-processing/gcp-private-link-connection/,atlas/source/atlas-stream-processing/gcp-private-link-connection.txt,atlas,1,0,0,0,0,1, -1738,https://www.mongodb.com/docs/atlas/atlas-stream-processing/kafka-private-link-connection/,atlas/source/atlas-stream-processing/kafka-private-link-connection.txt,atlas,13,5,3,0,0,9, -1739,https://www.mongodb.com/docs/atlas/atlas-stream-processing/kinesis-private-link-connection/,atlas/source/atlas-stream-processing/kinesis-private-link-connection.txt,atlas,0,0,0,0,0,0, -1740,https://www.mongodb.com/docs/atlas/atlas-stream-processing/limitations/,atlas/source/atlas-stream-processing/limitations.txt,atlas,0,0,0,0,0,0, -1741,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-connection-registry/,atlas/source/atlas-stream-processing/manage-connection-registry.txt,atlas,1,0,0,0,0,1, -1742,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-processing-instance/,atlas/source/atlas-stream-processing/manage-processing-instance.txt,atlas,0,0,0,0,0,0, -1743,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-stream-processor/,atlas/source/atlas-stream-processing/manage-stream-processor.txt,atlas,40,4,4,0,0,33, -1744,https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-vpc-peering-connections/,atlas/source/atlas-stream-processing/manage-vpc-peering-connections.txt,atlas,6,0,0,0,0,6, -1745,https://www.mongodb.com/docs/atlas/atlas-stream-processing/monitoring/,atlas/source/atlas-stream-processing/monitoring.txt,atlas,0,0,0,0,0,0, -1746,https://www.mongodb.com/docs/atlas/atlas-stream-processing/quickstart/,atlas/source/atlas-stream-processing/quickstart.txt,atlas,19,1,1,0,0,12, -1747,https://www.mongodb.com/docs/atlas/atlas-stream-processing/s3-private-link-connection/,atlas/source/atlas-stream-processing/s3-private-link-connection.txt,atlas,3,0,0,0,0,0, -1748,https://www.mongodb.com/docs/atlas/atlas-stream-processing/security/,atlas/source/atlas-stream-processing/security.txt,atlas,1,0,0,0,0,1, -1749,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-cachedlookup/,atlas/source/atlas-stream-processing/sp-agg-cachedlookup.txt,atlas,5,1,1,0,0,0, -1750,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-convert/,atlas/source/atlas-stream-processing/sp-agg-convert.txt,atlas,16,0,0,0,0,0, -1751,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-createuuid/,atlas/source/atlas-stream-processing/sp-agg-createuuid.txt,atlas,4,2,2,0,0,0, -1752,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-currentdate/,atlas/source/atlas-stream-processing/sp-agg-currentdate.txt,atlas,2,2,0,0,0,0, -1753,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-emit/,atlas/source/atlas-stream-processing/sp-agg-emit.txt,atlas,18,0,0,0,0,6, -1754,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-externalFunction/,atlas/source/atlas-stream-processing/sp-agg-externalFunction.txt,atlas,4,0,0,0,0,1, -1755,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-function/,atlas/source/atlas-stream-processing/sp-agg-function.txt,atlas,1,0,0,0,0,1, -1756,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-hopping/,atlas/source/atlas-stream-processing/sp-agg-hopping.txt,atlas,4,1,1,0,0,1, -1757,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-https/,atlas/source/atlas-stream-processing/sp-agg-https.txt,atlas,4,1,1,0,0,0, -1758,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-lookup/,atlas/source/atlas-stream-processing/sp-agg-lookup.txt,atlas,8,1,1,0,0,3, -1759,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-merge/,atlas/source/atlas-stream-processing/sp-agg-merge.txt,atlas,8,1,1,0,0,0, -1760,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-meta/,atlas/source/atlas-stream-processing/sp-agg-meta.txt,atlas,3,0,0,0,0,0, -1761,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-session/,atlas/source/atlas-stream-processing/sp-agg-session.txt,atlas,1,0,0,0,0,0, -1762,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-setStreamMeta/,atlas/source/atlas-stream-processing/sp-agg-setStreamMeta.txt,atlas,4,0,0,0,0,0, -1763,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-source/,atlas/source/atlas-stream-processing/sp-agg-source.txt,atlas,14,2,2,0,0,1, -1764,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-tumbling/,atlas/source/atlas-stream-processing/sp-agg-tumbling.txt,atlas,5,1,1,0,0,1, -1765,https://www.mongodb.com/docs/atlas/atlas-stream-processing/sp-agg-validate/,atlas/source/atlas-stream-processing/sp-agg-validate.txt,atlas,8,2,2,0,0,0, -1766,https://www.mongodb.com/docs/atlas/atlas-stream-processing/stream-aggregation-operators/,atlas/source/atlas-stream-processing/stream-aggregation-operators.txt,atlas,0,0,0,0,0,0, -1767,https://www.mongodb.com/docs/atlas/atlas-stream-processing/stream-aggregation-stages/,atlas/source/atlas-stream-processing/stream-aggregation-stages.txt,atlas,0,0,0,0,0,0, -1768,https://www.mongodb.com/docs/atlas/atlas-stream-processing/windows/,atlas/source/atlas-stream-processing/windows.txt,atlas,0,0,0,0,0,0, -1769,https://www.mongodb.com/docs/atlas/atlas-ui-authentication/,atlas/source/atlas-ui-authentication.txt,atlas,0,0,0,0,0,0, -1770,https://www.mongodb.com/docs/atlas/atlas-ui-authorization/,atlas/source/atlas-ui-authorization.txt,atlas,0,0,0,0,0,0, -1771,https://www.mongodb.com/docs/atlas/atlas-ui/,atlas/source/atlas-ui.txt,atlas,0,0,0,0,0,0, -1772,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/aggregation-pipeline-builder-settings/,atlas/source/atlas-ui/agg-pipeline-builder/aggregation-pipeline-builder-settings.txt,atlas,0,0,0,0,0,0, -1773,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/count-pipeline-results/,atlas/source/atlas-ui/agg-pipeline-builder/count-pipeline-results.txt,atlas,0,0,0,0,0,0, -1774,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/create-a-view/,atlas/source/atlas-ui/agg-pipeline-builder/create-a-view.txt,atlas,0,0,0,0,0,0, -1775,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/export-pipeline-to-language/,atlas/source/atlas-ui/agg-pipeline-builder/export-pipeline-to-language.txt,atlas,0,0,0,0,0,0, -1776,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/maxtime-ms-pipeline/,atlas/source/atlas-ui/agg-pipeline-builder/maxtime-ms-pipeline.txt,atlas,0,0,0,0,0,0, -1777,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/open-saved-pipeline/,atlas/source/atlas-ui/agg-pipeline-builder/open-saved-pipeline.txt,atlas,0,0,0,0,0,0, -1778,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/pipeline-custom-collation/,atlas/source/atlas-ui/agg-pipeline-builder/pipeline-custom-collation.txt,atlas,1,0,0,0,0,1, -1779,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/save-agg-pipeline/,atlas/source/atlas-ui/agg-pipeline-builder/save-agg-pipeline.txt,atlas,0,0,0,0,0,0, -1780,https://www.mongodb.com/docs/atlas/atlas-ui/agg-pipeline-builder/view-pipeline-explain-plan/,atlas/source/atlas-ui/agg-pipeline-builder/view-pipeline-explain-plan.txt,atlas,0,0,0,0,0,0, -1781,https://www.mongodb.com/docs/atlas/atlas-ui/collections/,atlas/source/atlas-ui/collections.txt,atlas,4,0,0,0,0,4, -1782,https://www.mongodb.com/docs/atlas/atlas-ui/collections/clustered-collection/,atlas/source/atlas-ui/collections/clustered-collection.txt,atlas,0,0,0,0,0,0, -1783,https://www.mongodb.com/docs/atlas/atlas-ui/collections/collation-collection/,atlas/source/atlas-ui/collections/collation-collection.txt,atlas,3,0,0,0,0,3, -1784,https://www.mongodb.com/docs/atlas/atlas-ui/collections/time-series-collection/,atlas/source/atlas-ui/collections/time-series-collection.txt,atlas,0,0,0,0,0,0, -1785,https://www.mongodb.com/docs/atlas/atlas-ui/create-agg-pipeline/,atlas/source/atlas-ui/create-agg-pipeline.txt,atlas,1,0,0,0,0,1, -1786,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/,atlas/source/atlas-ui/data-modeling.txt,atlas,0,0,0,0,0,0, -1787,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/export-diagram/,atlas/source/atlas-ui/data-modeling/export-diagram.txt,atlas,0,0,0,0,0,0, -1788,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/generate-diagram/,atlas/source/atlas-ui/data-modeling/generate-diagram.txt,atlas,0,0,0,0,0,0, -1789,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/import-diagram/,atlas/source/atlas-ui/data-modeling/import-diagram.txt,atlas,0,0,0,0,0,0, -1790,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/modify-collections/,atlas/source/atlas-ui/data-modeling/modify-collections.txt,atlas,0,0,0,0,0,0, -1791,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/modify-fields/,atlas/source/atlas-ui/data-modeling/modify-fields.txt,atlas,0,0,0,0,0,0, -1792,https://www.mongodb.com/docs/atlas/atlas-ui/data-modeling/relationships/,atlas/source/atlas-ui/data-modeling/relationships.txt,atlas,0,0,0,0,0,0, -1793,https://www.mongodb.com/docs/atlas/atlas-ui/databases/,atlas/source/atlas-ui/databases.txt,atlas,0,0,0,0,0,0, -1794,https://www.mongodb.com/docs/atlas/atlas-ui/documents/,atlas/source/atlas-ui/documents.txt,atlas,1,0,0,0,0,0, -1795,https://www.mongodb.com/docs/atlas/atlas-ui/documents/delete-multiple/,atlas/source/atlas-ui/documents/delete-multiple.txt,atlas,1,0,0,0,0,1, -1796,https://www.mongodb.com/docs/atlas/atlas-ui/documents/modify-multiple/,atlas/source/atlas-ui/documents/modify-multiple.txt,atlas,2,0,0,0,0,2, -1797,https://www.mongodb.com/docs/atlas/atlas-ui/export-query-to-language/,atlas/source/atlas-ui/export-query-to-language.txt,atlas,0,0,0,0,0,0, -1798,https://www.mongodb.com/docs/atlas/atlas-ui/indexes/,atlas/source/atlas-ui/indexes.txt,atlas,3,0,0,0,0,3, -1799,https://www.mongodb.com/docs/atlas/atlas-ui/performance-insights/,atlas/source/atlas-ui/performance-insights.txt,atlas,0,0,0,0,0,0, -1800,https://www.mongodb.com/docs/atlas/atlas-ui/query-plan/,atlas/source/atlas-ui/query-plan.txt,atlas,0,0,0,0,0,0, -1801,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/,atlas/source/atlas-ui/query-with-natural-language.txt,atlas,0,0,0,0,0,0, -1802,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/data-explorer-ai-assistant/,atlas/source/atlas-ui/query-with-natural-language/data-explorer-ai-assistant.txt,atlas,5,2,2,0,0,0, -1803,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/enable-natural-language-querying/,atlas/source/atlas-ui/query-with-natural-language/enable-natural-language-querying.txt,atlas,0,0,0,0,0,0, -1804,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/prompt-natural-language-aggregation/,atlas/source/atlas-ui/query-with-natural-language/prompt-natural-language-aggregation.txt,atlas,3,0,0,0,0,0, -1805,https://www.mongodb.com/docs/atlas/atlas-ui/query-with-natural-language/prompt-natural-language-query/,atlas/source/atlas-ui/query-with-natural-language/prompt-natural-language-query.txt,atlas,0,0,0,0,0,0, -1806,https://www.mongodb.com/docs/atlas/atlas-ui/query/collation/,atlas/source/atlas-ui/query/collation.txt,atlas,1,0,0,0,0,1, -1807,https://www.mongodb.com/docs/atlas/atlas-ui/query/filter/,atlas/source/atlas-ui/query/filter.txt,atlas,24,0,0,0,0,12, -1808,https://www.mongodb.com/docs/atlas/atlas-ui/query/limit/,atlas/source/atlas-ui/query/limit.txt,atlas,3,0,0,0,0,2, -1809,https://www.mongodb.com/docs/atlas/atlas-ui/query/maxtimems/,atlas/source/atlas-ui/query/maxtimems.txt,atlas,0,0,0,0,0,0, -1810,https://www.mongodb.com/docs/atlas/atlas-ui/query/project/,atlas/source/atlas-ui/query/project.txt,atlas,5,0,0,0,0,4, -1811,https://www.mongodb.com/docs/atlas/atlas-ui/query/recent/,atlas/source/atlas-ui/query/recent.txt,atlas,0,0,0,0,0,0, -1812,https://www.mongodb.com/docs/atlas/atlas-ui/query/saved-queries/,atlas/source/atlas-ui/query/saved-queries.txt,atlas,0,0,0,0,0,0, -1813,https://www.mongodb.com/docs/atlas/atlas-ui/query/skip/,atlas/source/atlas-ui/query/skip.txt,atlas,3,0,0,0,0,2, -1814,https://www.mongodb.com/docs/atlas/atlas-ui/query/sort/,atlas/source/atlas-ui/query/sort.txt,atlas,4,0,0,0,0,3, -1815,https://www.mongodb.com/docs/atlas/atlas-ui/sampling/,atlas/source/atlas-ui/sampling.txt,atlas,0,0,0,0,0,0, -1816,https://www.mongodb.com/docs/atlas/atlas-ui/schema/,atlas/source/atlas-ui/schema.txt,atlas,0,0,0,0,0,0, -1817,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/,atlas/source/atlas-ui/triggers.txt,atlas,0,0,0,0,0,0, -1818,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/aws-eventbridge/,atlas/source/atlas-ui/triggers/aws-eventbridge.txt,atlas,15,0,0,0,0,11, -1819,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/database-triggers/,atlas/source/atlas-ui/triggers/database-triggers.txt,atlas,14,0,0,0,0,9, -1820,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/disable/,atlas/source/atlas-ui/triggers/disable.txt,atlas,4,0,0,0,0,3, -1821,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/forward-logs/,atlas/source/atlas-ui/triggers/forward-logs.txt,atlas,9,0,0,0,0,2, -1822,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/,atlas/source/atlas-ui/triggers/functions.txt,atlas,23,3,3,0,0,15, -1823,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/aggregate/,atlas/source/atlas-ui/triggers/functions/aggregate.txt,atlas,16,1,1,0,0,14, -1824,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/api/,atlas/source/atlas-ui/triggers/functions/api.txt,atlas,63,0,0,0,0,31, -1825,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/context/,atlas/source/atlas-ui/triggers/functions/context.txt,atlas,27,1,1,0,0,18, -1826,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/dependencies/,atlas/source/atlas-ui/triggers/functions/dependencies.txt,atlas,4,0,0,0,0,4, -1827,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/globals/,atlas/source/atlas-ui/triggers/functions/globals.txt,atlas,70,13,13,0,0,27, -1828,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/handle-errors/,atlas/source/atlas-ui/triggers/functions/handle-errors.txt,atlas,15,0,0,0,0,14, -1829,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/javascript-support/,atlas/source/atlas-ui/triggers/functions/javascript-support.txt,atlas,1,0,0,0,0,1, -1830,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/read/,atlas/source/atlas-ui/triggers/functions/read.txt,atlas,28,0,0,0,0,27, -1831,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/secrets/,atlas/source/atlas-ui/triggers/functions/secrets.txt,atlas,8,0,0,0,0,8, -1832,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/security/,atlas/source/atlas-ui/triggers/functions/security.txt,atlas,3,0,0,0,0,0, -1833,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/values/,atlas/source/atlas-ui/triggers/functions/values.txt,atlas,7,0,0,0,0,6, -1834,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/functions/write/,atlas/source/atlas-ui/triggers/functions/write.txt,atlas,30,0,0,0,0,25, -1835,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/limitations/,atlas/source/atlas-ui/triggers/limitations.txt,atlas,0,0,0,0,0,0, -1836,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/logs/,atlas/source/atlas-ui/triggers/logs.txt,atlas,1,0,0,0,0,1, -1837,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/scheduled-triggers-tutorial/,atlas/source/atlas-ui/triggers/scheduled-triggers-tutorial.txt,atlas,12,0,0,0,0,8, -1838,https://www.mongodb.com/docs/atlas/atlas-ui/triggers/scheduled-triggers/,atlas/source/atlas-ui/triggers/scheduled-triggers.txt,atlas,13,0,0,0,0,4, -1839,https://www.mongodb.com/docs/atlas/atlas-ui/troubleshoot/,atlas/source/atlas-ui/troubleshoot.txt,atlas,0,0,0,0,0,0, -1840,https://www.mongodb.com/docs/atlas/atlas-ui/validation/,atlas/source/atlas-ui/validation.txt,atlas,3,0,0,0,0,3, -1841,https://www.mongodb.com/docs/atlas/atlas-ui/views/,atlas/source/atlas-ui/views.txt,atlas,0,0,0,0,0,0, -1842,https://www.mongodb.com/docs/atlas/atlas-vector-search/ai-agents/,atlas/source/atlas-vector-search/ai-agents.txt,atlas,28,2,2,0,20,0, -1843,https://www.mongodb.com/docs/atlas/atlas-vector-search/automated-embedding/,atlas/source/atlas-vector-search/automated-embedding.txt,atlas,38,3,3,0,30,2, -1844,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/,atlas/source/atlas-vector-search/benchmark.txt,atlas,0,0,0,0,0,0, -1845,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/overview/,atlas/source/atlas-vector-search/benchmark/overview.txt,atlas,6,0,0,0,3,3, -1846,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/performance-recommendations/,atlas/source/atlas-vector-search/benchmark/performance-recommendations.txt,atlas,0,0,0,0,0,0, -1847,https://www.mongodb.com/docs/atlas/atlas-vector-search/benchmark/results/,atlas/source/atlas-vector-search/benchmark/results.txt,atlas,0,0,0,0,0,0, -1848,https://www.mongodb.com/docs/atlas/atlas-vector-search/changelog/,atlas/source/atlas-vector-search/changelog.txt,atlas,0,0,0,0,0,0, -1849,https://www.mongodb.com/docs/atlas/atlas-vector-search/compatibility-limitations/,atlas/source/atlas-vector-search/compatibility-limitations.txt,atlas,0,0,0,0,0,0, -1850,https://www.mongodb.com/docs/atlas/atlas-vector-search/create-embeddings/,atlas/source/atlas-vector-search/create-embeddings.txt,atlas,0,0,0,0,0,0, -1851,https://www.mongodb.com/docs/atlas/atlas-vector-search/crud-embeddings/create-embeddings-automatic/,atlas/source/atlas-vector-search/crud-embeddings/create-embeddings-automatic.txt,atlas,43,9,9,0,11,30, -1852,https://www.mongodb.com/docs/atlas/atlas-vector-search/crud-embeddings/create-embeddings-manual/,atlas/source/atlas-vector-search/crud-embeddings/create-embeddings-manual.txt,atlas,165,28,28,0,57,53, -1853,https://www.mongodb.com/docs/atlas/atlas-vector-search/deployment-options/,atlas/source/atlas-vector-search/deployment-options.txt,atlas,3,0,0,0,0,2, -1854,https://www.mongodb.com/docs/atlas/atlas-vector-search/explain/,atlas/source/atlas-vector-search/explain.txt,atlas,22,3,3,0,0,4, -1855,https://www.mongodb.com/docs/atlas/atlas-vector-search/hybrid-search/,atlas/source/atlas-vector-search/hybrid-search.txt,atlas,2,0,0,0,0,2, -1856,https://www.mongodb.com/docs/atlas/atlas-vector-search/hybrid-search/vector-search-with-full-text-search/,atlas/source/atlas-vector-search/hybrid-search/vector-search-with-full-text-search.txt,atlas,61,17,17,0,4,49, -1857,https://www.mongodb.com/docs/atlas/atlas-vector-search/hybrid-search/vector-search-with-rankfusion/,atlas/source/atlas-vector-search/hybrid-search/vector-search-with-rankfusion.txt,atlas,19,7,7,0,2,17, -1858,https://www.mongodb.com/docs/atlas/atlas-vector-search/improve-accuracy/,atlas/source/atlas-vector-search/improve-accuracy.txt,atlas,13,5,5,0,3,9, -1859,https://www.mongodb.com/docs/atlas/atlas-vector-search/multi-tenant-architecture/,atlas/source/atlas-vector-search/multi-tenant-architecture.txt,atlas,3,0,0,0,0,3, -1860,https://www.mongodb.com/docs/atlas/atlas-vector-search/rag/,atlas/source/atlas-vector-search/rag.txt,atlas,146,19,19,0,51,53, -1861,https://www.mongodb.com/docs/atlas/atlas-vector-search/troubleshooting/,atlas/source/atlas-vector-search/troubleshooting.txt,atlas,2,0,0,0,0,2, -1862,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/auto-quantize-with-voyage-ai/,atlas/source/atlas-vector-search/tutorials/auto-quantize-with-voyage-ai.txt,atlas,23,5,5,0,19,2, -1863,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/local-rag/,atlas/source/atlas-vector-search/tutorials/local-rag.txt,atlas,96,11,11,0,27,49, -1864,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/vector-search-quick-start/,atlas/source/atlas-vector-search/tutorials/vector-search-quick-start.txt,atlas,143,24,24,0,8,109, -1865,https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/vector-search-tutorial/,atlas/source/atlas-vector-search/tutorials/vector-search-tutorial.txt,atlas,55,13,13,0,21,26, -1866,https://www.mongodb.com/docs/atlas/atlas-vector-search/use-cases/,atlas/source/atlas-vector-search/use-cases.txt,atlas,0,0,0,0,0,0, -1867,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-quantization/,atlas/source/atlas-vector-search/vector-quantization.txt,atlas,131,27,27,0,28,96, -1868,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-overview/,atlas/source/atlas-vector-search/vector-search-overview.txt,atlas,0,0,0,0,0,0, -1869,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-playground/,atlas/source/atlas-vector-search/vector-search-playground.txt,atlas,0,0,0,0,0,0, -1870,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-stage/,atlas/source/atlas-vector-search/vector-search-stage.txt,atlas,23,5,5,0,2,16, -1871,https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-type/,atlas/source/atlas-vector-search/vector-search-type.txt,atlas,114,2,2,0,35,67, -1872,https://www.mongodb.com/docs/atlas/atlas-vector-search/view-support/,atlas/source/atlas-vector-search/view-support.txt,atlas,10,1,1,0,2,7, -1873,https://www.mongodb.com/docs/atlas/backup-restore-cluster/,atlas/source/backup-restore-cluster.txt,atlas,0,0,0,0,0,0, -1874,https://www.mongodb.com/docs/atlas/backup/cloud-backup/backup-compliance-policy/,atlas/source/backup/cloud-backup/backup-compliance-policy.txt,atlas,0,0,0,0,0,0, -1875,https://www.mongodb.com/docs/atlas/backup/cloud-backup/cloud-backup-encryption/,atlas/source/backup/cloud-backup/cloud-backup-encryption.txt,atlas,0,0,0,0,0,0, -1876,https://www.mongodb.com/docs/atlas/backup/cloud-backup/configure-backup-policy/,atlas/source/backup/cloud-backup/configure-backup-policy.txt,atlas,0,0,0,0,0,0, -1877,https://www.mongodb.com/docs/atlas/backup/cloud-backup/dedicated-cluster-backup/,atlas/source/backup/cloud-backup/dedicated-cluster-backup.txt,atlas,0,0,0,0,0,0, -1878,https://www.mongodb.com/docs/atlas/backup/cloud-backup/export/,atlas/source/backup/cloud-backup/export.txt,atlas,10,0,0,0,0,6, -1879,https://www.mongodb.com/docs/atlas/backup/cloud-backup/flex-cluster-backup/,atlas/source/backup/cloud-backup/flex-cluster-backup.txt,atlas,0,0,0,0,0,0, -1880,https://www.mongodb.com/docs/atlas/backup/cloud-backup/import-archive/,atlas/source/backup/cloud-backup/import-archive.txt,atlas,10,0,0,0,0,10, -1881,https://www.mongodb.com/docs/atlas/backup/cloud-backup/overview/,atlas/source/backup/cloud-backup/overview.txt,atlas,0,0,0,0,0,0, -1882,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-cloud-manager/,atlas/source/backup/cloud-backup/restore-from-cloud-manager.txt,atlas,0,0,0,0,0,0, -1883,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-continuous/,atlas/source/backup/cloud-backup/restore-from-continuous.txt,atlas,0,0,0,0,0,0, -1884,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-ear/,atlas/source/backup/cloud-backup/restore-from-ear.txt,atlas,0,0,0,0,0,0, -1885,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-local-file/,atlas/source/backup/cloud-backup/restore-from-local-file.txt,atlas,2,0,0,0,0,2, -1886,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-snapshot/,atlas/source/backup/cloud-backup/restore-from-snapshot.txt,atlas,0,0,0,0,0,0, -1887,https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-overview/,atlas/source/backup/cloud-backup/restore-overview.txt,atlas,0,0,0,0,0,0, -1888,https://www.mongodb.com/docs/atlas/backup/cloud-backup/scheduling/,atlas/source/backup/cloud-backup/scheduling.txt,atlas,0,0,0,0,0,0, -1889,https://www.mongodb.com/docs/atlas/backup/cloud-backup/snapshot-distribution/,atlas/source/backup/cloud-backup/snapshot-distribution.txt,atlas,0,0,0,0,0,0, -1890,https://www.mongodb.com/docs/atlas/backup/cloud-backup/snapshot-management/,atlas/source/backup/cloud-backup/snapshot-management.txt,atlas,0,0,0,0,0,0, -1891,https://www.mongodb.com/docs/atlas/backup/restore-free-tier-cluster/,atlas/source/backup/restore-free-tier-cluster.txt,atlas,1,0,0,0,0,1, -1892,https://www.mongodb.com/docs/atlas/bi-connection/,atlas/source/bi-connection.txt,atlas,0,0,0,0,0,0, -1893,https://www.mongodb.com/docs/atlas/billing/,atlas/source/billing.txt,atlas,0,0,0,0,0,0, -1894,https://www.mongodb.com/docs/atlas/billing/additional-services/,atlas/source/billing/additional-services.txt,atlas,0,0,0,0,0,0, -1895,https://www.mongodb.com/docs/atlas/billing/atlas-flex-costs/,atlas/source/billing/atlas-flex-costs.txt,atlas,0,0,0,0,0,0, -1896,https://www.mongodb.com/docs/atlas/billing/aws-self-serve-marketplace/,atlas/source/billing/aws-self-serve-marketplace.txt,atlas,0,0,0,0,0,0, -1897,https://www.mongodb.com/docs/atlas/billing/azure-self-serve-marketplace/,atlas/source/billing/azure-self-serve-marketplace.txt,atlas,0,0,0,0,0,0, -1898,https://www.mongodb.com/docs/atlas/billing/billing-breakdown-optimization/,atlas/source/billing/billing-breakdown-optimization.txt,atlas,0,0,0,0,0,0, -1899,https://www.mongodb.com/docs/atlas/billing/cluster-configuration-costs/,atlas/source/billing/cluster-configuration-costs.txt,atlas,0,0,0,0,0,0, -1900,https://www.mongodb.com/docs/atlas/billing/data-federation/,atlas/source/billing/data-federation.txt,atlas,0,0,0,0,0,0, -1901,https://www.mongodb.com/docs/atlas/billing/data-transfer-costs/,atlas/source/billing/data-transfer-costs.txt,atlas,0,0,0,0,0,0, -1902,https://www.mongodb.com/docs/atlas/billing/gcp-self-serve-marketplace/,atlas/source/billing/gcp-self-serve-marketplace.txt,atlas,0,0,0,0,0,0, -1903,https://www.mongodb.com/docs/atlas/billing/international-usage/,atlas/source/billing/international-usage.txt,atlas,0,0,0,0,0,0, -1904,https://www.mongodb.com/docs/atlas/billing/invoice-breakdown/,atlas/source/billing/invoice-breakdown.txt,atlas,0,0,0,0,0,0, -1905,https://www.mongodb.com/docs/atlas/billing/invoices/,atlas/source/billing/invoices.txt,atlas,0,0,0,0,0,0, -1906,https://www.mongodb.com/docs/atlas/billing/online-archive/,atlas/source/billing/online-archive.txt,atlas,0,0,0,0,0,0, -1907,https://www.mongodb.com/docs/atlas/billing/search-node/,atlas/source/billing/search-node.txt,atlas,0,0,0,0,0,0, -1908,https://www.mongodb.com/docs/atlas/billing/stream-processing-costs/,atlas/source/billing/stream-processing-costs.txt,atlas,0,0,0,0,0,0, -1909,https://www.mongodb.com/docs/atlas/billing/subscriptions/,atlas/source/billing/subscriptions.txt,atlas,0,0,0,0,0,0, -1910,https://www.mongodb.com/docs/atlas/build-multi-tenant-arch/,atlas/source/build-multi-tenant-arch.txt,atlas,0,0,0,0,0,0, -1911,https://www.mongodb.com/docs/atlas/cloud-providers-regions/,atlas/source/cloud-providers-regions.txt,atlas,0,0,0,0,0,0, -1912,https://www.mongodb.com/docs/atlas/cluster-additional-settings/,atlas/source/cluster-additional-settings.txt,atlas,0,0,0,0,0,0, -1913,https://www.mongodb.com/docs/atlas/cluster-autoscaling/,atlas/source/cluster-autoscaling.txt,atlas,8,0,0,0,0,4, -1914,https://www.mongodb.com/docs/atlas/cluster-blocking-writes/,atlas/source/cluster-blocking-writes.txt,atlas,0,0,0,0,0,0, -1915,https://www.mongodb.com/docs/atlas/cluster-config/multi-cloud-distribution/,atlas/source/cluster-config/multi-cloud-distribution.txt,atlas,0,0,0,0,0,0, -1916,https://www.mongodb.com/docs/atlas/cluster-sharding/,atlas/source/cluster-sharding.txt,atlas,0,0,0,0,0,0, -1917,https://www.mongodb.com/docs/atlas/command-line-tools/,atlas/source/command-line-tools.txt,atlas,0,0,0,0,0,0, -1918,https://www.mongodb.com/docs/atlas/compass-connection/,atlas/source/compass-connection.txt,atlas,0,0,0,0,0,0, -1919,https://www.mongodb.com/docs/atlas/configure-alerts/,atlas/source/configure-alerts.txt,atlas,0,0,0,0,0,0, -1920,https://www.mongodb.com/docs/atlas/configure-api-access-mult-org/,atlas/source/configure-api-access-mult-org.txt,atlas,0,0,0,0,0,0, -1921,https://www.mongodb.com/docs/atlas/configure-api-access-org/,atlas/source/configure-api-access-org.txt,atlas,0,0,0,0,0,0, -1922,https://www.mongodb.com/docs/atlas/configure-api-access-project/,atlas/source/configure-api-access-project.txt,atlas,0,0,0,0,0,0, -1923,https://www.mongodb.com/docs/atlas/configure-api-access/,atlas/source/configure-api-access.txt,atlas,11,2,2,0,0,11, -1924,https://www.mongodb.com/docs/atlas/connect-to-database-deployment/,atlas/source/connect-to-database-deployment.txt,atlas,3,0,0,0,0,0, -1925,https://www.mongodb.com/docs/atlas/create-connect-deployments/,atlas/source/create-connect-deployments.txt,atlas,0,0,0,0,0,0, -1926,https://www.mongodb.com/docs/atlas/create-database-deployment/,atlas/source/create-database-deployment.txt,atlas,0,0,0,0,0,0, -1927,https://www.mongodb.com/docs/atlas/customize-storage/,atlas/source/customize-storage.txt,atlas,0,0,0,0,0,0, -1928,https://www.mongodb.com/docs/atlas/data-federation/,atlas/source/data-federation.txt,atlas,0,0,0,0,0,0, -1929,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/architecture/,atlas/source/data-federation/adf-overview/architecture.txt,atlas,0,0,0,0,0,0, -1930,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/key-concepts/,atlas/source/data-federation/adf-overview/key-concepts.txt,atlas,0,0,0,0,0,0, -1931,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/overview/,atlas/source/data-federation/adf-overview/overview.txt,atlas,0,0,0,0,0,0, -1932,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/query-performance-optimization/,atlas/source/data-federation/adf-overview/query-performance-optimization.txt,atlas,0,0,0,0,0,0, -1933,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/regions/,atlas/source/data-federation/adf-overview/regions.txt,atlas,0,0,0,0,0,0, -1934,https://www.mongodb.com/docs/atlas/data-federation/adf-overview/supported-sources-and-providers/,atlas/source/data-federation/adf-overview/supported-sources-and-providers.txt,atlas,0,0,0,0,0,0, -1935,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/collections/create-collections-views/,atlas/source/data-federation/admin/cli/collections/create-collections-views.txt,atlas,88,37,37,0,0,60, -1936,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/collections/drop-collections-views/,atlas/source/data-federation/admin/cli/collections/drop-collections-views.txt,atlas,12,0,0,0,0,3, -1937,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/collections/rename-collection/,atlas/source/data-federation/admin/cli/collections/rename-collection.txt,atlas,15,0,0,0,0,0, -1938,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/database/drop-database/,atlas/source/data-federation/admin/cli/database/drop-database.txt,atlas,5,0,0,0,0,0, -1939,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/stores/create-store/,atlas/source/data-federation/admin/cli/stores/create-store.txt,atlas,29,6,6,0,0,12, -1940,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/stores/drop-store/,atlas/source/data-federation/admin/cli/stores/drop-store.txt,atlas,5,0,0,0,0,0, -1941,https://www.mongodb.com/docs/atlas/data-federation/admin/cli/stores/list-stores/,atlas/source/data-federation/admin/cli/stores/list-stores.txt,atlas,4,0,0,0,0,0, -1942,https://www.mongodb.com/docs/atlas/data-federation/admin/delete-private-endpoint/,atlas/source/data-federation/admin/delete-private-endpoint.txt,atlas,0,0,0,0,0,0, -1943,https://www.mongodb.com/docs/atlas/data-federation/admin/determine-query-status/,atlas/source/data-federation/admin/determine-query-status.txt,atlas,5,0,0,0,0,0, -1944,https://www.mongodb.com/docs/atlas/data-federation/admin/edit-private-endpoint/,atlas/source/data-federation/admin/edit-private-endpoint.txt,atlas,0,0,0,0,0,0, -1945,https://www.mongodb.com/docs/atlas/data-federation/admin/manage-federated-database/,atlas/source/data-federation/admin/manage-federated-database.txt,atlas,0,0,0,0,0,0, -1946,https://www.mongodb.com/docs/atlas/data-federation/admin/manage-namespace-catalog-cli/,atlas/source/data-federation/admin/manage-namespace-catalog-cli.txt,atlas,0,0,0,0,0,0, -1947,https://www.mongodb.com/docs/atlas/data-federation/admin/manage-private-endpoint/,atlas/source/data-federation/admin/manage-private-endpoint.txt,atlas,0,0,0,0,0,0, -1948,https://www.mongodb.com/docs/atlas/data-federation/admin/namespace/updatecatalog/,atlas/source/data-federation/admin/namespace/updatecatalog.txt,atlas,8,0,0,0,0,0, -1949,https://www.mongodb.com/docs/atlas/data-federation/admin/optimize-query-performance/,atlas/source/data-federation/admin/optimize-query-performance.txt,atlas,2,0,0,0,0,0, -1950,https://www.mongodb.com/docs/atlas/data-federation/admin/terminate-running-query/,atlas/source/data-federation/admin/terminate-running-query.txt,atlas,4,0,0,0,0,0, -1951,https://www.mongodb.com/docs/atlas/data-federation/admin/update-region/,atlas/source/data-federation/admin/update-region.txt,atlas,0,0,0,0,0,0, -1952,https://www.mongodb.com/docs/atlas/data-federation/admin/view-private-endpoints/,atlas/source/data-federation/admin/view-private-endpoints.txt,atlas,0,0,0,0,0,0, -1953,https://www.mongodb.com/docs/atlas/data-federation/administration/,atlas/source/data-federation/administration.txt,atlas,0,0,0,0,0,0, -1954,https://www.mongodb.com/docs/atlas/data-federation/advanced-security-options/,atlas/source/data-federation/advanced-security-options.txt,atlas,0,0,0,0,0,0, -1955,https://www.mongodb.com/docs/atlas/data-federation/config/adf-config-file-formats/,atlas/source/data-federation/config/adf-config-file-formats.txt,atlas,44,0,0,0,0,3, -1956,https://www.mongodb.com/docs/atlas/data-federation/config/adfa-generate-wildcard-collection/,atlas/source/data-federation/config/adfa-generate-wildcard-collection.txt,atlas,0,0,0,0,0,0, -1957,https://www.mongodb.com/docs/atlas/data-federation/config/atlas-gen-wildcard-collections/,atlas/source/data-federation/config/atlas-gen-wildcard-collections.txt,atlas,2,0,0,0,0,0, -1958,https://www.mongodb.com/docs/atlas/data-federation/config/aws-gen-wildcard-collections/,atlas/source/data-federation/config/aws-gen-wildcard-collections.txt,atlas,1,0,0,0,0,0, -1959,https://www.mongodb.com/docs/atlas/data-federation/config/config-data-stores/,atlas/source/data-federation/config/config-data-stores.txt,atlas,5,0,0,0,0,5, -1960,https://www.mongodb.com/docs/atlas/data-federation/config/path-syntax-examples/,atlas/source/data-federation/config/path-syntax-examples.txt,atlas,28,0,0,0,0,5, -1961,https://www.mongodb.com/docs/atlas/data-federation/data-lake-deprecation/,atlas/source/data-federation/data-lake-deprecation.txt,atlas,0,0,0,0,0,0, -1962,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-adf/,atlas/source/data-federation/deployment/deploy-adf.txt,atlas,23,0,0,0,0,3, -1963,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-atlas/,atlas/source/data-federation/deployment/deploy-atlas.txt,atlas,3,0,0,0,0,0, -1964,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-azure/,atlas/source/data-federation/deployment/deploy-azure.txt,atlas,4,0,0,0,0,1, -1965,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-gcp/,atlas/source/data-federation/deployment/deploy-gcp.txt,atlas,4,0,0,0,0,1, -1966,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-http/,atlas/source/data-federation/deployment/deploy-http.txt,atlas,3,0,0,0,0,0, -1967,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-oa/,atlas/source/data-federation/deployment/deploy-oa.txt,atlas,3,0,0,0,0,0, -1968,https://www.mongodb.com/docs/atlas/data-federation/deployment/deploy-s3/,atlas/source/data-federation/deployment/deploy-s3.txt,atlas,6,0,0,0,0,1, -1969,https://www.mongodb.com/docs/atlas/data-federation/query/download-query-logs/,atlas/source/data-federation/query/download-query-logs.txt,atlas,1,0,0,0,0,1, -1970,https://www.mongodb.com/docs/atlas/data-federation/query/manage-query-limits/,atlas/source/data-federation/query/manage-query-limits.txt,atlas,0,0,0,0,0,0, -1971,https://www.mongodb.com/docs/atlas/data-federation/query/query-federated-database/,atlas/source/data-federation/query/query-federated-database.txt,atlas,4,0,0,0,0,3, -1972,https://www.mongodb.com/docs/atlas/data-federation/query/view-query-history/,atlas/source/data-federation/query/view-query-history.txt,atlas,6,0,0,0,0,2, -1973,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/,atlas/source/data-federation/supported-unsupported.txt,atlas,0,0,0,0,0,0, -1974,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/adf-encryption/,atlas/source/data-federation/supported-unsupported/adf-encryption.txt,atlas,1,0,0,0,0,0, -1975,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/adf-limitations/,atlas/source/data-federation/supported-unsupported/adf-limitations.txt,atlas,0,0,0,0,0,0, -1976,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/administration-commands/,atlas/source/data-federation/supported-unsupported/administration-commands.txt,atlas,0,0,0,0,0,0, -1977,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/data-formats/csv-tsv-data-files/,atlas/source/data-federation/supported-unsupported/data-formats/csv-tsv-data-files.txt,atlas,4,0,0,0,0,0, -1978,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/data-formats/parquet-data-files/,atlas/source/data-federation/supported-unsupported/data-formats/parquet-data-files.txt,atlas,0,0,0,0,0,0, -1979,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/diagnostic-commands/,atlas/source/data-federation/supported-unsupported/diagnostic-commands.txt,atlas,11,0,0,0,0,7, -1980,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/limitations/,atlas/source/data-federation/supported-unsupported/limitations.txt,atlas,0,0,0,0,0,0, -1981,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/mql-support/,atlas/source/data-federation/supported-unsupported/mql-support.txt,atlas,1,0,0,0,0,1, -1982,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/collstats/,atlas/source/data-federation/supported-unsupported/pipeline/collstats.txt,atlas,9,0,0,0,0,4, -1983,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/lookup-stage/,atlas/source/data-federation/supported-unsupported/pipeline/lookup-stage.txt,atlas,7,0,0,0,0,0, -1984,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/merge/,atlas/source/data-federation/supported-unsupported/pipeline/merge.txt,atlas,18,0,0,0,0,0, -1985,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/out/,atlas/source/data-federation/supported-unsupported/pipeline/out.txt,atlas,53,0,0,0,0,13, -1986,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/pipeline/sql/,atlas/source/data-federation/supported-unsupported/pipeline/sql.txt,atlas,2,0,0,0,0,0, -1987,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/query-write-op-commands/,atlas/source/data-federation/supported-unsupported/query-write-op-commands.txt,atlas,0,0,0,0,0,0, -1988,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/role-management-commands/,atlas/source/data-federation/supported-unsupported/role-management-commands.txt,atlas,0,0,0,0,0,0, -1989,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/storage-config-commands/,atlas/source/data-federation/supported-unsupported/storage-config-commands.txt,atlas,3,0,0,0,0,3, -1990,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-aggregation/,atlas/source/data-federation/supported-unsupported/supported-aggregation.txt,atlas,1,0,0,0,0,0, -1991,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-data-formats/,atlas/source/data-federation/supported-unsupported/supported-data-formats.txt,atlas,0,0,0,0,0,0, -1992,https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-partition-attributes/,atlas/source/data-federation/supported-unsupported/supported-partition-attributes.txt,atlas,1,0,0,0,0,0, -1993,https://www.mongodb.com/docs/atlas/data-federation/tutorial/add-ip-address/,atlas/source/data-federation/tutorial/add-ip-address.txt,atlas,0,0,0,0,0,0, -1994,https://www.mongodb.com/docs/atlas/data-federation/tutorial/adf-authentication-methods/,atlas/source/data-federation/tutorial/adf-authentication-methods.txt,atlas,4,0,0,0,0,3, -1995,https://www.mongodb.com/docs/atlas/data-federation/tutorial/advanced-security-options/adf-aws-iam-authentication/,atlas/source/data-federation/tutorial/advanced-security-options/adf-aws-iam-authentication.txt,atlas,3,0,0,0,0,3, -1996,https://www.mongodb.com/docs/atlas/data-federation/tutorial/advanced-security-options/advanced-db-user-config/,atlas/source/data-federation/tutorial/advanced-security-options/advanced-db-user-config.txt,atlas,2,0,0,0,0,1, -1997,https://www.mongodb.com/docs/atlas/data-federation/tutorial/config-private-endpoint/,atlas/source/data-federation/tutorial/config-private-endpoint.txt,atlas,0,0,0,0,0,0, -1998,https://www.mongodb.com/docs/atlas/data-federation/tutorial/configure-connection/,atlas/source/data-federation/tutorial/configure-connection.txt,atlas,0,0,0,0,0,0, -1999,https://www.mongodb.com/docs/atlas/data-federation/tutorial/connect/,atlas/source/data-federation/tutorial/connect.txt,atlas,0,0,0,0,0,0, -2000,https://www.mongodb.com/docs/atlas/data-federation/tutorial/create-mongodb-user/,atlas/source/data-federation/tutorial/create-mongodb-user.txt,atlas,0,0,0,0,0,0, -2001,https://www.mongodb.com/docs/atlas/data-federation/tutorial/deploy/,atlas/source/data-federation/tutorial/deploy.txt,atlas,0,0,0,0,0,0, -2002,https://www.mongodb.com/docs/atlas/data-federation/tutorial/getting-started/,atlas/source/data-federation/tutorial/getting-started.txt,atlas,0,0,0,0,0,0, -2003,https://www.mongodb.com/docs/atlas/data-federation/tutorial/run-queries/,atlas/source/data-federation/tutorial/run-queries.txt,atlas,60,24,24,0,0,12, -2004,https://www.mongodb.com/docs/atlas/data-federation/tutorials/,atlas/source/data-federation/tutorials.txt,atlas,0,0,0,0,0,0, -2005,https://www.mongodb.com/docs/atlas/database-auditing/,atlas/source/database-auditing.txt,atlas,4,0,0,0,0,0, -2006,https://www.mongodb.com/docs/atlas/database-deployment-tags/,atlas/source/database-deployment-tags.txt,atlas,0,0,0,0,0,0, -2007,https://www.mongodb.com/docs/atlas/driver-connection/,atlas/source/driver-connection.txt,atlas,20,0,0,0,6,2, -2008,https://www.mongodb.com/docs/atlas/export-logs-external-sinks/,atlas/source/export-logs-external-sinks.txt,atlas,0,0,0,0,0,0, -2009,https://www.mongodb.com/docs/atlas/faq/,atlas/source/faq.txt,atlas,0,0,0,0,0,0, -2010,https://www.mongodb.com/docs/atlas/flex-migration/,atlas/source/flex-migration.txt,atlas,0,0,0,0,0,0, -2011,https://www.mongodb.com/docs/atlas/free-tier-commands/,atlas/source/free-tier-commands.txt,atlas,3,0,0,0,0,1, -2012,https://www.mongodb.com/docs/atlas/getting-started/,atlas/source/getting-started.txt,atlas,0,0,0,0,0,0, -2013,https://www.mongodb.com/docs/atlas/global-clusters/,atlas/source/global-clusters.txt,atlas,0,0,0,0,0,0, -2014,https://www.mongodb.com/docs/atlas/graphql-api/,atlas/source/graphql-api.txt,atlas,0,0,0,0,0,0, -2015,https://www.mongodb.com/docs/atlas/import/,atlas/source/import.txt,atlas,0,0,0,0,0,0, -2016,https://www.mongodb.com/docs/atlas/import/c2c-pull-live-migration/,atlas/source/import/c2c-pull-live-migration.txt,atlas,6,0,0,0,0,4, -2017,https://www.mongodb.com/docs/atlas/import/c2c-push-live-migration/,atlas/source/import/c2c-push-live-migration.txt,atlas,2,0,0,0,0,2, -2018,https://www.mongodb.com/docs/atlas/import/live-migration-comparison-modes/,atlas/source/import/live-migration-comparison-modes.txt,atlas,0,0,0,0,0,0, -2019,https://www.mongodb.com/docs/atlas/import/live-migration-example/,atlas/source/import/live-migration-example.txt,atlas,1,0,0,0,0,0, -2020,https://www.mongodb.com/docs/atlas/import/live-migration-troubleshooting/,atlas/source/import/live-migration-troubleshooting.txt,atlas,3,0,0,0,0,3, -2021,https://www.mongodb.com/docs/atlas/import/live-migration-verification/,atlas/source/import/live-migration-verification.txt,atlas,0,0,0,0,0,0, -2022,https://www.mongodb.com/docs/atlas/import/mongoimport/,atlas/source/import/mongoimport.txt,atlas,1,0,0,0,0,0, -2023,https://www.mongodb.com/docs/atlas/import/mongomirror/,atlas/source/import/mongomirror.txt,atlas,10,0,0,0,0,9, -2024,https://www.mongodb.com/docs/atlas/import/mongorestore/,atlas/source/import/mongorestore.txt,atlas,7,0,0,0,0,7, -2025,https://www.mongodb.com/docs/atlas/import/monitor-migrations/,atlas/source/import/monitor-migrations.txt,atlas,0,0,0,0,0,0, -2026,https://www.mongodb.com/docs/atlas/includes/data-federation/jdbc-download-local/,atlas/source/includes/data-federation/jdbc-download-local.txt,atlas,0,0,0,0,0,0, -2027,https://www.mongodb.com/docs/atlas/,atlas/source/index.txt,atlas,0,0,0,0,0,0, -2028,https://www.mongodb.com/docs/atlas/infrastructure/,atlas/source/infrastructure.txt,atlas,0,0,0,0,0,0, -2029,https://www.mongodb.com/docs/atlas/invitations/,atlas/source/invitations.txt,atlas,0,0,0,0,0,0, -2030,https://www.mongodb.com/docs/atlas/live-migration/,atlas/source/live-migration.txt,atlas,0,0,0,0,0,0, -2031,https://www.mongodb.com/docs/atlas/manage-atlas-cli/,atlas/source/manage-atlas-cli.txt,atlas,0,0,0,0,0,0, -2032,https://www.mongodb.com/docs/atlas/manage-clusters/,atlas/source/manage-clusters.txt,atlas,0,0,0,0,0,0, -2033,https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/,atlas/source/manage-connections-aws-lambda.txt,atlas,17,0,0,0,8,0, -2034,https://www.mongodb.com/docs/atlas/manage-connections-azure-functions/,atlas/source/manage-connections-azure-functions.txt,atlas,0,0,0,0,0,0, -2035,https://www.mongodb.com/docs/atlas/manage-connections-google-cloud/,atlas/source/manage-connections-google-cloud.txt,atlas,2,0,0,0,0,1, -2036,https://www.mongodb.com/docs/atlas/manage-database-deployments/,atlas/source/manage-database-deployments.txt,atlas,0,0,0,0,0,0, -2037,https://www.mongodb.com/docs/atlas/manage-flex-clusters/,atlas/source/manage-flex-clusters.txt,atlas,0,0,0,0,0,0, -2038,https://www.mongodb.com/docs/atlas/management/organizations/atlas-account/,atlas/source/management/organizations/atlas-account.txt,atlas,0,0,0,0,0,0, -2039,https://www.mongodb.com/docs/atlas/management/organizations/organization-security/,atlas/source/management/organizations/organization-security.txt,atlas,0,0,0,0,0,0, -2040,https://www.mongodb.com/docs/atlas/mongo-shell-connection/,atlas/source/mongo-shell-connection.txt,atlas,3,0,0,0,0,3, -2041,https://www.mongodb.com/docs/atlas/mongodb-for-vscode/,atlas/source/mongodb-for-vscode.txt,atlas,0,0,0,0,0,0, -2042,https://www.mongodb.com/docs/atlas/mongodb-logs/,atlas/source/mongodb-logs.txt,atlas,0,0,0,0,0,0, -2043,https://www.mongodb.com/docs/atlas/monitor-cluster-metrics/,atlas/source/monitor-cluster-metrics.txt,atlas,0,0,0,0,0,0, -2044,https://www.mongodb.com/docs/atlas/monitoring-alerts/,atlas/source/monitoring-alerts.txt,atlas,0,0,0,0,0,0, -2045,https://www.mongodb.com/docs/atlas/namespace-insights/,atlas/source/namespace-insights.txt,atlas,1,0,0,0,0,0, -2046,https://www.mongodb.com/docs/atlas/online-archive/config-backup-online-archive/,atlas/source/online-archive/config-backup-online-archive.txt,atlas,0,0,0,0,0,0, -2047,https://www.mongodb.com/docs/atlas/online-archive/config-private-endpoint/,atlas/source/online-archive/config-private-endpoint.txt,atlas,0,0,0,0,0,0, -2048,https://www.mongodb.com/docs/atlas/online-archive/configure-online-archive/,atlas/source/online-archive/configure-online-archive.txt,atlas,5,0,0,0,0,2, -2049,https://www.mongodb.com/docs/atlas/online-archive/connect-to-online-archive/,atlas/source/online-archive/connect-to-online-archive.txt,atlas,0,0,0,0,0,0, -2050,https://www.mongodb.com/docs/atlas/online-archive/download-query-logs/,atlas/source/online-archive/download-query-logs.txt,atlas,2,0,0,0,0,2, -2051,https://www.mongodb.com/docs/atlas/online-archive/limitations/,atlas/source/online-archive/limitations.txt,atlas,0,0,0,0,0,0, -2052,https://www.mongodb.com/docs/atlas/online-archive/manage-online-archive/,atlas/source/online-archive/manage-online-archive.txt,atlas,0,0,0,0,0,0, -2053,https://www.mongodb.com/docs/atlas/online-archive/overview/,atlas/source/online-archive/overview.txt,atlas,0,0,0,0,0,0, -2054,https://www.mongodb.com/docs/atlas/online-archive/pause-resume-online-archive/,atlas/source/online-archive/pause-resume-online-archive.txt,atlas,0,0,0,0,0,0, -2055,https://www.mongodb.com/docs/atlas/online-archive/restore-archived-data-with-merge/,atlas/source/online-archive/restore-archived-data-with-merge.txt,atlas,4,0,0,0,0,1, -2056,https://www.mongodb.com/docs/atlas/online-archive/view-private-endpoints/,atlas/source/online-archive/view-private-endpoints.txt,atlas,0,0,0,0,0,0, -2057,https://www.mongodb.com/docs/atlas/organizations-projects/,atlas/source/organizations-projects.txt,atlas,0,0,0,0,0,0, -2058,https://www.mongodb.com/docs/atlas/partner-integrations/,atlas/source/partner-integrations.txt,atlas,0,0,0,0,0,0, -2059,https://www.mongodb.com/docs/atlas/pause-terminate-cluster/,atlas/source/pause-terminate-cluster.txt,atlas,0,0,0,0,0,0, -2060,https://www.mongodb.com/docs/atlas/performance-advisor/,atlas/source/performance-advisor.txt,atlas,3,0,0,0,0,2, -2061,https://www.mongodb.com/docs/atlas/performance-advisor/access-with-mcp/,atlas/source/performance-advisor/access-with-mcp.txt,atlas,0,0,0,0,0,0, -2062,https://www.mongodb.com/docs/atlas/performance-advisor/drop-indexes/,atlas/source/performance-advisor/drop-indexes.txt,atlas,0,0,0,0,0,0, -2063,https://www.mongodb.com/docs/atlas/performance-advisor/enable-disable/,atlas/source/performance-advisor/enable-disable.txt,atlas,0,0,0,0,0,0, -2064,https://www.mongodb.com/docs/atlas/performance-advisor/index-ranking/,atlas/source/performance-advisor/index-ranking.txt,atlas,3,0,0,0,0,1, -2065,https://www.mongodb.com/docs/atlas/performance-advisor/recommend-search-text/,atlas/source/performance-advisor/recommend-search-text.txt,atlas,4,0,0,0,0,3, -2066,https://www.mongodb.com/docs/atlas/performance-advisor/schema-suggestions/,atlas/source/performance-advisor/schema-suggestions.txt,atlas,0,0,0,0,0,0, -2067,https://www.mongodb.com/docs/atlas/personalization/,atlas/source/personalization.txt,atlas,0,0,0,0,0,0, -2068,https://www.mongodb.com/docs/atlas/production-notes/,atlas/source/production-notes.txt,atlas,0,0,0,0,0,0, -2069,https://www.mongodb.com/docs/atlas/project-overview/,atlas/source/project-overview.txt,atlas,1,0,0,0,0,0, -2070,https://www.mongodb.com/docs/atlas/project-tags/,atlas/source/project-tags.txt,atlas,0,0,0,0,0,0, -2071,https://www.mongodb.com/docs/atlas/push-logs/,atlas/source/push-logs.txt,atlas,0,0,0,0,0,0, -2072,https://www.mongodb.com/docs/atlas/query-shape-insights/,atlas/source/query-shape-insights.txt,atlas,0,0,0,0,0,0, -2073,https://www.mongodb.com/docs/atlas/real-time-performance-panel/,atlas/source/real-time-performance-panel.txt,atlas,0,0,0,0,0,0, -2074,https://www.mongodb.com/docs/atlas/reconfigure-replica-set-during-regional-outage/,atlas/source/reconfigure-replica-set-during-regional-outage.txt,atlas,0,0,0,0,0,0, -2075,https://www.mongodb.com/docs/atlas/recover-pit-continuous-cloud-backup/,atlas/source/recover-pit-continuous-cloud-backup.txt,atlas,0,0,0,0,0,0, -2076,https://www.mongodb.com/docs/atlas/reference/,atlas/source/reference.txt,atlas,0,0,0,0,0,0, -2077,https://www.mongodb.com/docs/atlas/reference/alert-conditions/,atlas/source/reference/alert-conditions.txt,atlas,0,0,0,0,0,0, -2078,https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/,atlas/source/reference/alert-host-metrics.txt,atlas,0,0,0,0,0,0, -2079,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/atlas-autoscaling-alerts/,atlas/source/reference/alert-resolutions/atlas-autoscaling-alerts.txt,atlas,0,0,0,0,0,0, -2080,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/atlas-search-alerts/,atlas/source/reference/alert-resolutions/atlas-search-alerts.txt,atlas,0,0,0,0,0,0, -2081,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/connection-alerts/,atlas/source/reference/alert-resolutions/connection-alerts.txt,atlas,0,0,0,0,0,0, -2082,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/disk-io-utilization/,atlas/source/reference/alert-resolutions/disk-io-utilization.txt,atlas,0,0,0,0,0,0, -2083,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/disk-space-used/,atlas/source/reference/alert-resolutions/disk-space-used.txt,atlas,0,0,0,0,0,0, -2084,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/no-primary/,atlas/source/reference/alert-resolutions/no-primary.txt,atlas,0,0,0,0,0,0, -2085,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/query-targeting/,atlas/source/reference/alert-resolutions/query-targeting.txt,atlas,1,0,0,0,0,0, -2086,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/replication-oplog/,atlas/source/reference/alert-resolutions/replication-oplog.txt,atlas,1,0,0,0,0,0, -2087,https://www.mongodb.com/docs/atlas/reference/alert-resolutions/system-cpu-usage/,atlas/source/reference/alert-resolutions/system-cpu-usage.txt,atlas,0,0,0,0,0,0, -2088,https://www.mongodb.com/docs/atlas/reference/amazon-aws/,atlas/source/reference/amazon-aws.txt,atlas,0,0,0,0,0,0, -2089,https://www.mongodb.com/docs/atlas/reference/api-errors/,atlas/source/reference/api-errors.txt,atlas,0,0,0,0,0,0, -2090,https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/,atlas/source/reference/api-resources-spec/changelog.txt,atlas,0,0,0,0,0,0, -2091,https://www.mongodb.com/docs/atlas/reference/atlas-alert-event-types/,atlas/source/reference/atlas-alert-event-types.txt,atlas,0,0,0,0,0,0, -2092,https://www.mongodb.com/docs/atlas/reference/atlas-go-to/,atlas/source/reference/atlas-go-to.txt,atlas,0,0,0,0,0,0, -2093,https://www.mongodb.com/docs/atlas/reference/atlas-limits/,atlas/source/reference/atlas-limits.txt,atlas,0,0,0,0,0,0, -2094,https://www.mongodb.com/docs/atlas/reference/atlas-oplog/,atlas/source/reference/atlas-oplog.txt,atlas,2,0,0,0,0,1, -2095,https://www.mongodb.com/docs/atlas/reference/cloud-providers/,atlas/source/reference/cloud-providers.txt,atlas,0,0,0,0,0,0, -2096,https://www.mongodb.com/docs/atlas/reference/custom-role-actions/,atlas/source/reference/custom-role-actions.txt,atlas,0,0,0,0,0,0, -2097,https://www.mongodb.com/docs/atlas/reference/data-usage-cluster-ai-assistant/,atlas/source/reference/data-usage-cluster-ai-assistant.txt,atlas,0,0,0,0,0,0, -2098,https://www.mongodb.com/docs/atlas/reference/faq/accounts/,atlas/source/reference/faq/accounts.txt,atlas,0,0,0,0,0,0, -2099,https://www.mongodb.com/docs/atlas/reference/faq/applications/,atlas/source/reference/faq/applications.txt,atlas,0,0,0,0,0,0, -2100,https://www.mongodb.com/docs/atlas/reference/faq/backup/,atlas/source/reference/faq/backup.txt,atlas,0,0,0,0,0,0, -2101,https://www.mongodb.com/docs/atlas/reference/faq/billing/,atlas/source/reference/faq/billing.txt,atlas,0,0,0,0,0,0, -2102,https://www.mongodb.com/docs/atlas/reference/faq/connection-changes/,atlas/source/reference/faq/connection-changes.txt,atlas,15,0,0,0,0,13, -2103,https://www.mongodb.com/docs/atlas/reference/faq/database/,atlas/source/reference/faq/database.txt,atlas,0,0,0,0,0,0, -2104,https://www.mongodb.com/docs/atlas/reference/faq/deployment/,atlas/source/reference/faq/deployment.txt,atlas,0,0,0,0,0,0, -2105,https://www.mongodb.com/docs/atlas/reference/faq/monitoring-alerts/,atlas/source/reference/faq/monitoring-alerts.txt,atlas,0,0,0,0,0,0, -2106,https://www.mongodb.com/docs/atlas/reference/faq/nav-improvements/,atlas/source/reference/faq/nav-improvements.txt,atlas,0,0,0,0,0,0, -2107,https://www.mongodb.com/docs/atlas/reference/faq/networking/,atlas/source/reference/faq/networking.txt,atlas,2,0,0,0,0,1, -2108,https://www.mongodb.com/docs/atlas/reference/faq/security/,atlas/source/reference/faq/security.txt,atlas,1,0,0,0,0,0, -2109,https://www.mongodb.com/docs/atlas/reference/faq/storage/,atlas/source/reference/faq/storage.txt,atlas,1,0,0,0,0,1, -2110,https://www.mongodb.com/docs/atlas/reference/faq/support/,atlas/source/reference/faq/support.txt,atlas,0,0,0,0,0,0, -2111,https://www.mongodb.com/docs/atlas/reference/flex-limitations/,atlas/source/reference/flex-limitations.txt,atlas,2,0,0,0,0,1, -2112,https://www.mongodb.com/docs/atlas/reference/free-shared-limitations/,atlas/source/reference/free-shared-limitations.txt,atlas,2,0,0,0,0,1, -2113,https://www.mongodb.com/docs/atlas/reference/google-gcp/,atlas/source/reference/google-gcp.txt,atlas,0,0,0,0,0,0, -2114,https://www.mongodb.com/docs/atlas/reference/internal-database/,atlas/source/reference/internal-database.txt,atlas,0,0,0,0,0,0, -2115,https://www.mongodb.com/docs/atlas/reference/limitations/,atlas/source/reference/limitations.txt,atlas,0,0,0,0,0,0, -2116,https://www.mongodb.com/docs/atlas/reference/microsoft-azure/,atlas/source/reference/microsoft-azure.txt,atlas,0,0,0,0,0,0, -2117,https://www.mongodb.com/docs/atlas/reference/mongomirror-old-versions/,atlas/source/reference/mongomirror-old-versions.txt,atlas,0,0,0,0,0,0, -2118,https://www.mongodb.com/docs/atlas/reference/mongomirror/,atlas/source/reference/mongomirror.txt,atlas,15,0,0,0,0,10, -2119,https://www.mongodb.com/docs/atlas/reference/more-api-resources/,atlas/source/reference/more-api-resources.txt,atlas,0,0,0,0,0,0, -2120,https://www.mongodb.com/docs/atlas/reference/partner-integrations/azure/,atlas/source/reference/partner-integrations/azure.txt,atlas,0,0,0,0,0,0, -2121,https://www.mongodb.com/docs/atlas/reference/partner-integrations/render/,atlas/source/reference/partner-integrations/render.txt,atlas,0,0,0,0,0,0, -2122,https://www.mongodb.com/docs/atlas/reference/partner-integrations/vercel/,atlas/source/reference/partner-integrations/vercel.txt,atlas,0,0,0,0,0,0, -2123,https://www.mongodb.com/docs/atlas/reference/replica-set-tags/,atlas/source/reference/replica-set-tags.txt,atlas,7,0,0,0,0,2, -2124,https://www.mongodb.com/docs/atlas/reference/supported-browsers/,atlas/source/reference/supported-browsers.txt,atlas,0,0,0,0,0,0, -2125,https://www.mongodb.com/docs/atlas/reference/third-party-integration-settings-discovery/,atlas/source/reference/third-party-integration-settings-discovery.txt,atlas,3,0,0,0,0,1, -2126,https://www.mongodb.com/docs/atlas/reference/user-roles/,atlas/source/reference/user-roles.txt,atlas,0,0,0,0,0,0, -2127,https://www.mongodb.com/docs/atlas/release-notes/,atlas/source/release-notes.txt,atlas,0,0,0,0,0,0, -2128,https://www.mongodb.com/docs/atlas/release-notes/changelog/,atlas/source/release-notes/changelog.txt,atlas,0,0,0,0,0,0, -2129,https://www.mongodb.com/docs/atlas/release-notes/data-federation/,atlas/source/release-notes/data-federation.txt,atlas,0,0,0,0,0,0, -2130,https://www.mongodb.com/docs/atlas/release-notes/mongomirror/,atlas/source/release-notes/mongomirror.txt,atlas,1,0,0,0,0,1, -2131,https://www.mongodb.com/docs/atlas/resilient-application/,atlas/source/resilient-application.txt,atlas,16,0,0,0,12,0, -2132,https://www.mongodb.com/docs/atlas/review-all-cluster-metrics/,atlas/source/review-all-cluster-metrics.txt,atlas,0,0,0,0,0,0, -2133,https://www.mongodb.com/docs/atlas/review-atlas-search-metrics/,atlas/source/review-atlas-search-metrics.txt,atlas,0,0,0,0,0,0, -2134,https://www.mongodb.com/docs/atlas/review-available-metrics/,atlas/source/review-available-metrics.txt,atlas,0,0,0,0,0,0, -2135,https://www.mongodb.com/docs/atlas/review-flex-metrics/,atlas/source/review-flex-metrics.txt,atlas,0,0,0,0,0,0, -2136,https://www.mongodb.com/docs/atlas/review-mongodb-process-metrics/,atlas/source/review-mongodb-process-metrics.txt,atlas,0,0,0,0,0,0, -2137,https://www.mongodb.com/docs/atlas/review-real-time-metrics/,atlas/source/review-real-time-metrics.txt,atlas,0,0,0,0,0,0, -2138,https://www.mongodb.com/docs/atlas/review-replica-set-metrics/,atlas/source/review-replica-set-metrics.txt,atlas,0,0,0,0,0,0, -2139,https://www.mongodb.com/docs/atlas/review-sharded-cluster-metrics/,atlas/source/review-sharded-cluster-metrics.txt,atlas,0,0,0,0,0,0, -2140,https://www.mongodb.com/docs/atlas/sample-data/,atlas/source/sample-data.txt,atlas,0,0,0,0,0,0, -2141,https://www.mongodb.com/docs/atlas/sample-data/load-sample-data-local/,atlas/source/sample-data/load-sample-data-local.txt,atlas,2,0,0,0,0,0, -2142,https://www.mongodb.com/docs/atlas/sample-data/load-sample-data/,atlas/source/sample-data/load-sample-data.txt,atlas,2,0,0,0,0,0, -2143,https://www.mongodb.com/docs/atlas/sample-data/sample-airbnb/,atlas/source/sample-data/sample-airbnb.txt,atlas,1,0,0,0,0,0, -2144,https://www.mongodb.com/docs/atlas/sample-data/sample-analytics/,atlas/source/sample-data/sample-analytics.txt,atlas,3,0,0,0,0,0, -2145,https://www.mongodb.com/docs/atlas/sample-data/sample-geospatial/,atlas/source/sample-data/sample-geospatial.txt,atlas,1,0,0,0,0,0, -2146,https://www.mongodb.com/docs/atlas/sample-data/sample-guides/,atlas/source/sample-data/sample-guides.txt,atlas,1,0,0,0,0,0, -2147,https://www.mongodb.com/docs/atlas/sample-data/sample-mflix/,atlas/source/sample-data/sample-mflix.txt,atlas,6,0,0,0,0,0, -2148,https://www.mongodb.com/docs/atlas/sample-data/sample-restaurants/,atlas/source/sample-data/sample-restaurants.txt,atlas,2,0,0,0,0,0, -2149,https://www.mongodb.com/docs/atlas/sample-data/sample-supplies/,atlas/source/sample-data/sample-supplies.txt,atlas,1,0,0,0,0,0, -2150,https://www.mongodb.com/docs/atlas/sample-data/sample-training/,atlas/source/sample-data/sample-training.txt,atlas,7,0,0,0,0,7, -2151,https://www.mongodb.com/docs/atlas/sample-data/sample-weather/,atlas/source/sample-data/sample-weather.txt,atlas,1,0,0,0,0,0, -2152,https://www.mongodb.com/docs/atlas/scale-cluster/,atlas/source/scale-cluster.txt,atlas,0,0,0,0,0,0, -2153,https://www.mongodb.com/docs/atlas/schema-suggestions/avoid-unbounded-arrays/,atlas/source/schema-suggestions/avoid-unbounded-arrays.txt,atlas,2,0,0,0,0,2, -2154,https://www.mongodb.com/docs/atlas/schema-suggestions/case-insensitive-regex/,atlas/source/schema-suggestions/case-insensitive-regex.txt,atlas,3,0,0,0,0,1, -2155,https://www.mongodb.com/docs/atlas/schema-suggestions/reduce-document-size/,atlas/source/schema-suggestions/reduce-document-size.txt,atlas,2,0,0,0,0,2, -2156,https://www.mongodb.com/docs/atlas/schema-suggestions/reduce-lookup-operations/,atlas/source/schema-suggestions/reduce-lookup-operations.txt,atlas,4,0,0,0,0,4, -2157,https://www.mongodb.com/docs/atlas/schema-suggestions/too-many-collections/,atlas/source/schema-suggestions/too-many-collections.txt,atlas,3,0,0,0,0,3, -2158,https://www.mongodb.com/docs/atlas/schema-suggestions/too-many-indexes/,atlas/source/schema-suggestions/too-many-indexes.txt,atlas,1,0,0,0,0,1, -2159,https://www.mongodb.com/docs/atlas/sdk/,atlas/source/sdk.txt,atlas,0,0,0,0,0,0, -2160,https://www.mongodb.com/docs/atlas/sdk/go/authentication/,atlas/source/sdk/go/authentication.txt,atlas,3,0,0,0,3,0, -2161,https://www.mongodb.com/docs/atlas/sdk/go/best_practices/,atlas/source/sdk/go/best_practices.txt,atlas,9,0,0,0,9,0, -2162,https://www.mongodb.com/docs/atlas/sdk/go/concepts/,atlas/source/sdk/go/concepts.txt,atlas,3,0,0,0,3,0, -2163,https://www.mongodb.com/docs/atlas/sdk/go/error_handling/,atlas/source/sdk/go/error_handling.txt,atlas,4,0,0,0,4,0, -2164,https://www.mongodb.com/docs/atlas/sdk/go/migration/,atlas/source/sdk/go/migration.txt,atlas,3,0,0,0,3,0, -2165,https://www.mongodb.com/docs/atlas/security-add-mongodb-roles/,atlas/source/security-add-mongodb-roles.txt,atlas,0,0,0,0,0,0, -2166,https://www.mongodb.com/docs/atlas/security-add-mongodb-users/,atlas/source/security-add-mongodb-users.txt,atlas,0,0,0,0,0,0, -2167,https://www.mongodb.com/docs/atlas/security-aws-kms/,atlas/source/security-aws-kms.txt,atlas,0,0,0,0,0,0, -2168,https://www.mongodb.com/docs/atlas/security-azure-kms/,atlas/source/security-azure-kms.txt,atlas,2,0,0,0,0,0, -2169,https://www.mongodb.com/docs/atlas/security-cluster-private-endpoint/,atlas/source/security-cluster-private-endpoint.txt,atlas,17,1,1,0,0,6, -2170,https://www.mongodb.com/docs/atlas/security-configure-private-endpoints/,atlas/source/security-configure-private-endpoints.txt,atlas,0,0,0,0,0,0, -2171,https://www.mongodb.com/docs/atlas/security-gcp-kms/,atlas/source/security-gcp-kms.txt,atlas,5,0,0,0,0,5, -2172,https://www.mongodb.com/docs/atlas/security-kms-encryption/,atlas/source/security-kms-encryption.txt,atlas,2,0,0,0,0,0, -2173,https://www.mongodb.com/docs/atlas/security-ldaps-azure/,atlas/source/security-ldaps-azure.txt,atlas,15,0,0,0,0,15, -2174,https://www.mongodb.com/docs/atlas/security-ldaps-okta/,atlas/source/security-ldaps-okta.txt,atlas,11,0,0,0,0,11, -2175,https://www.mongodb.com/docs/atlas/security-ldaps-onelogin/,atlas/source/security-ldaps-onelogin.txt,atlas,12,0,0,0,0,12, -2176,https://www.mongodb.com/docs/atlas/security-ldaps/,atlas/source/security-ldaps.txt,atlas,1,0,0,0,0,1, -2177,https://www.mongodb.com/docs/atlas/security-manage-private-endpoint/,atlas/source/security-manage-private-endpoint.txt,atlas,0,0,0,0,0,0, -2178,https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/,atlas/source/security-multi-factor-authentication.txt,atlas,0,0,0,0,0,0, -2179,https://www.mongodb.com/docs/atlas/security-oidc/,atlas/source/security-oidc.txt,atlas,0,0,0,0,0,0, -2180,https://www.mongodb.com/docs/atlas/security-private-endpoint/,atlas/source/security-private-endpoint.txt,atlas,11,0,0,0,0,5, -2181,https://www.mongodb.com/docs/atlas/security-restrict-support-access/,atlas/source/security-restrict-support-access.txt,atlas,0,0,0,0,0,0, -2182,https://www.mongodb.com/docs/atlas/security-self-managed-x509/,atlas/source/security-self-managed-x509.txt,atlas,1,0,0,0,0,0, -2183,https://www.mongodb.com/docs/atlas/security-vpc-peering/,atlas/source/security-vpc-peering.txt,atlas,1,0,0,0,0,0, -2184,https://www.mongodb.com/docs/atlas/security/add-ip-address-to-list/,atlas/source/security/add-ip-address-to-list.txt,atlas,0,0,0,0,0,0, -2185,https://www.mongodb.com/docs/atlas/security/aws-iam-authentication/,atlas/source/security/aws-iam-authentication.txt,atlas,3,0,0,0,0,3, -2186,https://www.mongodb.com/docs/atlas/security/aws-kms-over-private-endpoint/,atlas/source/security/aws-kms-over-private-endpoint.txt,atlas,13,2,2,0,0,8, -2187,https://www.mongodb.com/docs/atlas/security/aws-kms-over-public-network/,atlas/source/security/aws-kms-over-public-network.txt,atlas,3,0,0,0,0,0, -2188,https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/,atlas/source/security/azure-kms-over-private-endpoint.txt,atlas,15,3,3,0,0,4, -2189,https://www.mongodb.com/docs/atlas/security/azure-kms-over-public-network/,atlas/source/security/azure-kms-over-public-network.txt,atlas,5,1,1,0,0,1, -2190,https://www.mongodb.com/docs/atlas/security/azure-kms-secretless/,atlas/source/security/azure-kms-secretless.txt,atlas,14,0,0,0,0,13, -2191,https://www.mongodb.com/docs/atlas/security/cloud-provider-access/,atlas/source/security/cloud-provider-access.txt,atlas,0,0,0,0,0,0, -2192,https://www.mongodb.com/docs/atlas/security/config-db-auth/,atlas/source/security/config-db-auth.txt,atlas,0,0,0,0,0,0, -2193,https://www.mongodb.com/docs/atlas/security/federated-auth-azure-ad/,atlas/source/security/federated-auth-azure-ad.txt,atlas,1,0,0,0,0,0, -2194,https://www.mongodb.com/docs/atlas/security/federated-auth-google-ws/,atlas/source/security/federated-auth-google-ws.txt,atlas,1,0,0,0,0,0, -2195,https://www.mongodb.com/docs/atlas/security/federated-auth-okta/,atlas/source/security/federated-auth-okta.txt,atlas,2,0,0,0,0,1, -2196,https://www.mongodb.com/docs/atlas/security/federated-auth-ping-one/,atlas/source/security/federated-auth-ping-one.txt,atlas,1,0,0,0,0,0, -2197,https://www.mongodb.com/docs/atlas/security/federated-authentication/,atlas/source/security/federated-authentication.txt,atlas,0,0,0,0,0,0, -2198,https://www.mongodb.com/docs/atlas/security/federation-advanced-options/,atlas/source/security/federation-advanced-options.txt,atlas,0,0,0,0,0,0, -2199,https://www.mongodb.com/docs/atlas/security/ip-access-list/,atlas/source/security/ip-access-list.txt,atlas,0,0,0,0,0,0, -2200,https://www.mongodb.com/docs/atlas/security/manage-domain-mapping/,atlas/source/security/manage-domain-mapping.txt,atlas,1,0,0,0,0,0, -2201,https://www.mongodb.com/docs/atlas/security/manage-federated-auth/,atlas/source/security/manage-federated-auth.txt,atlas,0,0,0,0,0,0, -2202,https://www.mongodb.com/docs/atlas/security/manage-org-mapping/,atlas/source/security/manage-org-mapping.txt,atlas,0,0,0,0,0,0, -2203,https://www.mongodb.com/docs/atlas/security/manage-role-mapping/,atlas/source/security/manage-role-mapping.txt,atlas,0,0,0,0,0,0, -2204,https://www.mongodb.com/docs/atlas/security/manage-your-mongodb-atlas-account/,atlas/source/security/manage-your-mongodb-atlas-account.txt,atlas,0,0,0,0,0,0, -2205,https://www.mongodb.com/docs/atlas/security/quick-start/,atlas/source/security/quick-start.txt,atlas,0,0,0,0,0,0, -2206,https://www.mongodb.com/docs/atlas/security/set-up-azure-access/,atlas/source/security/set-up-azure-access.txt,atlas,0,0,0,0,0,0, -2207,https://www.mongodb.com/docs/atlas/security/set-up-gcp-access/,atlas/source/security/set-up-gcp-access.txt,atlas,0,0,0,0,0,0, -2208,https://www.mongodb.com/docs/atlas/security/set-up-unified-aws-access/,atlas/source/security/set-up-unified-aws-access.txt,atlas,1,0,0,0,0,0, -2209,https://www.mongodb.com/docs/atlas/setup-cluster-security/,atlas/source/setup-cluster-security.txt,atlas,2,0,0,0,0,0, -2210,https://www.mongodb.com/docs/atlas/shard-global-collection/,atlas/source/shard-global-collection.txt,atlas,0,0,0,0,0,0, -2211,https://www.mongodb.com/docs/atlas/sizing-tier-selection/,atlas/source/sizing-tier-selection.txt,atlas,2,0,0,0,0,1, -2212,https://www.mongodb.com/docs/atlas/support/,atlas/source/support.txt,atlas,0,0,0,0,0,0, -2213,https://www.mongodb.com/docs/atlas/synthetic-data/,atlas/source/synthetic-data.txt,atlas,8,0,0,0,0,2, -2214,https://www.mongodb.com/docs/atlas/tags/,atlas/source/tags.txt,atlas,0,0,0,0,0,0, -2215,https://www.mongodb.com/docs/atlas/terminate-flex-clusters/,atlas/source/terminate-flex-clusters.txt,atlas,0,0,0,0,0,0, -2216,https://www.mongodb.com/docs/atlas/terraform/,atlas/source/terraform.txt,atlas,6,0,0,0,0,5, -2217,https://www.mongodb.com/docs/atlas/troubleshoot-connection/,atlas/source/troubleshoot-connection.txt,atlas,20,0,0,0,4,10, -2218,https://www.mongodb.com/docs/atlas/troubleshoot-private-endpoints/,atlas/source/troubleshoot-private-endpoints.txt,atlas,28,8,8,0,1,14, -2219,https://www.mongodb.com/docs/atlas/tutorial/access-encrypted-snapshot/,atlas/source/tutorial/access-encrypted-snapshot.txt,atlas,4,0,0,0,0,3, -2220,https://www.mongodb.com/docs/atlas/tutorial/activity-feed/,atlas/source/tutorial/activity-feed.txt,atlas,2,0,0,0,0,0, -2221,https://www.mongodb.com/docs/atlas/tutorial/azure-service-connector/,atlas/source/tutorial/azure-service-connector.txt,atlas,0,0,0,0,0,0, -2222,https://www.mongodb.com/docs/atlas/tutorial/cluster-maintenance-window/,atlas/source/tutorial/cluster-maintenance-window.txt,atlas,2,0,0,0,0,2, -2223,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-excel/,atlas/source/tutorial/connect-bic-excel.txt,atlas,1,0,0,0,0,1, -2224,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-powerbi/,atlas/source/tutorial/connect-bic-powerbi.txt,atlas,0,0,0,0,0,0, -2225,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-qlik/,atlas/source/tutorial/connect-bic-qlik.txt,atlas,0,0,0,0,0,0, -2226,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-tableau/,atlas/source/tutorial/connect-bic-tableau.txt,atlas,1,0,0,0,0,1, -2227,https://www.mongodb.com/docs/atlas/tutorial/connect-bic-workbench/,atlas/source/tutorial/connect-bic-workbench.txt,atlas,1,0,0,0,0,1, -2228,https://www.mongodb.com/docs/atlas/tutorial/create-atlas-account/,atlas/source/tutorial/create-atlas-account.txt,atlas,0,0,0,0,0,0, -2229,https://www.mongodb.com/docs/atlas/tutorial/create-global-cluster/,atlas/source/tutorial/create-global-cluster.txt,atlas,0,0,0,0,0,0, -2230,https://www.mongodb.com/docs/atlas/tutorial/create-mongodb-user-for-cluster/,atlas/source/tutorial/create-mongodb-user-for-cluster.txt,atlas,0,0,0,0,0,0, -2231,https://www.mongodb.com/docs/atlas/tutorial/create-new-cluster/,atlas/source/tutorial/create-new-cluster.txt,atlas,0,0,0,0,0,0, -2232,https://www.mongodb.com/docs/atlas/tutorial/create-system-dsn/,atlas/source/tutorial/create-system-dsn.txt,atlas,4,0,0,0,0,1, -2233,https://www.mongodb.com/docs/atlas/tutorial/datadog-integration/,atlas/source/tutorial/datadog-integration.txt,atlas,0,0,0,0,0,0, -2234,https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster/,atlas/source/tutorial/deploy-free-tier-cluster.txt,atlas,0,0,0,0,0,0, -2235,https://www.mongodb.com/docs/atlas/tutorial/insert-data-into-your-cluster/,atlas/source/tutorial/insert-data-into-your-cluster.txt,atlas,28,7,7,0,5,6, -2236,https://www.mongodb.com/docs/atlas/tutorial/integrate-msft-teams/,atlas/source/tutorial/integrate-msft-teams.txt,atlas,0,0,0,0,0,0, -2237,https://www.mongodb.com/docs/atlas/tutorial/major-version-change/,atlas/source/tutorial/major-version-change.txt,atlas,0,0,0,0,0,0, -2238,https://www.mongodb.com/docs/atlas/tutorial/major-version-downgrade/,atlas/source/tutorial/major-version-downgrade.txt,atlas,0,0,0,0,0,0, -2239,https://www.mongodb.com/docs/atlas/tutorial/manage-organization-settings/,atlas/source/tutorial/manage-organization-settings.txt,atlas,0,0,0,0,0,0, -2240,https://www.mongodb.com/docs/atlas/tutorial/manage-organizations/,atlas/source/tutorial/manage-organizations.txt,atlas,1,0,0,0,0,0, -2241,https://www.mongodb.com/docs/atlas/tutorial/manage-project-settings/,atlas/source/tutorial/manage-project-settings.txt,atlas,0,0,0,0,0,0, -2242,https://www.mongodb.com/docs/atlas/tutorial/manage-projects/,atlas/source/tutorial/manage-projects.txt,atlas,0,0,0,0,0,0, -2243,https://www.mongodb.com/docs/atlas/tutorial/move-cluster/,atlas/source/tutorial/move-cluster.txt,atlas,0,0,0,0,0,0, -2244,https://www.mongodb.com/docs/atlas/tutorial/pagerduty-integration/,atlas/source/tutorial/pagerduty-integration.txt,atlas,0,0,0,0,0,0, -2245,https://www.mongodb.com/docs/atlas/tutorial/prometheus-integration/,atlas/source/tutorial/prometheus-integration.txt,atlas,8,0,0,0,1,2, -2246,https://www.mongodb.com/docs/atlas/tutorial/query-profiler/,atlas/source/tutorial/query-profiler.txt,atlas,0,0,0,0,0,0, -2247,https://www.mongodb.com/docs/atlas/tutorial/rotate-service-account-secrets/,atlas/source/tutorial/rotate-service-account-secrets.txt,atlas,0,0,0,0,0,0, -2248,https://www.mongodb.com/docs/atlas/tutorial/test-resilience/,atlas/source/tutorial/test-resilience.txt,atlas,0,0,0,0,0,0, -2249,https://www.mongodb.com/docs/atlas/tutorial/test-resilience/simulate-regional-outage/,atlas/source/tutorial/test-resilience/simulate-regional-outage.txt,atlas,0,0,0,0,0,0, -2250,https://www.mongodb.com/docs/atlas/tutorial/test-resilience/test-primary-failover/,atlas/source/tutorial/test-resilience/test-primary-failover.txt,atlas,0,0,0,0,0,0, -2251,https://www.mongodb.com/docs/atlas/tutorial/third-party-service-integrations/,atlas/source/tutorial/third-party-service-integrations.txt,atlas,0,0,0,0,0,0, -2252,https://www.mongodb.com/docs/atlas/tutorial/transition-free-tier-to-paid/,atlas/source/tutorial/transition-free-tier-to-paid.txt,atlas,0,0,0,0,0,0, -2253,https://www.mongodb.com/docs/atlas/unsupported-commands/,atlas/source/unsupported-commands.txt,atlas,2,0,0,0,0,1, -2254,https://www.mongodb.com/docs/atlas/username-changes/,atlas/source/username-changes.txt,atlas,0,0,0,0,0,0, -2255,https://www.mongodb.com/docs/atlas/workforce-oidc/,atlas/source/workforce-oidc.txt,atlas,0,0,0,0,0,0, -2256,https://www.mongodb.com/docs/atlas/workload-oidc/,atlas/source/workload-oidc.txt,atlas,0,0,0,0,0,0, -2257,https://www.mongodb.com/docs/drivers/node/current/aggregation/,node/current/source/aggregation.txt,node,0,0,0,0,0,0, -2258,https://www.mongodb.com/docs/drivers/node/current/aggregation/pipeline-stages/,node/current/source/aggregation/pipeline-stages.txt,node,2,0,0,0,2,0, -2259,https://www.mongodb.com/docs/drivers/node/current/atlas-search/,node/current/source/atlas-search.txt,node,2,1,1,0,1,1, -2260,https://www.mongodb.com/docs/drivers/node/current/atlas-vector-search/,node/current/source/atlas-vector-search.txt,node,2,1,1,0,2,0, -2261,https://www.mongodb.com/docs/drivers/node/current/connect/,node/current/source/connect.txt,node,0,0,0,0,0,0, -2262,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/,node/current/source/connect/connection-options.txt,node,3,0,0,0,3,0, -2263,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/connection-pools/,node/current/source/connect/connection-options/connection-pools.txt,node,5,0,0,0,5,0, -2264,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/csot/,node/current/source/connect/connection-options/csot.txt,node,6,0,0,0,6,0, -2265,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/network-compression/,node/current/source/connect/connection-options/network-compression.txt,node,4,0,0,0,4,0, -2266,https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/stable-api/,node/current/source/connect/connection-options/stable-api.txt,node,3,0,0,0,2,0, -2267,https://www.mongodb.com/docs/drivers/node/current/connect/connection-targets/,node/current/source/connect/connection-targets.txt,node,5,0,0,0,5,0, -2268,https://www.mongodb.com/docs/drivers/node/current/connect/connection-troubleshooting/,node/current/source/connect/connection-troubleshooting.txt,node,12,0,0,0,4,0, -2269,https://www.mongodb.com/docs/drivers/node/current/connect/mongoclient/,node/current/source/connect/mongoclient.txt,node,2,0,0,0,2,0, -2270,https://www.mongodb.com/docs/drivers/node/current/connect/multiple-connections/,node/current/source/connect/multiple-connections.txt,node,17,2,2,0,10,6, -2271,https://www.mongodb.com/docs/drivers/node/current/crud/,node/current/source/crud.txt,node,0,0,0,0,0,0, -2272,https://www.mongodb.com/docs/drivers/node/current/crud/bulk-write/,node/current/source/crud/bulk-write.txt,node,19,8,8,0,0,8, -2273,https://www.mongodb.com/docs/drivers/node/current/crud/compound-operations/,node/current/source/crud/compound-operations.txt,node,5,2,2,0,4,0, -2274,https://www.mongodb.com/docs/drivers/node/current/crud/configure/,node/current/source/crud/configure.txt,node,13,0,0,0,11,0, -2275,https://www.mongodb.com/docs/drivers/node/current/crud/delete/,node/current/source/crud/delete.txt,node,10,0,0,0,0,0, -2276,https://www.mongodb.com/docs/drivers/node/current/crud/gridfs/,node/current/source/crud/gridfs.txt,node,9,0,0,0,9,0, -2277,https://www.mongodb.com/docs/drivers/node/current/crud/insert/,node/current/source/crud/insert.txt,node,14,0,0,0,0,0, -2278,https://www.mongodb.com/docs/drivers/node/current/crud/pkFactory/,node/current/source/crud/pkFactory.txt,node,2,0,0,0,2,0, -2279,https://www.mongodb.com/docs/drivers/node/current/crud/query/,node/current/source/crud/query.txt,node,0,0,0,0,0,0, -2280,https://www.mongodb.com/docs/drivers/node/current/crud/query/count/,node/current/source/crud/query/count.txt,node,3,0,0,0,2,0, -2281,https://www.mongodb.com/docs/drivers/node/current/crud/query/cursor/,node/current/source/crud/query/cursor.txt,node,8,0,0,0,8,0, -2282,https://www.mongodb.com/docs/drivers/node/current/crud/query/distinct/,node/current/source/crud/query/distinct.txt,node,11,0,0,0,0,0, -2283,https://www.mongodb.com/docs/drivers/node/current/crud/query/geo/,node/current/source/crud/query/geo.txt,node,6,0,0,0,6,0, -2284,https://www.mongodb.com/docs/drivers/node/current/crud/query/project/,node/current/source/crud/query/project.txt,node,7,0,0,0,4,0, -2285,https://www.mongodb.com/docs/drivers/node/current/crud/query/query-document/,node/current/source/crud/query/query-document.txt,node,13,0,0,0,13,0, -2286,https://www.mongodb.com/docs/drivers/node/current/crud/query/retrieve/,node/current/source/crud/query/retrieve.txt,node,15,0,0,0,0,0, -2287,https://www.mongodb.com/docs/drivers/node/current/crud/query/specify-documents-to-return/,node/current/source/crud/query/specify-documents-to-return.txt,node,12,1,1,0,7,0, -2288,https://www.mongodb.com/docs/drivers/node/current/crud/query/text/,node/current/source/crud/query/text.txt,node,10,0,0,0,10,0, -2289,https://www.mongodb.com/docs/drivers/node/current/crud/transactions/,node/current/source/crud/transactions.txt,node,4,0,0,0,4,0, -2290,https://www.mongodb.com/docs/drivers/node/current/crud/transactions/transaction-conv/,node/current/source/crud/transactions/transaction-conv.txt,node,6,0,0,0,4,0, -2291,https://www.mongodb.com/docs/drivers/node/current/crud/transactions/transaction-core/,node/current/source/crud/transactions/transaction-core.txt,node,7,0,0,0,2,0, -2292,https://www.mongodb.com/docs/drivers/node/current/crud/update/,node/current/source/crud/update.txt,node,4,0,0,0,4,0, -2293,https://www.mongodb.com/docs/drivers/node/current/crud/update/embedded-arrays/,node/current/source/crud/update/embedded-arrays.txt,node,13,0,0,0,12,0, -2294,https://www.mongodb.com/docs/drivers/node/current/crud/update/modify/,node/current/source/crud/update/modify.txt,node,10,0,0,0,0,0, -2295,https://www.mongodb.com/docs/drivers/node/current/crud/update/replace/,node/current/source/crud/update/replace.txt,node,7,0,0,0,0,0, -2296,https://www.mongodb.com/docs/drivers/node/current/data-formats/,node/current/source/data-formats.txt,node,0,0,0,0,0,0, -2297,https://www.mongodb.com/docs/drivers/node/current/data-formats/bson/,node/current/source/data-formats/bson.txt,node,8,1,1,0,7,0, -2298,https://www.mongodb.com/docs/drivers/node/current/data-formats/bson/undefined-values/,node/current/source/data-formats/bson/undefined-values.txt,node,4,0,0,0,4,0, -2299,https://www.mongodb.com/docs/drivers/node/current/data-formats/bson/utf8-validation/,node/current/source/data-formats/bson/utf8-validation.txt,node,4,0,0,0,4,0, -2300,https://www.mongodb.com/docs/drivers/node/current/data-formats/extended-json/,node/current/source/data-formats/extended-json.txt,node,8,3,3,0,6,0, -2301,https://www.mongodb.com/docs/drivers/node/current/data-formats/time-series/,node/current/source/data-formats/time-series.txt,node,0,0,0,0,0,0, -2302,https://www.mongodb.com/docs/drivers/node/current/databases-collections/,node/current/source/databases-collections.txt,node,9,2,2,0,7,2, -2303,https://www.mongodb.com/docs/drivers/node/current/get-started/,node/current/source/get-started.txt,node,6,0,0,1,1,3, -2304,https://www.mongodb.com/docs/drivers/node/current/includes/connect/multiple-connections-env-vars/,node/current/source/includes/connect/multiple-connections-env-vars.txt,node,0,0,0,0,0,0, -2305,https://www.mongodb.com/docs/drivers/node/current/,node/current/source/index.txt,node,0,0,0,0,0,0, -2306,https://www.mongodb.com/docs/drivers/node/current/indexes/,node/current/source/indexes.txt,node,19,0,0,0,17,0, -2307,https://www.mongodb.com/docs/drivers/node/current/integrations/,node/current/source/integrations.txt,node,0,0,0,0,0,0, -2308,https://www.mongodb.com/docs/drivers/node/current/integrations/mongoose/,node/current/source/integrations/mongoose.txt,node,0,0,0,0,0,0, -2309,https://www.mongodb.com/docs/drivers/node/current/integrations/mongoose/mongoose-get-started/,node/current/source/integrations/mongoose/mongoose-get-started.txt,node,38,8,8,0,26,10, -2310,https://www.mongodb.com/docs/drivers/node/current/integrations/mongoose/mongoose-qe/,node/current/source/integrations/mongoose/mongoose-qe.txt,node,18,0,0,0,15,3, -2311,https://www.mongodb.com/docs/drivers/node/current/integrations/next-vercel/,node/current/source/integrations/next-vercel.txt,node,10,0,0,0,3,6, -2312,https://www.mongodb.com/docs/drivers/node/current/integrations/prisma/,node/current/source/integrations/prisma.txt,node,4,0,0,0,1,3, -2313,https://www.mongodb.com/docs/drivers/node/current/issues-and-help/,node/current/source/issues-and-help.txt,node,2,0,0,0,0,2, -2314,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/,node/current/source/monitoring-and-logging.txt,node,0,0,0,0,0,0, -2315,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/change-streams/,node/current/source/monitoring-and-logging/change-streams.txt,node,8,0,0,0,7,0, -2316,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/logging/,node/current/source/monitoring-and-logging/logging.txt,node,7,0,0,0,4,3, -2317,https://www.mongodb.com/docs/drivers/node/current/monitoring-and-logging/monitoring/,node/current/source/monitoring-and-logging/monitoring.txt,node,27,0,0,0,27,0, -2318,https://www.mongodb.com/docs/drivers/node/current/promises/,node/current/source/promises.txt,node,7,0,0,0,7,0, -2319,https://www.mongodb.com/docs/drivers/node/current/reference/,node/current/source/reference.txt,node,0,0,0,0,0,0, -2320,https://www.mongodb.com/docs/drivers/node/current/reference/quick-reference/,node/current/source/reference/quick-reference.txt,node,0,0,0,0,0,0, -2321,https://www.mongodb.com/docs/drivers/node/current/reference/release-notes/,node/current/source/reference/release-notes.txt,node,9,0,0,0,8,1, -2322,https://www.mongodb.com/docs/drivers/node/current/reference/upgrade/,node/current/source/reference/upgrade.txt,node,5,0,0,0,4,1, -2323,https://www.mongodb.com/docs/drivers/node/current/run-command/,node/current/source/run-command.txt,node,7,0,0,0,7,0, -2324,https://www.mongodb.com/docs/drivers/node/current/security/,node/current/source/security.txt,node,0,0,0,0,0,0, -2325,https://www.mongodb.com/docs/drivers/node/current/security/authentication/,node/current/source/security/authentication.txt,node,0,0,0,0,0,0, -2326,https://www.mongodb.com/docs/drivers/node/current/security/authentication/aws-iam/,node/current/source/security/authentication/aws-iam.txt,node,8,0,0,0,4,4, -2327,https://www.mongodb.com/docs/drivers/node/current/security/authentication/kerberos/,node/current/source/security/authentication/kerberos.txt,node,1,0,0,0,1,0, -2328,https://www.mongodb.com/docs/drivers/node/current/security/authentication/ldap/,node/current/source/security/authentication/ldap.txt,node,1,0,0,0,1,0, -2329,https://www.mongodb.com/docs/drivers/node/current/security/authentication/oidc/,node/current/source/security/authentication/oidc.txt,node,7,0,0,0,7,0, -2330,https://www.mongodb.com/docs/drivers/node/current/security/authentication/scram/,node/current/source/security/authentication/scram.txt,node,3,0,0,0,3,0, -2331,https://www.mongodb.com/docs/drivers/node/current/security/authentication/x509/,node/current/source/security/authentication/x509.txt,node,1,0,0,0,1,0, -2332,https://www.mongodb.com/docs/drivers/node/current/security/encrypt-fields/,node/current/source/security/encrypt-fields.txt,node,0,0,0,0,0,0, -2333,https://www.mongodb.com/docs/drivers/node/current/security/socks/,node/current/source/security/socks.txt,node,2,0,0,0,1,1, -2334,https://www.mongodb.com/docs/drivers/node/current/security/tls/,node/current/source/security/tls.txt,node,7,0,0,0,7,0, -2335,https://www.mongodb.com/docs/drivers/node/current/typescript/,node/current/source/typescript.txt,node,23,0,0,0,21,0, From a90800bcefeead622281d20ec489c189945f5ea6 Mon Sep 17 00:00:00 2001 From: Kyle Rollins <115574589+krollins-mdb@users.noreply.github.com> Date: Wed, 11 Mar 2026 17:40:03 -0500 Subject: [PATCH 4/5] feat(report): enhance testable-code command with Docs Set scanning mode and version filtering --- README.md | 38 +++++++- .../report/testable-code/docs_set_scanner.go | 86 +++++++++++++++---- .../report/testable-code/testable_code.go | 25 +++++- 3 files changed, 126 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 6e62492..95d43e4 100644 --- a/README.md +++ b/README.md @@ -1575,9 +1575,14 @@ echo "Total documentation pages: $TOTAL_PAGES" #### `report testable-code` -Analyze testable code examples on documentation pages based on analytics CSV data. +Analyze testable code examples on documentation pages based on analytics CSV data or by scanning documentation sets directly. -This command takes a CSV file with page rankings and URLs, resolves each URL to its source file in the monorepo, collects code examples (literalinclude, code-block, io-code-block), and generates a report with testability information. +This command resolves URLs to source files in the monorepo, collects code examples (literalinclude, code-block, io-code-block), and generates a report with testability information. + +**Input Modes:** + +1. **CSV Mode** (default): Takes a CSV file with page rankings and URLs +2. **Docs Set Mode**: Scan all pages in specified content directories using `--for-docs-set` **Use Cases:** @@ -1588,6 +1593,7 @@ This command helps writers and maintainers: - Track the ratio of tested vs testable code examples - Understand code example distribution by product/language - Find "maybe testable" examples that need manual review +- Scan entire documentation sets for testability analysis **Key Concepts:** @@ -1598,12 +1604,21 @@ This command helps writers and maintainers: **Examples:** ```bash -# Analyze pages from a CSV file (specify monorepo path) +# CSV Mode: Analyze pages from a CSV file (specify monorepo path) ./audit-cli report testable-code analytics.csv /path/to/docs-monorepo -# Use configured monorepo path (from config file or environment variable) +# CSV Mode: Use configured monorepo path (from config file or environment variable) ./audit-cli report testable-code analytics.csv +# Docs Set Mode: Scan all pages in specified docs sets +./audit-cli report testable-code --for-docs-set cloud-docs,golang,node + +# Docs Set Mode: Scan only a specific version +./audit-cli report testable-code --for-docs-set manual --version v8.0 + +# Docs Set Mode: Scan all versions (not just current) +./audit-cli report testable-code --for-docs-set manual --current-only=false + # Output as JSON to a file ./audit-cli report testable-code analytics.csv --format json --output report.json @@ -1627,9 +1642,24 @@ rank,url **Flags:** +Input mode flags: + +- `--for-docs-set ` - Scan all pages in specified docs sets (content directory names, comma-separated). Enables Docs Set Mode instead of CSV Mode. + +Version filtering flags (only apply in Docs Set Mode): + +- `--version ` - Only include pages from specified version (e.g., `v8.0`, `current`, `upcoming`). Overrides `--current-only`. +- `--current-only` - Only include current version pages (default: `true`). Use `--current-only=false` to scan all versions. +- `--base-url ` - Base URL for resolving page URLs (default: `https://www.mongodb.com/docs`) + +Output flags: + - `--format, -f ` - Output format: `text` (default), `json`, or `csv` - `--output, -o ` - Output file path (default: stdout) - `--details` - Show detailed per-product breakdown (for CSV output, includes per-product columns) + +Filter flags: + - `--filter ` - Filter pages by product area (can be specified multiple times) - `--list-drivers` - List all available driver filter options from the Snooty Data API diff --git a/commands/report/testable-code/docs_set_scanner.go b/commands/report/testable-code/docs_set_scanner.go index 512f012..596c656 100644 --- a/commands/report/testable-code/docs_set_scanner.go +++ b/commands/report/testable-code/docs_set_scanner.go @@ -13,19 +13,54 @@ import ( "github.com/grove-platform/audit-cli/internal/projectinfo" ) +// DocsSetError represents an error that occurred while processing a specific docs set. +type DocsSetError struct { + DocsSet string + Err error +} + +// ScanResult contains the results of scanning docs sets, including any errors encountered. +type ScanResult struct { + Entries []PageEntry + Errors []DocsSetError +} + +// HasErrors returns true if any errors occurred during scanning. +func (r *ScanResult) HasErrors() bool { + return len(r.Errors) > 0 +} + +// PrintErrorReport prints a summary of all errors encountered during scanning. +func (r *ScanResult) PrintErrorReport() { + if !r.HasErrors() { + return + } + + fmt.Fprintf(os.Stderr, "\n=== Docs Set Scanning Errors ===\n") + fmt.Fprintf(os.Stderr, "%d docs set(s) had errors:\n\n", len(r.Errors)) + for _, e := range r.Errors { + fmt.Fprintf(os.Stderr, " • %s: %v\n", e.DocsSet, e.Err) + } + fmt.Fprintf(os.Stderr, "================================\n\n") +} + // ScanDocsSets scans one or more documentation sets (content directories) and returns // PageEntry structs for all pages found, with URLs resolved using the resolve url logic. // +// The function continues scanning even if individual docs sets fail, accumulating errors +// in the ScanResult. Check ScanResult.HasErrors() and use PrintErrorReport() to display +// any errors that occurred. +// // Parameters: // - monorepoPath: Path to the docs monorepo root // - docsSets: List of content directory names to scan (e.g., "cloud-docs", "golang") -// - currentOnly: If true, only scan the current version for versioned projects +// - versionFilter: Version filter - "" for all versions, "current" for current only, or specific version like "v8.0" // - baseURL: Base URL for production documentation (e.g., https://www.mongodb.com/docs) // // Returns: -// - []PageEntry: List of page entries with rank (page number within doc set) and URL -// - error: Any error encountered during scanning -func ScanDocsSets(monorepoPath string, docsSets []string, currentOnly bool, baseURL string) ([]PageEntry, error) { +// - *ScanResult: Contains entries from successful scans and any errors encountered +// - error: Only returned for fatal errors (e.g., no docs sets specified, content dir missing) +func ScanDocsSets(monorepoPath string, docsSets []string, versionFilter string, baseURL string) (*ScanResult, error) { if len(docsSets) == 0 { return nil, fmt.Errorf("at least one docs set must be specified") } @@ -35,28 +70,40 @@ func ScanDocsSets(monorepoPath string, docsSets []string, currentOnly bool, base return nil, fmt.Errorf("content directory not found: %s", contentDir) } - var allEntries []PageEntry + result := &ScanResult{ + Entries: []PageEntry{}, + Errors: []DocsSetError{}, + } rank := 1 for _, docsSet := range docsSets { docsSetPath := filepath.Join(contentDir, docsSet) if _, err := os.Stat(docsSetPath); os.IsNotExist(err) { - return nil, fmt.Errorf("docs set not found: %s", docsSet) + result.Errors = append(result.Errors, DocsSetError{ + DocsSet: docsSet, + Err: fmt.Errorf("couldn't find docs set at path %q", docsSetPath), + }) + continue } - entries, err := scanSingleDocsSet(monorepoPath, docsSet, currentOnly, baseURL, &rank) + entries, err := scanSingleDocsSet(monorepoPath, docsSet, versionFilter, baseURL, &rank) if err != nil { - return nil, fmt.Errorf("failed to scan docs set %s: %w", docsSet, err) + result.Errors = append(result.Errors, DocsSetError{ + DocsSet: docsSet, + Err: err, + }) + continue } - allEntries = append(allEntries, entries...) + result.Entries = append(result.Entries, entries...) } - return allEntries, nil + return result, nil } // scanSingleDocsSet scans a single docs set and returns PageEntry structs. // The rank parameter is a pointer so it can be incremented across multiple doc sets. -func scanSingleDocsSet(monorepoPath, docsSet string, currentOnly bool, baseURL string, rank *int) ([]PageEntry, error) { +// versionFilter can be: "" (all versions), "current" (only current), or a specific version like "v8.0" +func scanSingleDocsSet(monorepoPath, docsSet string, versionFilter string, baseURL string, rank *int) ([]PageEntry, error) { contentDir := filepath.Join(monorepoPath, "content") docsSetPath := filepath.Join(contentDir, docsSet) @@ -89,11 +136,19 @@ func scanSingleDocsSet(monorepoPath, docsSet string, currentOnly bool, baseURL s return nil } - // If currentOnly, filter to only current version - if currentOnly { + // Apply version filter if specified + if versionFilter != "" { version := extractVersionFromFilePath(relPath) - if version != "" && !projectinfo.IsCurrentVersion(version) { - return nil + if versionFilter == "current" { + // Filter to only current version + if version != "" && !projectinfo.IsCurrentVersion(version) { + return nil + } + } else { + // Filter to specific version + if version != versionFilter { + return nil + } } } @@ -150,4 +205,3 @@ func extractVersionFromFilePath(relPath string) string { return "" } - diff --git a/commands/report/testable-code/testable_code.go b/commands/report/testable-code/testable_code.go index abea8fb..a394ce6 100644 --- a/commands/report/testable-code/testable_code.go +++ b/commands/report/testable-code/testable_code.go @@ -54,6 +54,7 @@ func NewTestableCodeCommand() *cobra.Command { var listDrivers bool var forDocsSets []string var currentOnly bool + var versionFilter string var baseURL string cmd := &cobra.Command{ @@ -127,7 +128,14 @@ Output formats: return err } - return runTestableCodeForDocsSets(forDocsSets, monorepoPath, baseURL, currentOnly, outputFormat, showDetails, outputFile, filters) + // Determine effective version filter + // --version takes precedence over --current-only + effectiveVersionFilter := versionFilter + if effectiveVersionFilter == "" && currentOnly { + effectiveVersionFilter = "current" + } + + return runTestableCodeForDocsSets(forDocsSets, monorepoPath, baseURL, effectiveVersionFilter, outputFormat, showDetails, outputFile, filters) } // CSV mode - require CSV file @@ -158,6 +166,7 @@ Output formats: cmd.Flags().BoolVar(&listDrivers, "list-drivers", false, "List all drivers from the Snooty Data API") cmd.Flags().StringSliceVar(&forDocsSets, "for-docs-set", nil, "Scan all pages in specified docs sets (content directory names)") cmd.Flags().BoolVar(¤tOnly, "current-only", true, "When scanning docs sets, only include current version pages (default: true)") + cmd.Flags().StringVar(&versionFilter, "version", "", "Only include pages from specified version (e.g., v8.0, current, upcoming). Overrides --current-only") cmd.Flags().StringVar(&baseURL, "base-url", "https://www.mongodb.com/docs", "Base URL for resolving page URLs") return cmd @@ -219,15 +228,25 @@ func runListDrivers() error { } // runTestableCodeForDocsSets runs the testable-code analysis by scanning specified docs sets. -func runTestableCodeForDocsSets(docsSets []string, monorepoPath, baseURL string, currentOnly bool, outputFormat string, showDetails bool, outputFile string, filters []string) error { +// versionFilter can be: "" (all versions), "current" (only current), or a specific version like "v8.0" +func runTestableCodeForDocsSets(docsSets []string, monorepoPath, baseURL string, versionFilter string, outputFormat string, showDetails bool, outputFile string, filters []string) error { fmt.Fprintf(os.Stderr, "Scanning docs sets: %v\n", docsSets) + if versionFilter != "" { + fmt.Fprintf(os.Stderr, "Version filter: %s\n", versionFilter) + } // Scan docs sets to get page entries - entries, err := ScanDocsSets(monorepoPath, docsSets, currentOnly, baseURL) + scanResult, err := ScanDocsSets(monorepoPath, docsSets, versionFilter, baseURL) if err != nil { return fmt.Errorf("failed to scan docs sets: %w", err) } + // Print any errors that occurred during scanning + if scanResult.HasErrors() { + scanResult.PrintErrorReport() + } + + entries := scanResult.Entries fmt.Fprintf(os.Stderr, "Found %d pages in docs sets\n", len(entries)) if len(entries) == 0 { From 3f244549059e47f21d0768c84ef70d4e20ebd861 Mon Sep 17 00:00:00 2001 From: Kyle Rollins <115574589+krollins-mdb@users.noreply.github.com> Date: Wed, 11 Mar 2026 18:08:19 -0500 Subject: [PATCH 5/5] docs: update README to include report testable-code command in monorepo path configuration --- .gitignore | 1 + README.md | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4acec74..2e3c8cd 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ bin/ .idea/ .vscode/ coverage.out +.audit-cli.yaml diff --git a/README.md b/README.md index 95d43e4..5513f37 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ go run main.go [command] [flags] ### Monorepo Path Configuration -Some commands require a monorepo path (e.g., `analyze composables`, `count tested-examples`, `count pages`). You can configure the monorepo path in three ways, listed in order of priority: +Some commands require a monorepo path (e.g., `analyze composables`, `count tested-examples`, `count pages`, `report testable-code --for-docs-set`). You can configure the monorepo path in three ways, listed in order of priority: ### 1. Command-Line Argument (Highest Priority) @@ -67,6 +67,7 @@ Pass the path directly to the command: ./audit-cli analyze composables /path/to/docs-monorepo ./audit-cli count tested-examples /path/to/docs-monorepo ./audit-cli count pages /path/to/docs-monorepo +./audit-cli report testable-code --for-docs-set manual /path/to/docs-monorepo ``` ### 2. Environment Variable @@ -1644,7 +1645,7 @@ rank,url Input mode flags: -- `--for-docs-set ` - Scan all pages in specified docs sets (content directory names, comma-separated). Enables Docs Set Mode instead of CSV Mode. +- `--for-docs-set ` - Scan all pages in specified docs sets (content directory names, comma-separated). Enables Docs Set Mode instead of CSV Mode. Requires a configured monorepo path (see [Monorepo Path Configuration](#monorepo-path-configuration)). Version filtering flags (only apply in Docs Set Mode):