redis / redis-rb

A Ruby client library for Redis
MIT License
3.96k stars 1.03k forks source link

Update README to remove mutex language #1243

Closed awiddersheim closed 9 months ago

awiddersheim commented 9 months ago

This change removes references to their being a mutex protecting the underlying Redis connection from concurrent access. This was removed in 5.x1.

awiddersheim commented 9 months ago

Seems like based on the plans laid out in https://github.com/redis/redis-rb/issues/1070, folks should be gravitating toward using redis-client instead of this gem in the future. That still fair to say?

byroot commented 9 months ago

I never had any plan to remove the mutex from redis-rb, it would break way too many apps out there. It's still there: https://github.com/redis/redis-rb/blob/935f64f18d7c37386e9b01db71683f8f3b868cd2/lib/redis.rb#L146-L148

awiddersheim commented 9 months ago

Thanks @byroot.