Results 6 issues of David Ehrmann

`Selector` doesn't have a `select()` flavor that takes an `Evaluator` and multiple roots. Add one.

I have a slightly proprietary example I can give you (contact me at ehrmann+1923 <at> gmail). What happened was that I base 64 encoded a byte array after compressing it,...

Why does this method encode a four-byte offset when offset is only two bytes? ``` public void encodeSubstring(int offset, int length, Object context) { ... offset = -offset; if (offset...

I ran into an issue where the thread pool never grows past its core size when using a queue. Here's an example tested with Hystrix 1.5.18: ``` HystrixCommand.Setter setter =...

Refactor the decryption code to use NIO classes. There's a pretty good performance win, and I think it's due to a combination of larger buffers and fewer intermediate buffers. I...