Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DynamoDB Perl Abstraction

I recently read about Amazon's new DB offering, DynamoDB, and must admit it sounds very compelling. However, before I run off and start re-programming my Model layer to take advantage of the new kid on the block I need some more specifics. Does anyone know of a Perl package that abstracts the DynamoDB or is that too soon? I would call it an 'ORM' package, but there are no relationships in the DynamoDB world. Is there one in alpha, beta? How can I access amazon's dynamodb via Perl?

Thanks

like image 712
MadHacker Avatar asked Oct 08 '22 23:10

MadHacker


1 Answers

You could also use my perl module Net::Amazon::DynamoDB (@MadHacker: i took the liberty to adapt your signing code above).

  • CPAN: http://search.cpan.org/search?query=net%3A%3Aamazon%3A%3Adynamodb
  • Latest always on github: https://github.com/ukautz/Net-Amazon-DynamoDB
like image 128
ukautz Avatar answered Oct 13 '22 11:10

ukautz