Go to file
Harshavardhana 07e1199ae1 Merge pull request #57 from fkautz/pr_out_merging_encode_and_decode_to_single_minio_demo_binary
Merging encode and decode to single minio-demo binary
2014-11-29 22:51:10 -08:00
cmd/minio-demo Merging encode and decode to single minio-demo binary 2014-11-29 22:48:37 -08:00
docs Changing minios to minio 2014-11-07 22:23:52 -08:00
Godeps Add groupcache/lru into godep 2014-11-13 22:41:44 -08:00
pkgs Merge pull request #55 from harshavardhana/pr_out_decoding_bug_fixes_42 2014-11-29 17:24:40 -08:00
.gitignore Adding cover.out to gitignore 2014-11-22 18:31:49 -08:00
CONTRIB.md Restructure directory, add 'pkgs' folder now 2014-11-24 15:10:25 -08:00
isal Restructure directory, add 'pkgs' folder now 2014-11-24 15:10:25 -08:00
LICENSE Initial commit 2014-10-30 21:51:52 -07:00
Makefile Merging encode and decode to single minio-demo binary 2014-11-29 22:48:37 -08:00
NOTICE Add erasure coding and decoding using Intel Storage Acceleration library 2014-11-13 15:20:18 -08:00
README.md Update README.md 2014-11-27 02:49:20 -08:00
TODO.md Initial commit 2014-10-30 21:51:52 -07:00

Introduction

Minio is an open source object storage released under Apache license v2.

It uses Rubberband Erasure coding to dynamically protect the data. Minio was inspired by Amazon S3 API and Haystack Object Format.

Dependencies

  • go1.3.3
  • godep
    • go get github.com/tools/godep
  • yasm
  • cover
    • go get code.google.com/p/go.tools/cmd/cover or yum install golang-cover

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

Analytics