├── .gitignore ├── LICENSE ├── README.md ├── bucket_test.go ├── buckets.go ├── buckets.jpg ├── buckets_test.go ├── db_test.go ├── doc.go ├── examples ├── README.md ├── items.go ├── post.go ├── prefix.go ├── range.go └── roundtrip.go ├── http_test.go ├── map_test.go ├── prefixscan.go ├── prefixscan_test.go ├── rangescan.go ├── rangescan_test.go ├── scanner.go └── util.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.zip 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/README.md -------------------------------------------------------------------------------- /bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/bucket_test.go -------------------------------------------------------------------------------- /buckets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/buckets.go -------------------------------------------------------------------------------- /buckets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/buckets.jpg -------------------------------------------------------------------------------- /buckets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/buckets_test.go -------------------------------------------------------------------------------- /db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/db_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/doc.go -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/examples/items.go -------------------------------------------------------------------------------- /examples/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/examples/post.go -------------------------------------------------------------------------------- /examples/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/examples/prefix.go -------------------------------------------------------------------------------- /examples/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/examples/range.go -------------------------------------------------------------------------------- /examples/roundtrip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/examples/roundtrip.go -------------------------------------------------------------------------------- /http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/http_test.go -------------------------------------------------------------------------------- /map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/map_test.go -------------------------------------------------------------------------------- /prefixscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/prefixscan.go -------------------------------------------------------------------------------- /prefixscan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/prefixscan_test.go -------------------------------------------------------------------------------- /rangescan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/rangescan.go -------------------------------------------------------------------------------- /rangescan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/rangescan_test.go -------------------------------------------------------------------------------- /scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/scanner.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyrexus/buckets/HEAD/util.go --------------------------------------------------------------------------------