Documentation ¶
Overview ¶
Package mongo provides a MongoDB Driver API for Go.
Basic usage of the driver starts with creating a Client from a connection string. To do so, call the NewClient and Connect functions:
client, err := NewClient("mongodb://foo:bar@localhost:27017") if err != nil { return err } ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) defer cancel() err = client.Connect(ctx) if err != nil { return err }
This will create a new client and start monitoring the MongoDB server on localhost. The Database and Collection types can be used to access the database:
collection := client.Database("baz").Collection("qux")
A Collection can be used to query the database or insert documents:
res, err := collection.InsertOne(context.Background(), bson.M{"hello": "world"}) if err != nil { return err } id := res.InsertedID
Several methods return a cursor, which can be used like this:
cur, err := collection.Find(context.Background(), nil) if err != nil { log.Fatal(err) } defer cur.Close(context.Background()) for cur.Next(context.Background()) { raw, err := cur.DecodeBytes() if err != nil { log.Fatal(err) } // do something with elem.... } if err := cur.Err(); err != nil { return err }
Methods that only return a single document will return a *SingleResult, which works like a *sql.Row:
result := struct{ Foo string Bar int32 }{} filter := bson.D{{"hello", "world"}} err := collection.FindOne(context.Background(), filter).Decode(&result) if err != nil { return err } // do something with result...
Additional examples can be found under the examples directory in the driver's repository and on the MongoDB website.
Index ¶
- Variables
- func WithSession(ctx context.Context, sess Session, fn func(SessionContext) error) error
- type BSONAppender
- type BSONAppenderFunc
- type BulkWriteError
- type BulkWriteException
- type BulkWriteResult
- type Client
- func (c *Client) Connect(ctx context.Context) error
- func (c *Client) ConnectionString() string
- func (c *Client) Database(name string, opts ...*options.DatabaseOptions) *Database
- func (c *Client) Disconnect(ctx context.Context) error
- func (c *Client) ListDatabaseNames(ctx context.Context, filter interface{}, opts ...*options.ListDatabasesOptions) ([]string, error)
- func (c *Client) ListDatabases(ctx context.Context, filter interface{}, opts ...*options.ListDatabasesOptions) (ListDatabasesResult, error)
- func (c *Client) Ping(ctx context.Context, rp *readpref.ReadPref) error
- func (c *Client) StartSession(opts ...*options.SessionOptions) (Session, error)
- func (c *Client) UseSession(ctx context.Context, fn func(SessionContext) error) error
- func (c *Client) UseSessionWithOptions(ctx context.Context, opts *options.SessionOptions, ...) error
- func (c *Client) ValidSession(sess *session.Client) error
- func (c *Client) Watch(ctx context.Context, pipeline interface{}, ...) (Cursor, error)
- type Collection
- func (coll *Collection) Aggregate(ctx context.Context, pipeline interface{}, opts ...*options.AggregateOptions) (Cursor, error)
- func (coll *Collection) BulkWrite(ctx context.Context, models []WriteModel, opts ...*options.BulkWriteOptions) (*BulkWriteResult, error)
- func (coll *Collection) Clone(opts ...*options.CollectionOptions) (*Collection, error)
- func (coll *Collection) Count(ctx context.Context, filter interface{}, opts ...*options.CountOptions) (int64, error)
- func (coll *Collection) CountDocuments(ctx context.Context, filter interface{}, opts ...*options.CountOptions) (int64, error)
- func (coll *Collection) Database() *Database
- func (coll *Collection) DeleteMany(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*DeleteResult, error)
- func (coll *Collection) DeleteOne(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*DeleteResult, error)
- func (coll *Collection) Distinct(ctx context.Context, fieldName string, filter interface{}, ...) ([]interface{}, error)
- func (coll *Collection) Drop(ctx context.Context) error
- func (coll *Collection) EstimatedDocumentCount(ctx context.Context, opts ...*options.EstimatedDocumentCountOptions) (int64, error)
- func (coll *Collection) Find(ctx context.Context, filter interface{}, opts ...*options.FindOptions) (Cursor, error)
- func (coll *Collection) FindOne(ctx context.Context, filter interface{}, opts ...*options.FindOneOptions) *SingleResult
- func (coll *Collection) FindOneAndDelete(ctx context.Context, filter interface{}, ...) *SingleResult
- func (coll *Collection) FindOneAndReplace(ctx context.Context, filter interface{}, replacement interface{}, ...) *SingleResult
- func (coll *Collection) FindOneAndUpdate(ctx context.Context, filter interface{}, update interface{}, ...) *SingleResult
- func (coll *Collection) Indexes() IndexView
- func (coll *Collection) InsertMany(ctx context.Context, documents []interface{}, ...) (*InsertManyResult, error)
- func (coll *Collection) InsertOne(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions) (*InsertOneResult, error)
- func (coll *Collection) Name() string
- func (coll *Collection) ReplaceOne(ctx context.Context, filter interface{}, replacement interface{}, ...) (*UpdateResult, error)
- func (coll *Collection) UpdateMany(ctx context.Context, filter interface{}, update interface{}, ...) (*UpdateResult, error)
- func (coll *Collection) UpdateOne(ctx context.Context, filter interface{}, update interface{}, ...) (*UpdateResult, error)
- func (coll *Collection) Watch(ctx context.Context, pipeline interface{}, ...) (Cursor, error)
- type Cursor
- type Database
- func (db *Database) Client() *Client
- func (db *Database) Collection(name string, opts ...*options.CollectionOptions) *Collection
- func (db *Database) Drop(ctx context.Context) error
- func (db *Database) ListCollections(ctx context.Context, filter interface{}, ...) (Cursor, error)
- func (db *Database) Name() string
- func (db *Database) ReadConcern() *readconcern.ReadConcern
- func (db *Database) ReadPreference() *readpref.ReadPref
- func (db *Database) RunCommand(ctx context.Context, runCommand interface{}, opts ...*options.RunCmdOptions) *SingleResult
- func (db *Database) RunCommandCursor(ctx context.Context, runCommand interface{}, opts ...*options.RunCmdOptions) (Cursor, error)
- func (db *Database) Watch(ctx context.Context, pipeline interface{}, ...) (Cursor, error)
- func (db *Database) WriteConcern() *writeconcern.WriteConcern
- type DatabaseSpecification
- type DeleteManyModel
- type DeleteOneModel
- type DeleteResult
- type Dialer
- type IndexModel
- type IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Background(background bool) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Bits(bits int32) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) BucketSize(bucketSize int32) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Build() bson.D
- func (iob *IndexOptionsBuilder) Collation(collation interface{}) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) DefaultLanguage(defaultLanguage string) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) ExpireAfterSeconds(expireAfterSeconds int32) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) LanguageOverride(languageOverride string) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Max(max float64) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Min(min float64) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Name(name string) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) PartialFilterExpression(partialFilterExpression interface{}) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Sparse(sparse bool) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) SphereVersion(sphereVersion int32) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) StorageEngine(storageEngine interface{}) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) TextVersion(textVersion int32) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Unique(unique bool) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Version(version int32) *IndexOptionsBuilder
- func (iob *IndexOptionsBuilder) Weights(weights interface{}) *IndexOptionsBuilder
- type IndexView
- func (iv IndexView) CreateMany(ctx context.Context, models []IndexModel, ...) ([]string, error)
- func (iv IndexView) CreateOne(ctx context.Context, model IndexModel, opts ...*options.CreateIndexesOptions) (string, error)
- func (iv IndexView) DropAll(ctx context.Context, opts ...*options.DropIndexesOptions) (bson.Raw, error)
- func (iv IndexView) DropOne(ctx context.Context, name string, opts ...*options.DropIndexesOptions) (bson.Raw, error)
- func (iv IndexView) List(ctx context.Context, opts ...*options.ListIndexesOptions) (Cursor, error)
- type InsertManyResult
- type InsertOneModel
- type InsertOneResult
- type ListDatabasesResult
- type MarshalError
- type Pipeline
- type ReplaceOneModel
- type Session
- type SessionContext
- type SingleResult
- type StreamType
- type UpdateManyModel
- func (umm *UpdateManyModel) ArrayFilters(filters options.ArrayFilters) *UpdateManyModel
- func (umm *UpdateManyModel) Collation(collation *options.Collation) *UpdateManyModel
- func (umm *UpdateManyModel) Filter(filter interface{}) *UpdateManyModel
- func (umm *UpdateManyModel) Update(update interface{}) *UpdateManyModel
- func (umm *UpdateManyModel) Upsert(upsert bool) *UpdateManyModel
- type UpdateOneModel
- func (uom *UpdateOneModel) ArrayFilters(filters options.ArrayFilters) *UpdateOneModel
- func (uom *UpdateOneModel) Collation(collation *options.Collation) *UpdateOneModel
- func (uom *UpdateOneModel) Filter(filter interface{}) *UpdateOneModel
- func (uom *UpdateOneModel) Update(update interface{}) *UpdateOneModel
- func (uom *UpdateOneModel) Upsert(upsert bool) *UpdateOneModel
- type UpdateResult
- type WriteConcernError
- type WriteError
- type WriteErrors
- type WriteModel
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var ErrClientDisconnected = errors.New("client is disconnected")
ErrClientDisconnected is returned when a user attempts to call a method on a disconnected client
var ErrEmptySlice = errors.New("must provide at least one element in input slice")
ErrEmptySlice is returned when a user attempts to pass an empty slice as input to a function wehere the field is required.
var ErrInvalidIndexValue = errors.New("invalid index value")
ErrInvalidIndexValue indicates that the index Keys document has a value that isn't either a number or a string.
var ErrMissingResumeToken = errors.New("cannot provide resume functionality when the resume token is missing")
ErrMissingResumeToken indicates that a change stream notification from the server did not contain a resume token.
var ErrMultipleIndexDrop = errors.New("multiple indexes would be dropped")
ErrMultipleIndexDrop indicates that multiple indexes would be dropped from a call to IndexView.DropOne.
var ErrNilCursor = errors.New("cursor is nil")
ErrNilCursor indicates that the cursor for the change stream is nil.
var ErrNilDocument = errors.New("document is nil")
ErrNilDocument is returned when a user attempts to pass a nil document or filter to a function where the field is required.
var ErrNoDocuments = errors.New("mongo: no documents in result")
ErrNoDocuments is returned by Decode when an operation that returns a SingleResult doesn't return any documents.
var ErrNonStringIndexName = errors.New("index name must be a string")
ErrNonStringIndexName indicates that the index name specified in the options is not a string.
var ErrUnacknowledgedWrite = errors.New("unacknowledged write")
ErrUnacknowledgedWrite is returned from functions that have an unacknowledged write concern.
var ErrWrongClient = errors.New("session was not created by this client")
ErrWrongClient is returned when a user attempts to pass in a session created by a different client than the method call is using.
Functions ¶
func WithSession ¶ added in v0.0.16
WithSession allows a user to start a session themselves and manage its lifetime. The only way to provide a session to a CRUD method is to invoke that CRUD method with the mongo.SessionContext within the closure. The mongo.SessionContext can be used as a regular context, so methods like context.WithDeadline and context.WithTimeout are supported.
If the context.Context already has a mongo.Session attached, that mongo.Session will be replaced with the one provided.
Errors returned from the closure are transparently returned from this function.
Types ¶
type BSONAppender ¶ added in v0.0.15
BSONAppender is an interface implemented by types that can marshal a provided type into BSON bytes and append those bytes to the provided []byte. The AppendBSON can return a non-nil error and non-nil []byte. The AppendBSON method may also write incomplete BSON to the []byte.
type BSONAppenderFunc ¶ added in v0.0.15
BSONAppenderFunc is an adapter function that allows any function that satisfies the AppendBSON method signature to be used where a BSONAppender is used.
func (BSONAppenderFunc) AppendBSON ¶ added in v0.0.15
func (baf BSONAppenderFunc) AppendBSON(dst []byte, val interface{}) ([]byte, error)
AppendBSON implements the BSONAppender interface
type BulkWriteError ¶ added in v0.0.4
type BulkWriteError struct { WriteError Request WriteModel }
BulkWriteError is an error for one operation in a bulk write.
func (BulkWriteError) Error ¶ added in v0.0.4
func (bwe BulkWriteError) Error() string
type BulkWriteException ¶ added in v0.0.16
type BulkWriteException struct { WriteConcernError *WriteConcernError WriteErrors []BulkWriteError }
BulkWriteException is an error for a bulk write operation.
func (BulkWriteException) Error ¶ added in v0.0.16
func (bwe BulkWriteException) Error() string
type BulkWriteResult ¶ added in v0.0.16
type BulkWriteResult struct { InsertedCount int64 MatchedCount int64 ModifiedCount int64 DeletedCount int64 UpsertedCount int64 UpsertedIDs map[int64]interface{} }
BulkWriteResult holds the result of a bulk write operation.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client performs operations on a given topology.
func Connect ¶ added in v0.0.3
Connect creates a new Client and then initializes it using the Connect method.
func NewClientWithOptions ¶ added in v0.0.3
func NewClientWithOptions(uri string, opts ...*options.ClientOptions) (*Client, error)
NewClientWithOptions creates a new client to connect to to a cluster specified by the connection string and the options manually passed in. If the same option is configured in both the connection string and the manual options, the manual option will be ignored.
func (*Client) Connect ¶ added in v0.0.3
Connect initializes the Client by starting background monitoring goroutines. This method must be called before a Client can be used.
Example ¶
client, err := NewClient("mongodb://foo:bar@localhost:27017") if err != nil { return } ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) defer cancel() err = client.Connect(ctx) if err != nil { return } return
Output:
func (*Client) ConnectionString ¶
ConnectionString returns the connection string of the cluster the client is connected to.
func (*Client) Database ¶
func (c *Client) Database(name string, opts ...*options.DatabaseOptions) *Database
Database returns a handle for a given database.
func (*Client) Disconnect ¶ added in v0.0.3
Disconnect closes sockets to the topology referenced by this Client. It will shut down any monitoring goroutines, close the idle connection pool, and will wait until all the in use connections have been returned to the connection pool and closed before returning. If the context expires via cancellation, deadline, or timeout before the in use connections have returned, the in use connections will be closed, resulting in the failure of any in flight read or write operations. If this method returns with no errors, all connections associated with this Client have been closed.
func (*Client) ListDatabaseNames ¶ added in v0.0.3
func (c *Client) ListDatabaseNames(ctx context.Context, filter interface{}, opts ...*options.ListDatabasesOptions) ([]string, error)
ListDatabaseNames returns a slice containing the names of all of the databases on the server.
func (*Client) ListDatabases ¶ added in v0.0.3
func (c *Client) ListDatabases(ctx context.Context, filter interface{}, opts ...*options.ListDatabasesOptions) (ListDatabasesResult, error)
ListDatabases returns a ListDatabasesResult.
func (*Client) Ping ¶ added in v0.0.14
Ping verifies that the client can connect to the topology. If readPreference is nil then will use the client's default read preference.
func (*Client) StartSession ¶ added in v0.0.10
func (c *Client) StartSession(opts ...*options.SessionOptions) (Session, error)
StartSession starts a new session.
func (*Client) UseSession ¶ added in v0.0.16
UseSession creates a default session, that is only valid for the lifetime of the closure. No cleanup outside of closing the session is done upon exiting the closure. This means that an outstanding transaction will be aborted, even if the closure returns an error.
If ctx already contains a mongo.Session, that mongo.Session will be replaced with the newly created mongo.Session.
Errors returned from the closure are transparently returned from this method.
func (*Client) UseSessionWithOptions ¶ added in v0.0.16
func (c *Client) UseSessionWithOptions(ctx context.Context, opts *options.SessionOptions, fn func(SessionContext) error) error
UseSessionWithOptions works like UseSession but allows the caller to specify the options used to create the session.
func (*Client) ValidSession ¶ added in v0.0.10
ValidSession returns an error if the session doesn't belong to the client
func (*Client) Watch ¶ added in v0.1.0
func (c *Client) Watch(ctx context.Context, pipeline interface{}, opts ...*options.ChangeStreamOptions) (Cursor, error)
Watch returns a change stream cursor used to receive information of changes to the client. This method is preferred to running a raw aggregation with a $changeStream stage because it supports resumability in the case of some errors. The client must have read concern majority or no read concern for a change stream to be created successfully.
type Collection ¶
type Collection struct {
// contains filtered or unexported fields
}
Collection performs operations on a given collection.
func (*Collection) Aggregate ¶
func (coll *Collection) Aggregate(ctx context.Context, pipeline interface{}, opts ...*options.AggregateOptions) (Cursor, error)
Aggregate runs an aggregation framework pipeline.
func (*Collection) BulkWrite ¶ added in v0.0.16
func (coll *Collection) BulkWrite(ctx context.Context, models []WriteModel, opts ...*options.BulkWriteOptions) (*BulkWriteResult, error)
BulkWrite performs a bulk write operation.
See https://docs.mongodb.com/manual/core/bulk-write-operations/.
func (*Collection) Clone ¶ added in v0.0.9
func (coll *Collection) Clone(opts ...*options.CollectionOptions) (*Collection, error)
Clone creates a copy of this collection with updated options, if any are given.
func (*Collection) Count ¶
func (coll *Collection) Count(ctx context.Context, filter interface{}, opts ...*options.CountOptions) (int64, error)
Count gets the number of documents matching the filter.
func (*Collection) CountDocuments ¶ added in v0.0.11
func (coll *Collection) CountDocuments(ctx context.Context, filter interface{}, opts ...*options.CountOptions) (int64, error)
CountDocuments gets the number of documents matching the filter.
func (*Collection) Database ¶ added in v0.0.15
func (coll *Collection) Database() *Database
Database provides access to the database that contains the collection.
func (*Collection) DeleteMany ¶
func (coll *Collection) DeleteMany(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*DeleteResult, error)
DeleteMany deletes multiple documents from the collection.
func (*Collection) DeleteOne ¶
func (coll *Collection) DeleteOne(ctx context.Context, filter interface{}, opts ...*options.DeleteOptions) (*DeleteResult, error)
DeleteOne deletes a single document from the collection.
func (*Collection) Distinct ¶
func (coll *Collection) Distinct(ctx context.Context, fieldName string, filter interface{}, opts ...*options.DistinctOptions) ([]interface{}, error)
Distinct finds the distinct values for a specified field across a single collection.
func (*Collection) Drop ¶ added in v0.0.4
func (coll *Collection) Drop(ctx context.Context) error
Drop drops this collection from database.
func (*Collection) EstimatedDocumentCount ¶ added in v0.0.11
func (coll *Collection) EstimatedDocumentCount(ctx context.Context, opts ...*options.EstimatedDocumentCountOptions) (int64, error)
EstimatedDocumentCount gets an estimate of the count of documents in a collection using collection metadata.
func (*Collection) Find ¶
func (coll *Collection) Find(ctx context.Context, filter interface{}, opts ...*options.FindOptions) (Cursor, error)
Find finds the documents matching a model.
func (*Collection) FindOne ¶
func (coll *Collection) FindOne(ctx context.Context, filter interface{}, opts ...*options.FindOneOptions) *SingleResult
FindOne returns up to one document that matches the model.
func (*Collection) FindOneAndDelete ¶
func (coll *Collection) FindOneAndDelete(ctx context.Context, filter interface{}, opts ...*options.FindOneAndDeleteOptions) *SingleResult
FindOneAndDelete find a single document and deletes it, returning the original in result.
func (*Collection) FindOneAndReplace ¶
func (coll *Collection) FindOneAndReplace(ctx context.Context, filter interface{}, replacement interface{}, opts ...*options.FindOneAndReplaceOptions) *SingleResult
FindOneAndReplace finds a single document and replaces it, returning either the original or the replaced document.
func (*Collection) FindOneAndUpdate ¶
func (coll *Collection) FindOneAndUpdate(ctx context.Context, filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions) *SingleResult
FindOneAndUpdate finds a single document and updates it, returning either the original or the updated.
func (*Collection) Indexes ¶ added in v0.0.3
func (coll *Collection) Indexes() IndexView
Indexes returns the index view for this collection.
func (*Collection) InsertMany ¶
func (coll *Collection) InsertMany(ctx context.Context, documents []interface{}, opts ...*options.InsertManyOptions) (*InsertManyResult, error)
InsertMany inserts the provided documents.
func (*Collection) InsertOne ¶
func (coll *Collection) InsertOne(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions) (*InsertOneResult, error)
InsertOne inserts a single document into the collection.
func (*Collection) Name ¶ added in v0.0.4
func (coll *Collection) Name() string
Name provides access to the name of the collection.
func (*Collection) ReplaceOne ¶
func (coll *Collection) ReplaceOne(ctx context.Context, filter interface{}, replacement interface{}, opts ...*options.ReplaceOptions) (*UpdateResult, error)
ReplaceOne replaces a single document in the collection.
func (*Collection) UpdateMany ¶
func (coll *Collection) UpdateMany(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*UpdateResult, error)
UpdateMany updates multiple documents in the collection.
func (*Collection) UpdateOne ¶
func (coll *Collection) UpdateOne(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*UpdateResult, error)
UpdateOne updates a single document in the collection.
func (*Collection) Watch ¶ added in v0.0.2
func (coll *Collection) Watch(ctx context.Context, pipeline interface{}, opts ...*options.ChangeStreamOptions) (Cursor, error)
Watch returns a change stream cursor used to receive notifications of changes to the collection.
This method is preferred to running a raw aggregation with a $changeStream stage because it supports resumability in the case of some errors. The collection must have read concern majority or no read concern for a change stream to be created successfully.
type Cursor ¶
type Cursor interface { // Get the ID of the cursor. ID() int64 // Get the next result from the cursor. // Returns true if there were no errors and there is a next result. Next(context.Context) bool Decode(interface{}) error DecodeBytes() (bson.Raw, error) // Returns the error status of the cursor Err() error // Close the cursor. Close(context.Context) error }
Cursor instances iterate a stream of documents. Each document is decoded into the result according to the rules of the bson package.
A typical usage of the Cursor interface would be:
var cur Cursor ctx := context.Background() defer cur.Close(ctx) for cur.Next(ctx) { elem := &bson.D{} if err := cur.Decode(elem); err != nil { log.Fatal(err) } // do something with elem.... } if err := cur.Err(); err != nil { log.Fatal(err) }
type Database ¶
type Database struct {
// contains filtered or unexported fields
}
Database performs operations on a given database.
func (*Database) Collection ¶
func (db *Database) Collection(name string, opts ...*options.CollectionOptions) *Collection
Collection gets a handle for a given collection in the database.
func (*Database) ListCollections ¶ added in v0.0.6
func (db *Database) ListCollections(ctx context.Context, filter interface{}, opts ...*options.ListCollectionsOptions) (Cursor, error)
ListCollections list collections from mongodb database.
func (*Database) ReadConcern ¶ added in v0.0.13
func (db *Database) ReadConcern() *readconcern.ReadConcern
ReadConcern returns the read concern of this database.
func (*Database) ReadPreference ¶ added in v0.0.13
ReadPreference returns the read preference of this database.
func (*Database) RunCommand ¶
func (db *Database) RunCommand(ctx context.Context, runCommand interface{}, opts ...*options.RunCmdOptions) *SingleResult
RunCommand runs a command on the database. A user can supply a custom context to this method, or nil to default to context.Background().
Example ¶
Individual commands can be sent to the server and response retrieved via run command.
var db *Database ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) defer cancel() err := db.RunCommand(ctx, bson.D{{"ping", 1}}).Err() if err != nil { return } return
Output:
func (*Database) RunCommandCursor ¶ added in v0.1.0
func (db *Database) RunCommandCursor(ctx context.Context, runCommand interface{}, opts ...*options.RunCmdOptions) (Cursor, error)
RunCommandCursor runs a command on the database and returns a cursor over the resulting reader. A user can supply a custom context to this method, or nil to default to context.Background().
func (*Database) Watch ¶ added in v0.1.0
func (db *Database) Watch(ctx context.Context, pipeline interface{}, opts ...*options.ChangeStreamOptions) (Cursor, error)
Watch returns a change stream cursor used to receive information of changes to the database. This method is preferred to running a raw aggregation with a $changeStream stage because it supports resumability in the case of some errors. The database must have read concern majority or no read concern for a change stream to be created successfully.
func (*Database) WriteConcern ¶ added in v0.0.13
func (db *Database) WriteConcern() *writeconcern.WriteConcern
WriteConcern returns the write concern of this database.
type DatabaseSpecification ¶ added in v0.0.3
DatabaseSpecification is the information for a single database returned from a ListDatabases operation.
type DeleteManyModel ¶ added in v0.0.16
type DeleteManyModel struct {
driver.DeleteManyModel
}
DeleteManyModel is the write model for deleteMany operations.
func NewDeleteManyModel ¶ added in v0.0.16
func NewDeleteManyModel() *DeleteManyModel
NewDeleteManyModel creates a new DeleteManyModel.
func (*DeleteManyModel) Collation ¶ added in v0.0.16
func (dmm *DeleteManyModel) Collation(collation *options.Collation) *DeleteManyModel
Collation sets the collation for the DeleteManyModel.
func (*DeleteManyModel) Filter ¶ added in v0.0.16
func (dmm *DeleteManyModel) Filter(filter interface{}) *DeleteManyModel
Filter sets the filter for the DeleteManyModel.
type DeleteOneModel ¶ added in v0.0.16
type DeleteOneModel struct {
driver.DeleteOneModel
}
DeleteOneModel is the write model for delete operations.
func NewDeleteOneModel ¶ added in v0.0.16
func NewDeleteOneModel() *DeleteOneModel
NewDeleteOneModel creates a new DeleteOneModel.
func (*DeleteOneModel) Collation ¶ added in v0.0.16
func (dom *DeleteOneModel) Collation(collation *options.Collation) *DeleteOneModel
Collation sets the collation for the DeleteOneModel.
func (*DeleteOneModel) Filter ¶ added in v0.0.16
func (dom *DeleteOneModel) Filter(filter interface{}) *DeleteOneModel
Filter sets the filter for the DeleteOneModel.
type DeleteResult ¶
type DeleteResult struct { // The number of documents that were deleted. DeletedCount int64 `bson:"n"` }
DeleteResult is a result of an DeleteOne operation.
type Dialer ¶ added in v0.0.3
type Dialer interface {
DialContext(ctx context.Context, network, address string) (net.Conn, error)
}
Dialer is used to make network connections.
type IndexModel ¶ added in v0.0.3
type IndexModel struct { Keys interface{} Options *options.IndexOptions }
IndexModel contains information about an index.
type IndexOptionsBuilder ¶ added in v0.0.7
type IndexOptionsBuilder struct {
// contains filtered or unexported fields
}
IndexOptionsBuilder constructs a BSON document for index options
func NewIndexOptionsBuilder ¶ added in v0.0.7
func NewIndexOptionsBuilder() *IndexOptionsBuilder
NewIndexOptionsBuilder creates a new instance of IndexOptionsBuilder
func (*IndexOptionsBuilder) Background ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Background(background bool) *IndexOptionsBuilder
Background sets the background option
func (*IndexOptionsBuilder) Bits ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Bits(bits int32) *IndexOptionsBuilder
Bits sets the bits option
func (*IndexOptionsBuilder) BucketSize ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) BucketSize(bucketSize int32) *IndexOptionsBuilder
BucketSize sets the bucketSize option
func (*IndexOptionsBuilder) Build ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Build() bson.D
Build returns the BSON document from the builder
func (*IndexOptionsBuilder) Collation ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Collation(collation interface{}) *IndexOptionsBuilder
Collation sets the collation option
func (*IndexOptionsBuilder) DefaultLanguage ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) DefaultLanguage(defaultLanguage string) *IndexOptionsBuilder
DefaultLanguage sets the defaultLanguage option
func (*IndexOptionsBuilder) ExpireAfterSeconds ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) ExpireAfterSeconds(expireAfterSeconds int32) *IndexOptionsBuilder
ExpireAfterSeconds sets the expireAfterSeconds option
func (*IndexOptionsBuilder) LanguageOverride ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) LanguageOverride(languageOverride string) *IndexOptionsBuilder
LanguageOverride sets the languageOverride option
func (*IndexOptionsBuilder) Max ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Max(max float64) *IndexOptionsBuilder
Max sets the max option
func (*IndexOptionsBuilder) Min ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Min(min float64) *IndexOptionsBuilder
Min sets the min option
func (*IndexOptionsBuilder) Name ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Name(name string) *IndexOptionsBuilder
Name sets the name option
func (*IndexOptionsBuilder) PartialFilterExpression ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) PartialFilterExpression(partialFilterExpression interface{}) *IndexOptionsBuilder
PartialFilterExpression sets the partialFilterExpression option
func (*IndexOptionsBuilder) Sparse ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Sparse(sparse bool) *IndexOptionsBuilder
Sparse sets the sparse option
func (*IndexOptionsBuilder) SphereVersion ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) SphereVersion(sphereVersion int32) *IndexOptionsBuilder
SphereVersion sets the sphereVersion option
func (*IndexOptionsBuilder) StorageEngine ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) StorageEngine(storageEngine interface{}) *IndexOptionsBuilder
StorageEngine sets the storageEngine option
func (*IndexOptionsBuilder) TextVersion ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) TextVersion(textVersion int32) *IndexOptionsBuilder
TextVersion sets the textVersion option
func (*IndexOptionsBuilder) Unique ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Unique(unique bool) *IndexOptionsBuilder
Unique sets the unique option
func (*IndexOptionsBuilder) Version ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Version(version int32) *IndexOptionsBuilder
Version sets the version option
func (*IndexOptionsBuilder) Weights ¶ added in v0.0.7
func (iob *IndexOptionsBuilder) Weights(weights interface{}) *IndexOptionsBuilder
Weights sets the weights option
type IndexView ¶ added in v0.0.3
type IndexView struct {
// contains filtered or unexported fields
}
IndexView is used to create, drop, and list indexes on a given collection.
func (IndexView) CreateMany ¶ added in v0.0.3
func (iv IndexView) CreateMany(ctx context.Context, models []IndexModel, opts ...*options.CreateIndexesOptions) ([]string, error)
CreateMany creates multiple indexes in the collection specified by the models. The names of the creates indexes are returned.
func (IndexView) CreateOne ¶ added in v0.0.3
func (iv IndexView) CreateOne(ctx context.Context, model IndexModel, opts ...*options.CreateIndexesOptions) (string, error)
CreateOne creates a single index in the collection specified by the model.
func (IndexView) DropAll ¶ added in v0.0.3
func (iv IndexView) DropAll(ctx context.Context, opts ...*options.DropIndexesOptions) (bson.Raw, error)
DropAll drops all indexes in the collection.
type InsertManyResult ¶
type InsertManyResult struct {
// Maps the indexes of inserted documents to their _id fields.
InsertedIDs []interface{}
}
InsertManyResult is a result of an InsertMany operation.
type InsertOneModel ¶ added in v0.0.16
type InsertOneModel struct {
driver.InsertOneModel
}
InsertOneModel is the write model for insert operations.
func NewInsertOneModel ¶ added in v0.0.16
func NewInsertOneModel() *InsertOneModel
NewInsertOneModel creates a new InsertOneModel.
func (*InsertOneModel) Document ¶ added in v0.0.16
func (iom *InsertOneModel) Document(doc interface{}) *InsertOneModel
Document sets the BSON document for the InsertOneModel.
type InsertOneResult ¶
type InsertOneResult struct {
// The identifier that was inserted.
InsertedID interface{}
}
InsertOneResult is a result of an InsertOne operation.
InsertedID will be a Go type that corresponds to a BSON type.
type ListDatabasesResult ¶ added in v0.0.3
type ListDatabasesResult struct { Databases []DatabaseSpecification TotalSize int64 }
ListDatabasesResult is a result of a ListDatabases operation. Each specification is a description of the datbases on the server.
type MarshalError ¶ added in v0.0.15
type MarshalError struct { Value interface{} Err error }
MarshalError is returned when attempting to transform a value into a document results in an error.
func (MarshalError) Error ¶ added in v0.0.15
func (me MarshalError) Error() string
Error implements the error interface.
type Pipeline ¶ added in v0.0.18
Pipeline is a type that makes creating aggregation pipelines easier. It is a helper and is intended for serializing to BSON.
Example usage:
mongo.Pipeline{{ {"$group", bson.D{{"_id", "$state"}, {"totalPop", bson.D{"$sum", "$pop"}}}}, {"$match": bson.D{{"totalPop", bson.D{"$gte", 10*1000*1000}}}}, }}
type ReplaceOneModel ¶ added in v0.0.16
type ReplaceOneModel struct {
driver.ReplaceOneModel
}
ReplaceOneModel is the write model for replace operations.
func NewReplaceOneModel ¶ added in v0.0.16
func NewReplaceOneModel() *ReplaceOneModel
NewReplaceOneModel creates a new ReplaceOneModel.
func (*ReplaceOneModel) Collation ¶ added in v0.0.16
func (rom *ReplaceOneModel) Collation(collation *options.Collation) *ReplaceOneModel
Collation sets the collation for the ReplaceOneModel.
func (*ReplaceOneModel) Filter ¶ added in v0.0.16
func (rom *ReplaceOneModel) Filter(filter interface{}) *ReplaceOneModel
Filter sets the filter for the ReplaceOneModel.
func (*ReplaceOneModel) Replacement ¶ added in v0.0.16
func (rom *ReplaceOneModel) Replacement(rep interface{}) *ReplaceOneModel
Replacement sets the replacement document for the ReplaceOneModel.
func (*ReplaceOneModel) Upsert ¶ added in v0.0.16
func (rom *ReplaceOneModel) Upsert(upsert bool) *ReplaceOneModel
Upsert specifies if a new document should be created if no document matches the query.
type Session ¶ added in v0.0.10
type Session interface { EndSession(context.Context) StartTransaction(...*options.TransactionOptions) error AbortTransaction(context.Context) error CommitTransaction(context.Context) error ClusterTime() bson.Raw AdvanceClusterTime(bson.Raw) error OperationTime() *primitive.Timestamp AdvanceOperationTime(*primitive.Timestamp) error // contains filtered or unexported methods }
Session is the interface that represents a sequential set of operations executed. Instances of this interface can be used to use transactions against the server and to enable causally consistent behavior for applications.
type SessionContext ¶ added in v0.0.16
SessionContext is a hybrid interface. It combines a context.Context with a mongo.Session. This type can be used as a regular context.Context or Session type.
type SingleResult ¶ added in v0.1.0
type SingleResult struct {
// contains filtered or unexported fields
}
SingleResult represents a single document returned from an operation. If the operation returned an error, the Err method of SingleResult will return that error.
func (*SingleResult) Decode ¶ added in v0.1.0
func (sr *SingleResult) Decode(v interface{}) error
Decode will attempt to decode the first document into v. If there was an error from the operation that created this SingleResult then the error will be returned. If there were no returned documents, ErrNoDocuments is returned.
func (*SingleResult) DecodeBytes ¶ added in v0.1.0
func (sr *SingleResult) DecodeBytes() (bson.Raw, error)
DecodeBytes will return a copy of the document as a bson.Raw. If there was an error from the operation that created this SingleResult then the error will be returned. If there were no returned documents, ErrNoDocuments is returned.
func (*SingleResult) Err ¶ added in v0.1.0
func (sr *SingleResult) Err() error
Err will return the error from the operation that created this SingleResult. If there was no error, nil is returned.
type StreamType ¶ added in v0.1.0
type StreamType uint8
StreamType represents the type of a change stream.
const ( CollectionStream StreamType = iota DatabaseStream ClientStream )
These constants represent valid change stream types. A change stream can be initialized over a collection, all collections in a database, or over a whole client.
type UpdateManyModel ¶ added in v0.0.16
type UpdateManyModel struct {
driver.UpdateManyModel
}
UpdateManyModel is the write model for updateMany operations.
func NewUpdateManyModel ¶ added in v0.0.16
func NewUpdateManyModel() *UpdateManyModel
NewUpdateManyModel creates a new UpdateManyModel.
func (*UpdateManyModel) ArrayFilters ¶ added in v0.0.16
func (umm *UpdateManyModel) ArrayFilters(filters options.ArrayFilters) *UpdateManyModel
ArrayFilters specifies a set of filters specifying to which array elements an update should apply.
func (*UpdateManyModel) Collation ¶ added in v0.0.16
func (umm *UpdateManyModel) Collation(collation *options.Collation) *UpdateManyModel
Collation sets the collation for the UpdateManyModel.
func (*UpdateManyModel) Filter ¶ added in v0.0.16
func (umm *UpdateManyModel) Filter(filter interface{}) *UpdateManyModel
Filter sets the filter for the UpdateManyModel.
func (*UpdateManyModel) Update ¶ added in v0.0.16
func (umm *UpdateManyModel) Update(update interface{}) *UpdateManyModel
Update sets the update document for the UpdateManyModel.
func (*UpdateManyModel) Upsert ¶ added in v0.0.16
func (umm *UpdateManyModel) Upsert(upsert bool) *UpdateManyModel
Upsert specifies if a new document should be created if no document matches the query.
type UpdateOneModel ¶ added in v0.0.16
type UpdateOneModel struct {
driver.UpdateOneModel
}
UpdateOneModel is the write model for update operations.
func NewUpdateOneModel ¶ added in v0.0.16
func NewUpdateOneModel() *UpdateOneModel
NewUpdateOneModel creates a new UpdateOneModel.
func (*UpdateOneModel) ArrayFilters ¶ added in v0.0.16
func (uom *UpdateOneModel) ArrayFilters(filters options.ArrayFilters) *UpdateOneModel
ArrayFilters specifies a set of filters specifying to which array elements an update should apply.
func (*UpdateOneModel) Collation ¶ added in v0.0.16
func (uom *UpdateOneModel) Collation(collation *options.Collation) *UpdateOneModel
Collation sets the collation for the UpdateOneModel.
func (*UpdateOneModel) Filter ¶ added in v0.0.16
func (uom *UpdateOneModel) Filter(filter interface{}) *UpdateOneModel
Filter sets the filter for the UpdateOneModel.
func (*UpdateOneModel) Update ¶ added in v0.0.16
func (uom *UpdateOneModel) Update(update interface{}) *UpdateOneModel
Update sets the update document for the UpdateOneModel.
func (*UpdateOneModel) Upsert ¶ added in v0.0.16
func (uom *UpdateOneModel) Upsert(upsert bool) *UpdateOneModel
Upsert specifies if a new document should be created if no document matches the query.
type UpdateResult ¶
type UpdateResult struct { // The number of documents that matched the filter. MatchedCount int64 // The number of documents that were modified. ModifiedCount int64 // The number of documents that were upserted. UpsertedCount int64 // The identifier of the inserted document if an upsert took place. UpsertedID interface{} }
UpdateResult is a result of an update operation.
UpsertedID will be a Go type that corresponds to a BSON type.
func (*UpdateResult) UnmarshalBSON ¶
func (result *UpdateResult) UnmarshalBSON(b []byte) error
UnmarshalBSON implements the bson.Unmarshaler interface.
type WriteConcernError ¶ added in v0.0.4
WriteConcernError is a write concern failure that occurred as a result of a write operation.
func (WriteConcernError) Error ¶ added in v0.0.4
func (wce WriteConcernError) Error() string
type WriteError ¶ added in v0.0.4
WriteError is a non-write concern failure that occurred as a result of a write operation.
func (WriteError) Error ¶ added in v0.0.4
func (we WriteError) Error() string
type WriteErrors ¶ added in v0.0.4
type WriteErrors []WriteError
WriteErrors is a group of non-write concern failures that occurred as a result of a write operation.
func (WriteErrors) Error ¶ added in v0.0.4
func (we WriteErrors) Error() string
type WriteModel ¶ added in v0.0.16
type WriteModel interface {
// contains filtered or unexported methods
}
WriteModel is the interface satisfied by all models for bulk writes.