(bucket string, key, value []byte, ttl uint32, timestamp uint64)
| 32 | ) |
| 33 | |
| 34 | func (tx *Tx) PutWithTimestamp(bucket string, key, value []byte, ttl uint32, timestamp uint64) error { |
| 35 | return tx.put(bucket, key, value, ttl, DataSetFlag, timestamp, DataStructureBTree) |
| 36 | } |
| 37 | |
| 38 | // Put sets the value for a key in the bucket. |
| 39 | // a wrapper of the function put. |