Jean Boussier

Results 329 comments of Jean Boussier

> this works in way saying there is "httpclient", but in different source which actually reflects better the reality. 🤔 Oh I see. So namespaces would essentially be equivalent to...

Sorry but I'm not sure to understand what you're asking. What are forced subs?

Hum, perhaps, I'd need to have a look at how doable it would be. As I'd need to skip the reader code because it needs the GVL. I'll have a...

Rails `RedisCacheStore` accept a `Redis` instance as argument: ```ruby ActiveSupport::Cache::RedisCacheStore.new(redis: Redis::Cluster.new(....)) ``` or ```ruby config.cache_store = :redis_store, { redis: Redis::Cluster.new(....) } ``` NB: I didn't test, I may have got...

5.x has been out for a while now, I think we can close this.

Matthew reminded me that this could also be useful for regular apps for which DB connections are costly, e.g. Postgres without PGBouncer, etc. Particularly in job workers where it's much...

So I rebased this PoC on top of https://github.com/rails/rails/pull/50938, and it makes a whole lot more tests pass without modifications, which is good. However that made me realize there is...

Yes, It can't work any other way, and that's already what this PR does.

Alright, I got a green build after fighting with some tests leaks for quite a while. With the decoupling of transactional fixtures in https://github.com/rails/rails/pull/50999 merged yesterday, plus https://github.com/rails/rails/pull/50938 that is...

All the examples you pointed are all the same thing: stateful SQL features. If you need these, you either have to wrap the entire code section to which it has...