You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Frederick F. Kautz IV 51022972f8 Merge pull request #61 from fkautz/pr_out_renaming_minio_demo_to_erasure_demo 10 years ago
Godeps Removing groupcache lru dependency 10 years ago
cmd/erasure-demo Renaming minio-demo to erasure-demo 10 years ago
docs Changing minios to minio 10 years ago
pkgs No caps for stdint 10 years ago
.gitignore Adding cover.out to gitignore 10 years ago
CONTRIB.md Restructure directory, add 'pkgs' folder now 10 years ago
LICENSE Initial commit 10 years ago
Makefile Renaming minio-demo to erasure-demo 10 years ago
NOTICE Add erasure coding and decoding using Intel Storage Acceleration library 10 years ago
README.md Update README.md 10 years ago
TODO.md Initial commit 10 years ago
doc.go Adding godoc description of minio 10 years ago
isal Restructure directory, add 'pkgs' folder now 10 years ago

README.md

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