博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Rails的Custom configuration配置redis
阅读量:6305 次
发布时间:2019-06-22

本文共 1162 字,大约阅读时间需要 3 分钟。

 http://guides.rubyonrails.org/configuring.html#custom-configuration

 config/application.rb

# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.     config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}').to_s]     config.i18n.default_locale = :"zh-CN"++    # Rails 自定义配置+    # http://guides.rubyonrails.org/configuring.html#custom-configuration +    config.x.redis.host = '127.0.0.1'+    config.x.redis.port = 6379   end end

config/environments/production.rb

# Use default logging formatter so that PID and timestamp are not suppressed.   config.log_formatter = ::Logger::Formatter.new++  config.x.redis.host = '10.103.xx.xx'+  config.x.redis.port = 6379 end

 config/environments/staging.rb

# Based on production defaults require Rails.root.join("config/environments/production")++Rails.application.configure do+  config.x.redis.host = '10.103.xx.xx'+  config.x.redis.port = 6379+end

config/initializers/redis.rb

+redis_config = Rails.configuration.x.redis+Redis.current = Redis.new(:host => redis_config.host, :port => redis_config.port)

 

 

 

 

 

转载于:https://www.cnblogs.com/iwangzheng/p/4686132.html

你可能感兴趣的文章
MySQL Replication 主主配置详细说明
查看>>
Linux的任务调度
查看>>
在Android studio中添加jar包方法如下
查看>>
iframe 在ie下面总是弹出新窗口解决方法
查看>>
分享10款漂亮实用的CSS3按钮
查看>>
安装nginx 常见错误及 解决方法
查看>>
Gorun8电子商城
查看>>
在之前链表的基础上改良的链表
查看>>
android编译系统makefile(Android.mk)写法
查看>>
MD5源代码C++
查看>>
Eclipse 添加 Ibator
查看>>
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
查看>>
Python编程语言
查看>>
十四、转到 linux
查看>>
Got error 241 'Invalid schema
查看>>
ReferenceError: event is not defined
查看>>
男人要内在美,更要外在美
查看>>
为什么要跟别人比?
查看>>
app启动白屏
查看>>
Oracle 提高查询性能(基础)
查看>>