├── .travis.yml ├── LICENSE ├── README.md ├── cmd └── fastcdc │ └── main.go ├── doc.go ├── fastcdc.go ├── fastcdc_example_test.go ├── fastcdc_test.go ├── go.mod ├── img ├── fastcdcgo_norm2_dist.png └── restic_dist.png └── restic-chunks.csv /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/README.md -------------------------------------------------------------------------------- /cmd/fastcdc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/cmd/fastcdc/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/doc.go -------------------------------------------------------------------------------- /fastcdc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/fastcdc.go -------------------------------------------------------------------------------- /fastcdc_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/fastcdc_example_test.go -------------------------------------------------------------------------------- /fastcdc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/fastcdc_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jotfs/fastcdc-go 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /img/fastcdcgo_norm2_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/img/fastcdcgo_norm2_dist.png -------------------------------------------------------------------------------- /img/restic_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/img/restic_dist.png -------------------------------------------------------------------------------- /restic-chunks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotfs/fastcdc-go/HEAD/restic-chunks.csv --------------------------------------------------------------------------------