Skip to content

Commit fbb72cc

Browse files
committed
SA review
1 parent 7f934f3 commit fbb72cc

18 files changed

+69
-53
lines changed

snooty.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name = "golang"
22
title = "Go Driver"
33
toc_landing_pages = [
4-
"/fundamentals/connections",
5-
"/fundamentals/crud",
6-
"/usage-examples",
4+
"/connect",
5+
"/crud",
6+
"/monitoring-and-logging",
7+
"/security"
78
]
89

910
intersphinx = [

source/atlas-search.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.. _golang-atlas-search:
12

23
=========================
34
Run an Atlas Search Query

source/connect.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.. _go-connect:
2+
.. _golang-connection:
23

34
==================
45
Connect to MongoDB
@@ -19,8 +20,17 @@ Connect to MongoDB
1920
:maxdepth: 1
2021

2122
Create a MongoClient <connect/mongoclient>
23+
Choose a Connection Target <connect/connection-targets>
24+
Connection Options </connect/connection-options>
25+
Connection Troubleshooting </connect/connection-troubleshooting>
2226

2327
Overview
2428
--------
2529

26-
.. TODO
30+
Learn how to use the {+driver-short+} to configure your application's
31+
connection to a MongoDB deployment in the following sections:
32+
33+
- :ref:`golang-connection-guide`
34+
- :ref:`golang-connection-options`
35+
- :ref:`golang-network-compression`
36+
- :ref:`golang-connection-troubleshooting`

source/connect/connection-options.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
==================
2+
Connection Options
3+
==================
4+
5+
.. toctree::
6+
:titlesonly:
7+
:maxdepth: 1
8+
9+
Specify Connection Options <connection-options/specify-connection-options>
10+
Compress Network Traffic <connection-options/network-compression>
11+
Customize Server Selection <connection-options/server-selection>
12+
Stable API <connection-options/stable-api>
13+
Limit Server Execution Time <connection-options/csot>
14+
Connection Pools <connection-options/connection-pools>
15+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.. TODO
File renamed without changes.

source/connect/connection-targets.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
.. _go-connection-targets:
1+
.. _golang-connection-targets:
22

33
==========================
44
Choose a Connection Target
55
==========================
6+
7+
.. meta::
8+
:keywords: connection string, URI, server, settings, client, load balancing, srv, dns
9+
10+
.. contents:: On this page
11+
:local:
12+
:backlinks: none
13+
:depth: 2
14+
:class: singlecol
15+
16+
.. TODO

source/connections.txt

Lines changed: 0 additions & 39 deletions
This file was deleted.

source/crud/configure.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.. _golang-configure-crud:
12

23
=========================
34
Configure CRUD Operations

source/crud/query.txt

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
.. _golang-query:
2-
.. _golang-crud-read-operations:
3-
41
================
52
Query Operations
63
================
74

8-
.. TODO Landing page
9-
10-
5+
.. toctree::
6+
:titlesonly:
7+
:maxdepth: 1
118

9+
Specify a Query </crud/query/query-document>
10+
Find Documents </crud/query/retrieve>
11+
Specify Documents to Return </crud/query/specify-return-documents>
12+
Specify Fields to Return </crud/query/project>
13+
Count Documents </crud/query/count>
14+
Distinct Field Values </crud/query/distinct>
15+
Access Data from a Cursor </crud/query/cursor>
16+
Geospatial Queries </crud/query/geo>

0 commit comments

Comments
 (0)