golang mongo-driver 使用基础

pascal_lin · · 1584 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

BSON是什么?

BSON就是二进制编码的JSON序列化数据。

官网上提到的三个特点有:

  1. 更轻量
  2. 可转换(序列化和反序列化)
  3. 更高效,因为是二进制的

BSON在mongdo-driver中的应用

根据上面所说的BSON的特点,MongoDB是用BSON作为主要的数据格式

go.mongodb.org/mongo-driver/bson 的使用

bson struct

在进行mongodb操作时,经常需要一些基本的bson结构体。有四种struct可以定义bson的数据结构:bson.D{}bson.E{}bson.M{}bson.A{}

先贴上bson.go的源码,其实说得很清楚了

// D is an ordered representation of a BSON document. This type should be used when the order of the elements matters,
// such as MongoDB command documents. If the order of the elements does not matter, an M should be used instead.
//
// Example usage:
//
//         bson.D{{"foo", "bar"}, {"hello", "world"}, {"pi", 3.14159}}
type D = primitive.D

// E represents a BSON element for a D. It is usually used inside a D.
type E = primitive.E

// M is an unordered representation of a BSON document. This type should be used when the order of the elements does not
// matter. This type is handled as a regular map[string]interface{} when encoding and decoding. Elements will be
// serialized in an undefined, random order. If the order of the elements matters, a D should be used instead.
//
// Example usage:
//
//         bson.M{"foo": "bar", "hello": "world", "pi": 3.14159}
type M = primitive.M

// An A is an ordered representation of a BSON array.
//
// Example usage:
//
//         bson.A{"bar", "world", 3.14159, bson.D{{"qux", 12345}}}
type A = primitive.A

bson/primitive

primitive package定义了一些使用mongodb过程中常用的数据结构和操作数据结构的方法

ObjectID

类型定义使用:primitive.ObjectID

新建一个ObjectID:primitive.NewObjectID()

正则匹配Regex

源码

// Regex represents a BSON regex value.
type Regex struct {
    Pattern string
    Options string
}

func (rp Regex) String() string {
    return fmt.Sprintf(`{"pattern": "%s", "options": "%s"}`, rp.Pattern, rp.Options)
}

// Equal compares rp to rp2 and returns true is the are equal.
func (rp Regex) Equal(rp2 Regex) bool {
    return rp.Pattern == rp2.Pattern && rp.Options == rp2.Options
}

// IsZero returns if rp is the empty Regex
func (rp Regex) IsZero() bool {
    return rp.Pattern == "" && rp.Options == ""
}

使用例子

condition := bson.D{}
if cond.Title != "" {
    condition = append(condition, bson.E{"title", primitive.Regex{Pattern:cond.Title, Options:"i"}})
}

待补充


有疑问加站长微信联系(非本文作者)

本文来自:Segmentfault

感谢作者:pascal_lin

查看原文:golang mongo-driver 使用基础

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1584 次点击  
加入收藏 微博
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传