没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > s3lib |
s3lib
|
0 | 0 | 329 |
贡献者 | 讨论 | 代码提交 |
DescriptionS3Lib is a client library for Amazon's Simple Storage Service.
StatusJava LibraryS3Lib-Java is complete and in active production use. Three Rings Design uses S3Lib-Java for the backend storage needs of their games.
C LibraryThe C implementation, S3Lib-C, is a work-in-progress. Finishing the library is waiting on free time, an external contribution, or sponsorship of the work.
Remaining tasks:
Implementation of S3Connection using libcurl.
S3PipeIncluded with S3Lib-Java is S3Pipe -- S3Pipe implements piping of streams to and from S3. This allows us to pipe the encrypted output of 'dump' (and 'restore') directly to and from S3 -- We've used this to implement offsite backups of our servers:
landonf:s3lib> echo "hello, world" | s3pipe ... upload --stream helloworld
landonf:s3lib> s3pipe ... download --stream helloworld
hello, world