RethinkDB is a document storage database with excellent clustering capabilities. However it can also auto notify when records are updated in real-time, and this article is going to explore how to do that using Go. RethinkDB is a document storage database with real-time record pub/sub capabilities. What is RethinkDB? RethinkDB is a document storage database with a lot of … Continue reading Want To Subscribe to RethinkDB Record Using Go? Here’s How!
blog
Learn Where The Usage Of Memoization In Ruby On Rails Is Limited
Memoization is a wonderful concept in programming world. It helps in writing clean code which execute faster. Example: def slow_method @result ||= perform_slow_method end In the above code, slow_method will cache perform_slow_method in @resultvariable, therefore perform_slow_method will execute only once. So, if memoization is wonderful then why not to use it always? that’s the question I am going to answer … Continue reading Learn Where The Usage Of Memoization In Ruby On Rails Is Limited
Mockito: An Unit Testing Framework
Mockito is a Java based mocking framework most preferred with the Junit testing framework. It internally uses Java Reflection and allows to create dummy objects of service. Mockito is a very useful tool that simplifies the test case creation by creating mock/dummy object of external dependencies this dummy data will later apply with mocks into … Continue reading Mockito: An Unit Testing Framework
