I'm looking at amazon's DynamoDB service to store logs from our application (specifically using Zend_Log
writers) into a DynamoDB database.
Right now, there's no native support for DynamoDB in zend framework, and looks like amazon changed their signature handling to a newer version ( http://docs.amazonwebservices.com/general/latest/gr/signing_aws_api_requests.html ), which means that zend framework can't even sign API requests for amazon's new services.
Anyone is familiar with Zend_Log_Writer that can work with DynamoDB service? or has some pointers on implementing such a writer?
I'm also considering their session management handler using Zend_Session
( http://docs.amazonwebservices.com/AWSSDKforPHP/latest/index.html#m=AmazonDynamoDB/register_session_handler ). But, again, there's no native support in zend framework for it.