29. April 2013
Amazon's SimpleDB service is a very easy to set up and maintain non-relational data store, hosted in their cloud infrastructure. I used it during the creation of a new project as I wanted something simple and easy to implement. SimpleDB was just that. However, it has quite a few limitations. Without getting into too much detail, make sure you take the following into account before you start coding:
In short, it's a fine service - if you use it correctly. I was trying to use it as a caching service, however. At only 5000 entries, it takes several seconds to read the entire data set, even with no further calculations, just retrieving the data. This was after minimizing the data returned so that I could read the maximum amount before reaching the 1kb limit. I think I'll soon be switching to something more appropriate. I know Redis will be up to the task, I just need to figure out how to host it properly.
If you're writing data fairly slowly, and don't need to read the entire data set rapidly either, it might suit your purposes. This isn't a condemnation of SimpleDB by any means, just don't try and make it do things it wasn't meant to!
Looking for more individual instruction? I'm available as a mentor at Mentorcruise for one on one guidance!