Redis – Advantage of returning boxed primitive values from library function
Context I am looking at a couple of Java Redis clients like Lettuce and Jedis. I see that both libraries have defined their methods to return boxed primitive types rather than straight primitives. For example, sadd() returns Long rather than…