mirror of
https://github.com/funamitech/mastodon
synced 2024-12-15 07:09:03 +09:00
12 lines
196 B
Ruby
12 lines
196 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Redisable
|
|
def redis
|
|
Thread.current[:redis] ||= RedisConnection.pool.checkout
|
|
end
|
|
|
|
def with_redis(&block)
|
|
RedisConnection.with(&block)
|
|
end
|
|
end
|