pote
pote
Having a conversation with @frodsan it came up that he'd like to have a clustered mode [similar to Puma's](https://github.com/puma/puma/#clustered-mode) so that he can benefit from running multiple processes easily and...
The way to add configuration to Disc - [`Disc::Job#disc`](https://github.com/pote/disc/blob/2fbc6c8f3795a2a0b54fbe814a2b2bafce1dd288/lib/disc.rb#L104-L106) - was inspired by Sidekiq's `sidekiq_options`. Recently, [a discussion in a pull request](https://github.com/pote/disc/pull/17#discussion_r36595021) made me think on wether we want this...
It'd be nice if `Disc` could have a configurable logger, not sure how that would look like exactly, but [the Sidekiq implementation](https://github.com/mperham/sidekiq/wiki/Logging) is probably a good reference to get the...
It'd be good for Disc to have signal handling for graceful shutdowns, maybe something similar to [this](https://github.com/inkel/fallen/blob/master/lib/fallen.rb#L92-L98)
`#features` was returning an empty array on my app - I'm setting it up from scratch with the latest version of rollout. I noticed `$rollout` does actually have a shortcut...
🎉
This pull request adds convenience methods for redigo's connection pools, the way redigo itself handles it is really cumbersome. ``` go pool, _ := NewPool(3, 200, "240s") // Args are...
Homebrew seems to have changed the path where it installs these things, ta hardcoding the executable makes it not work in my new environment. Also add the `go.mod` file go...
Probably one of my most common use cases is wanting to have 3 splits, with one of them being a full length vertical one, like so:  To achieve that...