After a few days doing other things, I am back working on my GAE + GWT Starter Project. The last thing I did before I took a break was the high-level design. It looked like a layered design with these layers
- UI
- Person Client Cache
- (Client-Server RPC)
- Person Server Cache Pipeline
- Database
- Each layer depends on the layer below it, and
- The biggest risks are in the bottom layers.
- Bottom-up
- Stubbing of the lower levels
If there was more than one person working on this project then we would start by building the server cache pipeline (a simple piece of code) and adding stubs for each cache stage. This would allow people to work on different parts of the system independently of each other (and give us the stub framework we would eventually need for testing and tuning).
However I am the only person working on this project and the risk is concentrated in the bottom layers, so I am going to attack uncertainty and start at the bottom.
- Build a person canonical meta-data based on using a few social networks.
- Get the GAE datastore saving and find person records reliably.
- Get the GAE server working reliably to deliver results in series of calls that are timed out in 10 seconds (well below sandbox limit and within human tolerance)
0 comments:
Post a Comment