Sergio Navarrete
Sergio Navarrete
@thiagobustamante I'm using you library and I noticed it was failing to generate the swagger when I had Observable as the return type. I created this pull request to add...
@bwaldvogel I agree with you regarding H2 in the core module. This pull request needs some serious refactoring, I lack the time at the moment, I'll come back to it...
We can easily simulate a replica set without really implementing it by adding a few fields to the isMaster response, for example ``` response.put("setName", "rs0"); response.put("hosts", Collections.singleton(serverAddress)); response.put("me", serverAddress); response.put("primary",...
@bwaldvogel In our case we have an application that needs to make changes to multiple collections in an atomic way, hence transactions. Our data model is complex and fits better...
@bwaldvogel I'm looking at implementing **transactions** which requires the implementation of OP_MSG. I'm happy to pick this up, if you have made any progress and have something to share I...