redis

Redis as a Shared Data Store Between Rails Apps

In my previous post [https://www.thegreatcodeadventure.com/managing-multiple-databases-in-a-single-rails-application/], we laid out a few scenarios in which two (or more!) separate Rails applications need to access the same data. Normally, shared data + lots of data === lots of expensive and slow database queries. One solution to this problem is to create…