本文整理汇总了Golang中github.com/boltdb/bolt.DB.Path方法的典型用法代码示例。如果您正苦于以下问题:Golang DB.Path方法的具体用法?Golang DB.Path怎么用?Golang DB.Path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/boltdb/bolt.DB
的用法示例。
在下文中一共展示了DB.Path方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: UseDB
// UseDB allow Storm to use an existing open Bolt.DB.
// Warning: storm.DB.Close() will close the bolt.DB instance.
func UseDB(b *bolt.DB) func(*DB) error {
return func(d *DB) error {
d.Path = b.Path()
d.Bolt = b
return nil
}
}
示例2: tearDownBoltDB
// tearDownBoltDB closes and deletes boltdb
func tearDownBoltDB(db *bolt.DB) error {
p := db.Path()
err := db.Close()
if err != nil {
return err
}
return os.Remove(p)
}
示例3: closedb
// closedb closes and deletes a ReportifyDB database.
func closedb(db *bolt.DB) {
if db == nil {
return
}
path := db.Path()
db.Close()
if path != "" {
os.Remove(path)
}
}
示例4: clean_bolt
func clean_bolt(db *bolt.DB) {
db.Close()
os.Remove(db.Path())
}