本文整理汇总了Golang中github.com/coralproject/shelf/internal/platform/db.DB.CollectionMGO方法的典型用法代码示例。如果您正苦于以下问题:Golang DB.CollectionMGO方法的具体用法?Golang DB.CollectionMGO怎么用?Golang DB.CollectionMGO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/coralproject/shelf/internal/platform/db.DB
的用法示例。
在下文中一共展示了DB.CollectionMGO方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Drop
// Drop drops the temp collection.
func Drop(db *db.DB) {
col, err := db.CollectionMGO(tests.Context, CollectionExecTest)
if err != nil {
fmt.Printf("***********> Should be able to get a Mongo session : %v\n", err)
return
}
col.DropCollection()
}
示例2: cleanupView
// cleanupView removed a tempory view collection.
func cleanupView(context interface{}, db *db.DB, viewCol string) error {
c, err := db.CollectionMGO(context, viewCol)
if err != nil {
return err
}
if err := c.DropCollection(); err != nil {
return err
}
return nil
}
示例3: createCollection
// createCollection creates a collection in the new database.
func createCollection(db *db.DB, dbMeta *DBMeta, col *Collection, dropIdxs bool) error {
mCol, err := db.CollectionMGO("", col.Name)
if err != nil {
return err
}
if err := mCol.Create(new(mgo.CollectionInfo)); err != nil {
return err
}
if err := createIndexes(mCol, col, dropIdxs); err != nil {
return err
}
return nil
}