Mike Perham
Mike Perham
Sidekiq Pro only has localization for English today. I'd like to fix that if possible. Here's the English strings file if you'd like to translate it to another language so...
I got this in the Dalli test suite: ``` DEPRECATED: global use of must_raise from /Users/mikeperham/src/dalli/test/test_server.rb:144. Use _(obj).must_raise instead. This will fail in Minitest 6. ``` I've never seen this...
Has anyone added or know how to add rendering time output for templates? I have some slow pages and it would be a huge benefit to see something like: ```...
When we just require 'glimpse' as noted in the docs, our request specs start failing. If we do this, they start working again: glimpse_wrapper.js.coffee.erb ``` ruby ```
I'm packing a bunch of static web assets into a single `static.go` file for compilation: ``` go:generate go-bindata -fs -pkg webui -o static.go static/... ``` I check in this generated...
These `Errorf` calls could take advantage of the new `%w` support in 1.13 so the underlying error can still be accessed and queried easily, just change %v to %w. ```...
Hi, I've been trying to monitor Redis network latency within Sidekiq by using `PING` but I've learned that a process pegged at 100% CPU will dramatically overstate latency due to...
See https://github.com/mperham/sidekiq/issues/1597 for backstory. The suspicious code IMO is in [command_helper.rb](https://github.com/redis/redis-rb/blob/master/lib/redis/connection/command_helper.rb#L35). What is the purpose of force_encoding here? Is this a matter of data going into Redis in a bad...
Rails 3.rc has deprecated rails/init.rb. You should update the root init.rb like so: ``` require File.join(File.dirname(__FILE__), 'lib', 'less', 'controller_extension') if Rails.env.development? ``` Please note RAILS_ENV is also deprecated.
The timing tooltips are blocked by the hovering mouse and disappear immediately when I move the mouse away to see the content. Perhaps a 500ms delay before fading out?