After having presented the overall test procedure in our previous article, we turn to the detailed description of each candidate.
Terrastore (http://code.google.com/p/terrastore/) is a distributed key-value-data store based on Terracotta. The records - for instance serialized java objects or JSON strings - are stored in a hierarchical structure bucket/key such that Terrastore can be viewed as a function String x String -> Record. A bucket corresponds roughly to a table of an sql database. Buckets cannot be nested and are comparatively heavy-weight objects - several hundred buckets do not present a serious problem for the system. An order of magnitude more is no longer feasible (OutOfMemory-Exceptions).

