StarterGoMongo

package module
v1.1.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 9, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

README

starter-go-mongo

English

[仅发布] 该项目仅为最终发布,不要向该项目直接提交代码,开发请关注 go-spring 项目。

Installation

Prerequisites
  • Go >= 1.12
Using go get
go get github.com/go-spring/starter-go-mongo@v1.1.0-rc2 

Quick Start

import "github.com/go-spring/starter-go-mongo"

main.go

package main

import (
	"context"
	"fmt"

	"github.com/go-spring/spring-base/util"
	"github.com/go-spring/spring-core/gs"
	_ "github.com/go-spring/starter-go-mongo"
	"go.mongodb.org/mongo-driver/bson"
	"go.mongodb.org/mongo-driver/mongo"
)

type runner struct {
	Client *mongo.Client `autowire:""`
}

func (r *runner) Run(ctx gs.Context) {

	collection := r.Client.Database("baz").Collection("qux")
	_, err := collection.InsertOne(context.Background(), bson.M{"hello": "world", "Foo": "1"})
	util.Panic(err).When(err != nil)

	ret := struct{ Foo string }{}
	filter := bson.D{{"hello", "world"}}
	err = collection.FindOne(context.Background(), filter).Decode(&ret)
	util.Panic(err).When(err != nil)
	fmt.Println(ret)

	go gs.ShutDown()
}

func main() {
	gs.Object(&runner{}).Export((*gs.AppRunner)(nil))
	fmt.Printf("program exited %v\n", gs.Web(false).Run())
}

Configuration

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Factory

type Factory struct {
	Logger *log.Logger `logger:""`
}

func (*Factory) CloseClient

func (f *Factory) CloseClient(client *g.Client)

CloseClient 关闭 MongoDB 客户端

func (*Factory) NewClient

func (f *Factory) NewClient(config mongo.Config) (*g.Client, error)

NewClient 创建 MongoDB 客户端

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL