Lucas Nussbaum
Lucas Nussbaum
On 26/04/16 at 06:28 -0700, Arnaud Legrand wrote: > Out of curiosity, have you ever published slides on HAL ? I just tried and I could not really find the...
> The line you're referencing wasn't introduced in [#1025](https://github.com/petergoldstein/dalli/pull/1025) since that code hasn't been released yet. If you're on a Ruby version >3.0, there's a good chance those timeouts don't...
After thinking about it, I see two ways of addressing this in pure ruby: 1/ first use getsockopt, then try the various options for generating a struct timeval until one...
Hi, In Debian I fixed it with the following patch. ```diff Index: ruby-dalli/lib/dalli/socket.rb =================================================================== --- ruby-dalli.orig/lib/dalli/socket.rb +++ ruby-dalli/lib/dalli/socket.rb @@ -126,8 +126,26 @@ module Dalli seconds, fractional = options[:socket_timeout].divmod(1) microseconds =...