mastodon/app/models/concerns/redisable.rb

12 lines
178 B
Ruby

# frozen_string_literal: true
module Redisable
extend ActiveSupport::Concern
private
def redis
Thread.current[:redis] ||= RedisConfiguration.pool.checkout
end
end