Welcome to my blog

Posts

TECHNOLOGY, PROGRAMMING, THOUGHTS AND OTHER ESSENTIALS.

  • Simple, Distributed and Scalable PubSub in Erlang

    This blog post is about how to build high scalable and distributed messaging-based applications using ErlBus, which is a lightweight and simple library to enable what we want here.

    Since current release 0.2.0 (in progress), ErlBus was improved substantially. The current PubSub implementation was taken from the original, remarkable, and proven Phoenix PubSub Layer, but...

  • Testing Distributed Apps with Common Test

    This post is about a very common scenario: how to test distributed applications in Erlang? Well, fortunately, Erlang has a remarkable testing framework: Common Test. With CT it is possible to achieve it, and the best part is that it’s extremely easy.

    The best way to explain how to test a distributed app with CT is with as...