Play! Framework + DynamoDB

Being new with the Play Framework, I wonder if this is easier than I think, but is it possible to use DynamoDB with the Play Framework?

+5
source share
2 answers

Since DynamoDB is a NoSQL database, I expect that you will need to use a specific module, which, as Dynamo recently announced, the module does not exist.

If you are interested in writing your own module, then using Mongo (http://www.playframework.org/modules/mongo-1.3/home) as a starting point (also NoSQL) will give you a good guide on how this was achieved in other implementations.

+2
source
+1

All Articles