This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-02-02 19:11:38 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Redisable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def redis
|
2022-04-29 22:43:07 +02:00
|
|
|
Thread.current[:redis] ||= RedisConfiguration.pool.checkout
|
2019-02-02 19:11:38 +01:00
|
|
|
end
|
|
|
|
end
|