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


Golang Key.Bytes方法代码示例

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


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

示例1: Delete

func (d *datastore) Delete(key ds.Key) (err error) {
	err = d.DB.Delete(key.Bytes(), nil)
	if err == leveldb.ErrNotFound {
		return ds.ErrNotFound
	}
	return err
}
开发者ID:rht,项目名称:go-datastore,代码行数:7,代码来源:datastore.go

示例2: Put

// Returns ErrInvalidType if value is not of type []byte.
//
// Note: using sync = false.
// see http://godoc.org/github.com/syndtr/goleveldb/leveldb/opt#WriteOptions
func (d *datastore) Put(key ds.Key, value interface{}) (err error) {
	val, ok := value.([]byte)
	if !ok {
		return ds.ErrInvalidType
	}
	return d.DB.Put(key.Bytes(), val, nil)
}
开发者ID:rht,项目名称:go-datastore,代码行数:11,代码来源:datastore.go

示例3: Put

func (bd *boltDatastore) Put(key ds.Key, val interface{}) error {
	bval, ok := val.([]byte)
	if !ok {
		return ds.ErrInvalidType
	}
	return bd.db.Update(func(tx *bolt.Tx) error {
		return tx.Bucket(bd.bucketName).Put(key.Bytes(), bval)
	})
}
开发者ID:admpub,项目名称:bolt-datastore,代码行数:9,代码来源:datastore.go

示例4: Has

func (bd *boltDatastore) Has(key ds.Key) (bool, error) {
	var found bool
	err := bd.db.View(func(tx *bolt.Tx) error {
		val := tx.Bucket(bd.bucketName).Get(key.Bytes())
		found = (val != nil)
		return nil
	})
	return found, err
}
开发者ID:admpub,项目名称:bolt-datastore,代码行数:9,代码来源:datastore.go

示例5: ConsumeValue

func (bd *boltDatastore) ConsumeValue(key ds.Key, f func([]byte) error) error {
	return bd.db.View(func(tx *bolt.Tx) error {
		mmval := tx.Bucket(bd.bucketName).Get(key.Bytes())
		if mmval == nil {
			return ds.ErrNotFound
		}
		return f(mmval)
	})
}
开发者ID:admpub,项目名称:bolt-datastore,代码行数:9,代码来源:datastore.go

示例6: Get

func (d *datastore) Get(key ds.Key) (value interface{}, err error) {
	val, err := d.DB.Get(key.Bytes(), nil)
	if err != nil {
		if err == leveldb.ErrNotFound {
			return nil, ds.ErrNotFound
		}
		return nil, err
	}
	return val, nil
}
开发者ID:rht,项目名称:go-datastore,代码行数:10,代码来源:datastore.go

示例7: Get

func (bd *boltDatastore) Get(key ds.Key) (interface{}, error) {
	var out []byte
	err := bd.db.View(func(tx *bolt.Tx) error {
		mmval := tx.Bucket(bd.bucketName).Get(key.Bytes())
		if mmval == nil {
			return ds.ErrNotFound
		}
		out = make([]byte, len(mmval))
		copy(out, mmval)
		return nil
	})
	if err != nil {
		return nil, err
	}

	return out, err
}
开发者ID:admpub,项目名称:bolt-datastore,代码行数:17,代码来源:datastore.go

示例8: Has

func (d *datastore) Has(key ds.Key) (exists bool, err error) {
	return d.DB.Has(key.Bytes(), nil)
}
开发者ID:rht,项目名称:go-datastore,代码行数:3,代码来源:datastore.go

示例9: BlakeKeyHash

// Hash a key and return the first 16 hex chars of its blake2b hash.
// basically: Blake2b(key).HexString[:16]
func BlakeKeyHash(key ds.Key) string {
	h := blake2.NewBlake2B()
	h.Write(key.Bytes())
	d := h.Sum(nil)
	return fmt.Sprintf("%x", d)[:16]
}
开发者ID:rht,项目名称:go-datastore,代码行数:8,代码来源:datastore.go

示例10: Delete

func (bd *boltDatastore) Delete(key ds.Key) error {
	return bd.db.Update(func(tx *bolt.Tx) error {
		return tx.Bucket(bd.bucketName).Delete(key.Bytes())
	})
}
开发者ID:admpub,项目名称:bolt-datastore,代码行数:5,代码来源:datastore.go


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