我正在编写一个快速写入 mongodb 的应用程序。mongodb 和 mgo 处理速度太快了。我的问题是,有没有办法让我确定 mongo 跟不上并开始阻塞?但我也不想不必要地阻止。这是模拟问题的代码示例:
package main
import (
"labix.org/v2/mgo"
"time"
"fmt"
)
// in database name is a string and age is an int
type Dog struct{
Breed string "breed"
}
type Person struct{
Name string "name"
Pet Dog `bson:",inline"`
Ts time.Time
}
func insert(session *mgo.Session, bob Person){
err := session.DB("db_log").C("people").Insert(&bob)
if err != nil {
panic("Could not insert into database")
}
}
func main() {
session, _ := mgo.Dial("localhost:27017")
bob := Person{Name : "Robert", Pet : Dog{}}
i := 0
for {
time.Sleep(time.Duration(1) * time.Microsecond)
i++
go insert(session, bob)
}
}
我经常收到以下错误:
panic: Could not insert into database
或者
panic: write tcp 127.0.0.1:27017: i/o timeout
慕无忌1623718
相关分类