Explore >> Select a destination


You are here

thetechsolo.wordpress.com
| | loonytek.com
12.2 parsecs away

Travel
| | In this post, I will talk about how we can build a minimal RPC layer of a distributed system using Netty. By the end of this post, readers will have some familiarity with Netty concepts, protocol buffers and how these can be put together to build an initial (somewhat rudimentary) version of messaging component in...
| | developerlife.com
11.8 parsecs away

Travel
| | This tutorial is an early exploration into Java Project Loom (preview technology)
| | webhostinggeeks.com
9.5 parsecs away

Travel
| | Explore the world of server performance as we delve into the C10K problem - the challenge of handling 10,000 concurrent connections. Learn its origins, impacts, and the evolution of solutions from thread-based models to event-driven architectures.
| | donsbot.com
105.4 parsecs away

Travel
| A common misconception from non-Haskellers is that Haskell, when compiled, pays an ongoing penalty for supporting laziness by default. The idea is that in a lazy language, every expression would suspend to a heap-allocated, garbage collected, thunk. Even if you were to use the variable immediately. That sounds scarily expensive. In the real world however,...