aboutsummaryrefslogtreecommitdiffstats
path: root/storage/transactional/reference.go
Commit message (Collapse)AuthorAgeFilesLines
* transactional/ReferenceStorage: Drop packRefs fieldAbhinav Gupta2021-11-271-4/+0
| | | | | | | | | | | | | | The packRefs field is unused. It is assigned to true from the `PackRefs()` method, but because the method is not on the pointer type, the assignment has no effect. var st ReferenceStorage fmt.Println(st.packRefs) // false st.PackRefs() fmt.Println(st.packRefs) // false Delete the unused field.
* Minor linter fixesOleg Kovalov2020-07-061-1/+1
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-3/+3
|
* storage: transactional, package documentationMáximo Cuadros2019-02-021-2/+14
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* storage: transactional, new storage with transactional capabilitiesMáximo Cuadros2018-12-101-0/+126
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>