Michael Mahemoff
Michael Mahemoff
In case it's useful for anyone, I've hard-coded them for now as follows: `STEMMABLE_LANGUAGES = Set.new %w(da en fi fr de hu it la no po es sv ro ru...
I just realised this gem is being [pulled into Rails 5](https://github.com/rails/rails/pull/18948), which might make the issue moot. It doesn't seem 100% done yet though.
Since multiple keys will likely be supported by default, permanently, I think there should be a guarantee about the order they will be processed. It seems to use a "first...
Here's command-line yamllint. It gives the correct line number. https://github.com/adrienverge/yamllint
It would appear you are correct that it should be TWICE the traffic. Here's the [relevant code](https://github.com/bdurand/seamless_database_pool/blob/ab9e256ebbb7deb1f683b66c97c084dcdc29f5ca/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb#L163): ``` pool_weights.each_pair do |conn, weight| weight.times{@weighted_read_connections
I believe `read_timeout`refers to idle time rather than total time. For example, pointing to a streaming URL will never terminate: ``` Excon.new('http://bbcmedia.ic.llnwd.net/stream/bbcmedia_radio1_mf_p', connect_time: 5, read_timeout: 5).get ``` The read timeout...
Not sure if I'll have time in the short term either, but looks like the main logic [is here](https://github.com/excon/excon/blob/789218e4786f90ebc3201b89d7b00000aee9e411/lib/excon/socket.rb#L256): ``` def select_with_timeout(socket, type) select = case type when :connect_read IO.select([socket],...
Agreed on compact to make the "overall" param optional and also agree it should apply to all commands, ie writes too.
Actually I think it's some kind of hybrid feed that is more RSS, as I've been able to parse it as RSS. (I had some code to prevent special-casing Feedburner,...