Go to file
Harshavardhana 1e7515a7df Add erasure coding and decoding using Intel Storage Acceleration library
- move contrib/erasure --> contrib/isal
 - bring in low level 'isal' package for Go for exposing C functions
 - Implement Erasure 'encoding'
   Supports - Reed Solomon Codes, Cauchy Codes
 - Implement Erasure 'decoding'
   Supports - Reed Solomon Codes, Cauchy Codes
 - Renames Minios -> Minio at all the references
2014-11-13 15:20:18 -08:00
contrib/signify Add erasure coding and decoding using Intel Storage Acceleration library 2014-11-13 15:20:18 -08:00
docs Changing minios to minio 2014-11-07 22:23:52 -08:00
erasure Add erasure coding and decoding using Intel Storage Acceleration library 2014-11-13 15:20:18 -08:00
Godeps In memory object storage now uses patricia tree 2014-11-07 23:34:21 -08:00
minio Changing minios to minio 2014-11-07 22:23:52 -08:00
.gitignore Add erasure coding and decoding using Intel Storage Acceleration library 2014-11-13 15:20:18 -08:00
gateway.go In memory object storage now uses patricia tree 2014-11-07 23:34:21 -08:00
gateway_test.go In memory object storage now uses patricia tree 2014-11-07 23:34:21 -08:00
LICENSE Initial commit 2014-10-30 21:51:52 -07:00
Makefile Changing minios to minio 2014-11-07 22:23:52 -08:00
NOTICE Add erasure coding and decoding using Intel Storage Acceleration library 2014-11-13 15:20:18 -08:00
README.md Moving to godep for dependency management 2014-11-03 20:59:07 -08:00
storage.go Setting up initial cli options and http handlers 2014-11-02 17:33:40 -08:00
storage_test.go Setting up initial cli options and http handlers 2014-11-02 17:33:40 -08:00
TODO.md Initial commit 2014-10-30 21:51:52 -07:00

Dependencies

  • go1.3.3
  • godep
    • go get github.com/tools/godep

Dependency management

Install or updating a new dependency

go get -u github.com/example/dependency
# import github.com/example/dependency in go src code
godep save ./...

Commit all Godep/ modifications, including vendorized files.

Restoring dev environment dependencies

godep restore

Compiling

make