Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mongo | 24,735 | 1 | 20 hours ago | 26 | October 09, 2022 | 79 | other | C++ | ||
The MongoDB Database | ||||||||||
Migrate | 12,854 | 1,027 | 6 days ago | 132 | June 11, 2023 | 315 | other | Go | ||
Database migrations. CLI and Golang library. | ||||||||||
Node Mongodb Native | 9,882 | 116,995 | 11,468 | 20 hours ago | 439 | November 16, 2023 | 22 | apache-2.0 | TypeScript | |
The Official MongoDB Node.js Driver | ||||||||||
Mongo Go Driver | 7,729 | 7,067 | 20 hours ago | 333 | November 08, 2023 | 11 | apache-2.0 | Go | ||
The Official Golang driver for MongoDB | ||||||||||
Mongo Python Driver | 3,968 | 17,931 | 2,246 | 2 days ago | 136 | November 29, 2023 | 12 | apache-2.0 | Python | |
PyMongo - the Official MongoDB Python driver | ||||||||||
Mongo Csharp Driver | 3,068 | 2,185 | 3,105 | a day ago | 88 | October 09, 2023 | 53 | apache-2.0 | C# | |
The Official C# .NET Driver for MongoDB | ||||||||||
Mgo | 2,619 | 2,102 | 2,246 | 3 years ago | 5 | August 16, 2019 | 224 | other | Go | |
The MongoDB driver for Go. UNMAINTAINED - SEE BELOW | ||||||||||
Mongo Java Driver | 2,579 | 11,403 | 1,081 | 21 hours ago | 146 | June 07, 2023 | 18 | apache-2.0 | Java | |
The official MongoDB drivers for Java, Kotlin, and Scala | ||||||||||
Phpfastcache | 2,307 | 209 | 136 | 3 months ago | 187 | February 18, 2023 | 1 | mit | PHP | |
A high-performance backend cache system. It is intended for use in speeding up dynamic web applications by alleviating database load. Well implemented, it can drops the database load to almost nothing, yielding faster page load times for users, better resource utilization. It is simple yet powerful. | ||||||||||
Awesome Mongodb | 2,259 | 2 months ago | 2 | |||||||
:leaves: A curated list of awesome MongoDB resources, libraries, tools and applications |
The MongoDB supported driver for Go.
The recommended way to get started using the MongoDB Go driver is by using Go modules to install the dependency in
your project. This can be done either by importing packages from go.mongodb.org/mongo-driver
and having the build
step install the dependency or by explicitly running
go get go.mongodb.org/mongo-driver/mongo
When using a version of Go that does not support modules, the driver can be installed using dep
by running
dep ensure -add "go.mongodb.org/mongo-driver/mongo"
To get started with the driver, import the mongo
package and create a mongo.Client
with the Connect
function:
import (
"context"
"time"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
client, err := mongo.Connect(options.Client().ApplyURI("mongodb://localhost:27017"))
Make sure to defer a call to Disconnect
after instantiating your client:
defer func() {
if err = client.Disconnect(ctx); err != nil {
panic(err)
}
}()
For more advanced configuration and authentication, see the documentation for mongo.Connect.
Calling Connect
does not block for server discovery. If you wish to know if a MongoDB server has been found and connected to,
use the Ping
method:
ctx, cancel = context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
err = client.Ping(ctx, readpref.Primary())
To insert a document into a collection, first retrieve a Database
and then Collection
instance from the Client
:
collection := client.Database("testing").Collection("numbers")
The Collection
instance can then be used to insert documents:
ctx, cancel = context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
res, err := collection.InsertOne(ctx, bson.D{{"name", "pi"}, {"value", 3.14159}})
id := res.InsertedID
To use bson.D
, you will need to add "go.mongodb.org/mongo-driver/bson"
to your imports.
Your import statement should now look like this:
import (
"context"
"log"
"time"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
Several query methods return a cursor, which can be used like this:
ctx, cancel = context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
cur, err := collection.Find(ctx, bson.D{})
if err != nil { log.Fatal(err) }
defer cur.Close(ctx)
for cur.Next(ctx) {
var result bson.D
err := cur.Decode(&result)
if err != nil { log.Fatal(err) }
// do something with result....
}
if err := cur.Err(); err != nil {
log.Fatal(err)
}
For methods that return a single item, a SingleResult
instance is returned:
var result struct {
Value float64
}
filter := bson.D{{"name", "pi"}}
ctx, cancel = context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
err = collection.FindOne(ctx, filter).Decode(&result)
if err == mongo.ErrNoDocuments {
// Do something when no record was found
fmt.Println("record does not exist")
} else if err != nil {
log.Fatal(err)
}
// Do something with result...
Additional examples and documentation can be found under the examples directory and on the MongoDB Documentation website.
Network compression will reduce bandwidth requirements between MongoDB and the application.
The Go Driver supports the following compression algorithms:
snappy
): available in MongoDB 3.4 and later.zlib
): available in MongoDB 3.6 and later.zstd
): available in MongoDB 4.2 and later.Compression can be enabled using the compressors
parameter on the connection string or by using ClientOptions.SetCompressors
:
opts := options.Client().ApplyURI("mongodb://localhost:27017/?compressors=snappy,zlib,zstd")
client, _ := mongo.Connect(opts)
opts := options.Client().SetCompressors([]string{"snappy", "zlib", "zstd"})
client, _ := mongo.Connect(opts)
If compressors are set, the Go Driver negotiates with the server to select the first common compressor. For server configuration and defaults, refer to networkMessageCompressors
.
Messages compress when both parties enable network compression; otherwise, messages remain uncompressed
For help with the driver, please post in the MongoDB Community Forums.
New features and bugs can be reported on jira: https://jira.mongodb.org/browse/GODRIVER
Check out the project page for tickets that need completing. See our contribution guidelines for details.
Commits to master are run automatically on evergreen.
See our common issues documentation for troubleshooting frequently encountered issues.
The MongoDB Go Driver is licensed under the Apache License.