go sample - mongodb

时间:2022-05-03 20:52:53

简单的mongodb 操作

package mainimport (    "fmt"    "gopkg.in/mgo.v2"    "gopkg.in/mgo.v2/bson")type Person struct {    Name  string    Phone string}func main() {    session, err := mgo.Dial("10.0.2.49:29000")    //session, err := mgo.Dial("10.0.2.49:29000")    if err != nil {        panic(err)    }    defer session.Close()    // Optional. Switch the session to a monotonic behavior.    session.SetMode(mgo.Monotonic, true)    c := session.DB("test").C("people")    err = c.Insert(&Person{"Ale", "+55 53 8116 9639"},        &Person{"Cla", "+55 53 8402 8510"})    if err != nil {        panic(err)    }    result := Person{}    err = c.Find(bson.M{"name": "Ale"}).One(&result)    if err != nil {        panic(err)    }    a := result.Phone    fmt.Println("Phone:", a)}