The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

9 行
221 B

  1. # frozen_string_literal: true
  2. Redis.current = Redis.new(
  3. host: ENV.fetch('REDIS_HOST') { 'localhost' },
  4. port: ENV.fetch('REDIS_PORT') { 6379 },
  5. password: ENV.fetch('REDIS_PASSWORD') { false },
  6. driver: :hiredis
  7. )