Rails 连接多个数据库的两种方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rails 连接多个数据库的两种方式相关的知识,希望对你有一定的参考价值。

有些时候,我的项目可以需要连接多个数据库,这时应该怎么办?我查阅了资料,大部分都是说在model里加入establish_connection来指向不同的数据库,也有的说做个基础的类,每个model继承此类,这些说法都没有错,但不够精练,我在此做个总结。

这里使用的是mysql和rails4.2

一、每个model各自连接

修改database.yml如下:

default: &default
  adapter: mysql2
  encoding: utf8
  pool: 5
  host: localhost
  username: username
  password: password
  database: databasename

development:
  <<: *default

test:
  <<: *default
  database: databasename_test

production:
  <<: *default
  database: databasename_production

others:
  development:
    adapter: mysql2
    encoding: utf8
    reconnect: true
    pool: 5
    host: localhost
    username: username
    password: password
    database: databasename2 
  production:
    adapter: mysql2
    encoding: utf8
    reconnect: true
    pool: 5
    host: localhost
    username: username
    password: password
    database: databasename2_production

创建一个module做数据库连接,如下

  module DatabaseConnection

    def self.included(base)
        base.establish_connection DatabaseCnf[:others][Rails.env]   #DatabaseCnf是一个类,它用来读取database.yml配置。
      end
  end

然后在每个需要这个连接的model里include这个module,就可以了,如:

  class Company < ActiveRecord::Base
    include DatabaseConnection
  end

这个Company类就可以连接到others下的数据库的companies表了,操作和默认相同。

二、创建一个连接类,需要的可以继承这个类

database.yml配置文件不变。

创建一个数据库连接类:

class DatabaseConnection < ActiveRecord::Base
  self.abstract_class = true    #共用连接池,减少数据库连接的消耗
  establish_connection DatabaseCnf[:others][Rails.env]  #DatabaseCnf是一个类,它用来读取database.yml配置。
end

然后需要这个连接的model继承这个类即可。

class Company < DatabaseConnection
end

这样的Company就是使用的others下的数据库的companies表了。

 

总结,我觉得使用第二种方式更好一些,它可以共享链接池,减少数据库连接,降低系统资源的消耗。

以上是关于Rails 连接多个数据库的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

使用mybatis的两种方式

SpringBoot实现多数据源的两种方式

ADB连接手机的两种方式(usb数据线连接和wifi连接)

MySQL数据库的两种连接方式:TCP/IP和Socket

Java连接Neo4j的两种方式

转 web.config中配置数据库连接的两种方式