├── .travis.yml ├── LICENSE ├── README.md ├── checkout-pr-branch.sh ├── codelingo.yaml ├── demo └── writer.go ├── go.mod ├── go.sum ├── manager.go ├── manager_test.go ├── rollingwriter.go ├── rollingwriter_test.go ├── spinlock.go ├── spinlock_test.go ├── writer.go ├── writer_bench_test.go └── writer_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/README.md -------------------------------------------------------------------------------- /checkout-pr-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/checkout-pr-branch.sh -------------------------------------------------------------------------------- /codelingo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/codelingo.yaml -------------------------------------------------------------------------------- /demo/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/demo/writer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/go.sum -------------------------------------------------------------------------------- /manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/manager.go -------------------------------------------------------------------------------- /manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/manager_test.go -------------------------------------------------------------------------------- /rollingwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/rollingwriter.go -------------------------------------------------------------------------------- /rollingwriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/rollingwriter_test.go -------------------------------------------------------------------------------- /spinlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/spinlock.go -------------------------------------------------------------------------------- /spinlock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/spinlock_test.go -------------------------------------------------------------------------------- /writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/writer.go -------------------------------------------------------------------------------- /writer_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/writer_bench_test.go -------------------------------------------------------------------------------- /writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkiller/rollingwriter/HEAD/writer_test.go --------------------------------------------------------------------------------