Tilo
Tilo
> I guess we are keeping gems up-to-date well enough to rarely jump over several version at once so I haven't experienced such need. The users of your gem are...
this worked: `rvm install ruby-3.3.0 --reconfigure --with-openssl-dir=$(brew --prefix openssl@3)` this did not work: `rvm install ruby-3.3.0 --reconfigure --enable-yjit --with-openssl-dir=$(brew --prefix openssl@3)` > uname -a 23.2.0 Darwin Kernel Version 23.2.0 root:xnu-10002.61.3~2/RELEASE_ARM64_T6000...
@daddyz did you see this?
> @tilo interesting undocumented behavior. I never saw that method being used like that, it's not documented and not tested. I tried it locally on 0.8.9 and it works. Can...
looks like our tests are passing with 0.9.1
+1 for the proposed changes, including the :posts => @posts more and updated examples and documentation would be great - especially for cases where ppl have problems with
@drbrain encountering the same error when using Gem-in-a-box https://github.com/geminabox/geminabox/issues/211
Hi @jpcamara, can you help me understand the use case where you run into issues with threading? I'd like to fully understand the scenario you're encountering. In the systems where...
I'll have a look at the examples you provided
I'm looking into it, but wanted to point out that when calling it concurrently, the simplest fix is adding a mutex: ``` run_forever(pool_size: 10) do |i| if i.even? MUTEX.synchronize do...