This question is quite hypothetical but I'll ask anyway. Let's say you start a project with Play and you use a mysql database. Later on you decide you want to move your application to something like Google App Engine or Amazon EC2. Or maybe even switch to a NoSQL database like MongoDB or Cassandra.
Are there any tools for this? Or would you basically need to rewrite your models? Especially since mysql is a relational database and has nothing to do with something like Monogo, I'm guessing it's quite hard?
I'm asking because, when you start a project, obviously, you might be hoping to scale your application at one point, and maybe you'll need something like Mongo, but you never know how things turn out. MySQL could end up being more than enough for your needs for a long time. So why go to the trouble of learning to work with Mongo, when you'd be much more productive with MySQL and you could switch later, if necessary?
I'm asking more specifically in combination with using the Play! framework.
What are your thoughts?