From f8d7ef20e64d35d195c53d3df2242abef3588fbe Mon Sep 17 00:00:00 2001 From: Patrick Mezard Date: Mon, 19 Oct 2015 10:42:28 +0200 Subject: [PATCH] bucket: document Put() value must remain valid for the transaction Issue #324 --- bucket.go | 1 + 1 file changed, 1 insertion(+) diff --git a/bucket.go b/bucket.go index 8c3edae..f68963a 100644 --- a/bucket.go +++ b/bucket.go @@ -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 {