ronanh
ronanh
This contribution fixes a potential deadlock in badger. See this [thread](https://discuss.dgraph.io/t/deadlock-in-badger-v3/17548) for more details. The fix is straightforward and should not do much harm.
Is that the kind of GenServer RPC impl that you were thinking of?
A few performance optimisations: * Use array pointers when possible * Eliminate bounds checks * Assigning compressed bytes in a single statement improves the generated code Overall achieves 5-10% improvements...
When small blocks are added to a compressed buffer, the end of the compressed buffer is rewritten to make a bigger block with better compression. This behaviour is not transparent...
This PR refactors of the supervision tree initialization logic, in order to: - Limit the Main application Supervisor responsibility to high level application structure - Move the module registry in...
I have created a simple phoenix application (Ecto 2.0) with a simple `Role` model and a `User` model that belongs to a role. I followed the steps for setting up...