RSS | Module Info | Add a review of SOAP-Amazon-S3

3 out of 3 found this review helpful:

SOAP-Amazon-S3 (0.023) ****

Based on preliminary testing under light load. Much simpler than the Amazon supplied REST library or Net::Amazon::S3.

I haven't thought about all the implications of this, but I think the interface may be improved slightly by modifying the putobject method or maybe adding a putfile method. So, instead of:

$bucket->putobject( $obj_key, $obj_data, { 'Content-Type' => $mime_type } )

I would suggest:

$bucket->putobject( $obj_key => {
data => ' ... ',
'Content-Type' => $mime_type,
});

and

$bucket->putobject( $obj_key => {
file => '/path/to/file',
'Content-Type' => $mime_type,
});

Hope that makes sense.

Thank you for your work. Sincerely appreciated.

Sinan

A. Sinan Unur - 2007-02-28 21:17:07
Was this review helpful to you?  Yes No


the camel