2019-02-03 05:11:38 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Redisable
|
|
|
|
def redis
|
2022-04-30 06:43:07 +10:00
|
|
|
Thread.current[:redis] ||= RedisConfiguration.pool.checkout
|
2019-02-03 05:11:38 +11:00
|
|
|
end
|
2022-05-13 08:02:35 +10:00
|
|
|
|
|
|
|
def with_redis(&block)
|
|
|
|
RedisConfiguration.with(&block)
|
|
|
|
end
|
2019-02-03 05:11:38 +11:00
|
|
|
end
|