当前位置: 首页>>代码示例>>Golang>>正文


Golang Database.Run方法代码示例

本文整理汇总了Golang中labix/org/v2/mgo.Database.Run方法的典型用法代码示例。如果您正苦于以下问题:Golang Database.Run方法的具体用法?Golang Database.Run怎么用?Golang Database.Run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在labix/org/v2/mgo.Database的用法示例。


在下文中一共展示了Database.Run方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: IsTokuMX

// IsTokuMX determines if the server connected to is TokuMX.
func IsTokuMX(db *mgo.Database) bool {
	var result bson.M
	if err := db.Run("buildInfo", &result); err != nil {
		log.Fatal(err)
	}
	return result["tokumxVersion"] != nil
}
开发者ID:Tokutek,项目名称:go-benchmark,代码行数:8,代码来源:utils.go

示例2: createMongoCollection

// creates a collection in MongoDB
func createMongoCollection(collname string, db *mgo.Database) {
	fmt.Println("creating collection: ", collname)
	var result bson.M
	createCmd := createCollOptions{Coll: collname}
	err := db.Run(createCmd, &result)
	if err != nil {
		log.Fatal(err)
	}
}
开发者ID:Tokutek,项目名称:go-benchmark,代码行数:10,代码来源:create_collection.go

示例3: applyTokuIndexOptions

func applyTokuIndexOptions(db *mgo.Database, collname string, options tokuMXCreateOptions) {
	var result bson.M
	var optBson bson.M
	optBson = bson.M{"compression": options.CompressionType, "pageSize": options.NodeSize, "readPageSize": options.BasementSize}
	err := db.Run(bson.D{{"reIndex", collname}, {"index", "*"}, {"options", optBson}}, &result)
	if err != nil {
		log.Fatal("Failed to set options on indexes, received ", err)
	}
}
开发者ID:Tokutek,项目名称:go-benchmark,代码行数:9,代码来源:create_collection.go

示例4: GetDbStats

// Returns a variety of database statistics.
//
// Based on
// http://docs.mongodb.org/manual/reference/command/dbStats/#dbcmd.dbStats
func GetDbStats(db *mgo.Database) (DbStats, error) {
	var output DbStats
	err := db.Run(bson.D{
		{"dbStats", 1},
		{"scale", 1},
	}, &output)

	if err != nil {
		return output, err
	}
	return output, nil
}
开发者ID:gabstv,项目名称:go-mgoplus,代码行数:16,代码来源:mgoplus.go

示例5: GetCollectionStats

// Returns a variety of storage statistics for a given collection.
//
// Based on
// http://docs.mongodb.org/manual/reference/method/db.collection.stats/
func GetCollectionStats(db *mgo.Database, collectionName string) (CollectionStats, error) {
	var output CollectionStats
	err := db.Run(bson.D{
		{"collStats", collectionName},
		{"scale", 1},
		{"verbose", true},
	}, &output)

	if err != nil {
		return output, err
	}
	return output, nil
}
开发者ID:gabstv,项目名称:go-mgoplus,代码行数:17,代码来源:mgoplus.go

示例6: createTokuCollection

// creates a collection in TokuMX
func createTokuCollection(collname string, db *mgo.Database, options tokuMXCreateOptions) {
	fmt.Println("creating collection ", collname)
	var result bson.M
	createCmd := createCollOptions{
		Coll:         collname,
		Compression:  options.CompressionType,
		NodeSize:     options.NodeSize,
		BasementSize: options.BasementSize,
		Partitioned:  options.Partitioned}
	err := db.Run(createCmd, &result)
	if err != nil {
		log.Fatal(err)
	}
}
开发者ID:Tokutek,项目名称:go-benchmark,代码行数:15,代码来源:create_collection.go

示例7: GetCollectionNames

// Returns a slice containing the names of all collections in the current database.
//
// Based on
// http://docs.mongodb.org/manual/reference/method/db.getCollectionNames/
func GetCollectionNames(db *mgo.Database) ([]string, error) {
	raw := make(map[string]interface{})
	err := db.Run(bson.D{{"listCollections", 1}}, &raw)
	if err != nil {
		return nil, err
	}
	jq := jsonq.NewQuery(raw)
	items, err := jq.ArrayOfObjects("cursor", "firstBatch")
	if err != nil {
		return nil, err
	}
	output := make([]string, len(items))
	for k, v := range items {
		output[k], _ = v["name"].(string)
	}
	return output, nil
}
开发者ID:gabstv,项目名称:go-mgoplus,代码行数:21,代码来源:mgoplus.go


注:本文中的labix/org/v2/mgo.Database.Run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。