nicholas a. evans
nicholas a. evans
For what it's worth, @bittrance has a big fork with a lot of work to getting this closer to "completion": https://github.com/bittrance/rxruby
> Regarding the number of timers, it would be hard to imagine there ever being more than 10,000 timers at any one time, given other limitations of the system. Yeah,...
100% agree that it'd be nice to just use a priority queue anywhere without any concern that it's the bottleneck. Priority Queues can be "hotspot" code for schedulers and other...
I'm so sorry, I just completely fell off the map with all of this and a bunch of other little open source stuff I'd wanted to accomplish this year. I'm...
Ah, and even if we don't go to a C extension, I just noticed (remembered) that I had a carefully optimized pure ruby implementation, linked in the gist above. I...
> > `//= require "jquery-ui"` might be converted to `@import 'jquery-ui/dist/themes/base/jquery-ui.min.css';` > > Won't this be interpreted as a "plain CSS import"? Yes, you're right. Sorry about that. As you...
@dgmstuart Ah, I see. That makes sense. I didn't actually think about `jsbundling-rails` keeping `node_modules` up-to-date (I don't currently use it). > The issue is that the ordering of these...
That sounds very reasonable to me. It's certainly the approach used by `graceful_worker_shutdown_and_wait!` and `graceful_worker_shutdown!`, although `shutdown_everything_now!` is reversed (which is confusing, but based on the default CLI options which...
We should be able to copy the approach used by resque-scheduler: * https://github.com/resque/resque-scheduler/blob/121e3427d1211baf8354067321d1f1dd14c7e4a1/.github/workflows/ruby.yml#L20-L67 * https://github.com/resque/resque-scheduler/blob/121e3427d1211baf8354067321d1f1dd14c7e4a1/Gemfile#L4-L25 n.b. although I'd enjoy the rake task for running locally, I generally will only want...