bucket: document Put() value must remain valid for the transaction

Issue #324
pull/34/head
Patrick Mezard 2015-10-19 10:42:28 +02:00
parent b05ba12bcb
commit f8d7ef20e6
1 changed files with 1 additions and 0 deletions

View File

@ -270,6 +270,7 @@ func (b *Bucket) Get(key []byte) []byte {
// Put sets the value for a key in the bucket.
// If the key exist then its previous value will be overwritten.
// Supplied value must remain valid for the life of the transaction.
// Returns an error if the bucket was created from a read-only transaction, if the key is blank, if the key is too large, or if the value is too large.
func (b *Bucket) Put(key []byte, value []byte) error {
if b.tx.db == nil {