|
Project Information
Featured
Downloads
Links
|
SimpleDB/dev provides a local SimpleDB server, so you can develop offline, without even currently having a SimpleDB account. Now supports Linux, OS X and Windows >=XP. Currently implemented:
Currently not implemented:
To run a SimpleDB/dev server, you'll need python (tested with 2.5, standard with OS X Leopard), and web.py (tested with 0.3.1). You can install web.py easily if you have python's easy install on your path: easy_install web.py If you don't have easy install, you can install it by downloading the bootstrapper ez_install.py, and running it. (Windows users, easy_install.exe is installed in the Scripts directory in your python directory.) Windows users will have to also install the Python extensions for windows. So now just download the latest release, and start up the SimpleDB/dev web server: python simpledb_dev.py <port number, default 8080> If the server doesn't start, or you have other problems, it's pretty easy to run the tests and see some examples of request/response: python simpledb_dev.py test Remember, this is a development tool, and not meant for storing or querying large amounts of data - I do not know yet how big you can get before running into issues, but I suspect that with the current storage and querying design it is not that large :o) Now that I have a base, I may start trying to see how I can improve the performance... Although this conforms to the specifications in the technical documentation, SimpleDB/dev has not been tested with every possible SDB client library, and I am looking forward to people in the oss community trying to find bugs and peculiarities - it is after all, a work in progress! So enjoy developing your SimpleDB applications now, not later! Matthew Painter |