Is there a good database backend in Django for Amazon DynamoDB? -


i use dynamodb next django project. have found implentation store session data dynamodb, there backend implementation django store database data?

i don't think there django dynamodb projects out there allow use django orm while using dynamodb underneath.

but depending on case, may still able ignore orm portion of django , use dynamodb directly (via boto or pun anode or similar ).

in case, use mix. keep users , other models read on postgres (rds) , django orm, use dynamodb models require heavy writes ( using pynamodb).

i still use views, templates or add api via django-rest-framework. lose admin pages ( don't need these models ) , other features orm gives have been happy result anyway.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -