mgo操作mongodb

來源:互聯網
上載者:User

標籤:bash   模糊   格式   host   func   main   ODB   pkg   str   

mgo基本使用:

http://labix.org/mgo

安裝

# go get gopkg.in/mgo.v2
package mainimport (        "fmt"    "log"        "gopkg.in/mgo.v2"        "gopkg.in/mgo.v2/bson")type Person struct {        Name string        Phone string}func main() {        //mongodb串連uri        //格式為[mongodb://][user:[email protected]]host1[:port1][,host2[:port2],...][/database][?options]        session, err := mgo.Dial("mongodb://cord:[email protected]:27010/keymap")        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 {                log.Fatal(err)        }        result := Person{}        //普通查詢        err = c.Find(bson.M{"name": "Ale"}).One(&result)        //正則匹配(模糊查詢),其中"$options":"$i"表示忽略大小寫        //regexStr = "A"         //err = c.Find(bson.M{"name":bson.M{"$regex" : regexStr, "$options":"$i"}}).All(&result)        if err != nil {                log.Fatal(err)        }        fmt.Println("Phone:", result.Phone)                //刪除記錄        err = c.Remove(bson.M{"name":"Ale"})  //刪除單條,如果有多條,預設順序第一條    _, err = c.RemoveAll(bson.M{"name":"Ale"}) //刪除所有尋找的    if err != nil {            fmt.Println(err)    }}

mgo操作mongodb

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.