database

package module
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Feb 6, 2023 License: MIT Imports: 5 Imported by: 0

README

golang-mongodb-network-connector

golang-mongodb-network-connector は Go ランタイムで MongoDB に対し、ネットワーク接続を行うためのライブラリです。

動作環境

動作には以下の環境であることを前提とします。

  • OS: Linux OS
  • CPU: ARM/AMD/Intel
  • Golang Runtime

導入方法

go get でインストールしてください。

go get "github.com/latonaio/golang-mongodb-network-connector"

使用方法

mongodb 接続のためのインスタンス作成
db, err := database.NewMongodb(c.DB)
if err != nil {
  l.Error(err)
  return
}
DB の切断処理
defer db.Close()

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MongoDB

type MongoDB struct {
	*mongo.Client
	*mongo.Database
	// contains filtered or unexported fields
}

func NewMongoDB

func NewMongoDB(d SetupData) (*MongoDB, error)

func (*MongoDB) Close

func (d *MongoDB) Close()

type SetupData

type SetupData interface {
	MongodbDsn() string
	MongodbDsnDBName() string
}

Jump to

Keyboard shortcuts

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