Author: Swantika Gupta

NumPy – Say Bye to Loops

Reading Time: 5 minutes Numpy draws it’s powers from two major concepts – vectorization and broadcasting, These concepts help Numpy to say good bye to loops and hello to concise coding.

Scale Out with Cluster Sharding

Reading Time: 3 minutes If your actors are distributed across several nodes in the cluster, Cluster Sharding allows you to interact with them without worrying about their physical location and using only their logical identifier. Even if an actor re-locates to a new node, Akka will take care of locating it for you. You just need to send a message to it as if it is located on your local node.

Mocking The Right Way

Reading Time: 3 minutes Mockito is a fun way to perform unit tests, but it’s true potential can only be realised if the underlying layers are designed in such a way that there is no interaction with the internal logic of other components of the application.