DSL fluent API
Status: Pre-Alpha
Brought to you by:
bcode
the idea may be seen in FluentApiTest. this is basically about wrapping the core API and giving DSL capabilities to do magic like others do in this manner:
api.start("admin", "admin").cache().put("domain", "rrr", "foo").end();
what is doable and very useful. We could have something like api.query(....).count() or api.query(...).get(2) etc. Not to mention about error handler or transactions (far future)
you like criteria API in hibernate?