2019-02-02 18:11:38 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Redisable
|
|
|
|
def redis
|
2024-09-02 14:19:55 +00:00
|
|
|
Thread.current[:redis] ||= RedisConnection.pool.checkout
|
2019-02-02 18:11:38 +00:00
|
|
|
end
|
2022-05-12 22:02:35 +00:00
|
|
|
|
|
|
|
def with_redis(&block)
|
2024-09-02 14:19:55 +00:00
|
|
|
RedisConnection.with(&block)
|
2022-05-12 22:02:35 +00:00
|
|
|
end
|
2019-02-02 18:11:38 +00:00
|
|
|
end
|