gpt4 book ai didi

ruby-on-rails-3 - Rails 3 中一个 AR 模型内的多个数据库表

转载 作者:行者123 更新时间:2023-12-03 00:50:24 25 4
gpt4 key购买 nike

我被要求提供某种报告(日志记录)服务。该员工在许多公司本地安装了Web应用程序(只是一些用PHP编写的动态网站)。这个网络应用程序是某种调查。所有数据都保存在本地数据库中,但现在的要求是每次表单提交后,这些数据(调查结果)也将发送到中央服务器。

调查有四种类型。他们是这样组织的,有很多项目,每个项目每种类型只能有一个调查(这里是 STI?),而调查属于一个项目。每个调查都会收到来自本地应用程序的报告,因此它会有很多报告。记录此报告的 Rails 3 应用程序应该以某种方式模仿此逻辑。第一个问题是:这种 AR 结构对您有意义吗?

  Project-1--------1-Survey-1-------*-Report

Project
has_one :survey
has_many :reports, :through => :survey

Survey
belongs_to :project
has_many :reports

Report
belongs_to :survey

第二个问题是关于一个 AR 模型有多个表。如果所有数据都存储在reports中表,该表很快就会变得巨大,一段时间后,高效查询属于特定调查的报告可能会成为问题。也许每个调查都有单独的表格会更好?喜欢reports_<survey_id> 。这可能吗?

此外,我不知何故被迫使用 MySQL,但如果有另一个更好的解决方案,我可以尝试插入它。

如果您还在这里,感谢您阅读本文:)

最佳答案

Second question is about having multiple tables for one AR Model. If all data will be stored in reports table, the table will become huge very quickly, and efficient querying for reports that belong to specific survey might be a problem after some time. Maybe it would be better to have separate tables for each Survey? Like reports_. Is this possible?

是的,这是可能的。

你可以这样做:

class Report < AR::Base
table_name_suffix = ''
end

Report.table_name_suffix = 'foo'

更新

<小时/>
# simple example of sharding model

class Survey < AR::Base
has_many :reports

def shard_reports
Report.table_name_suffix = "_survey_#{self.id}"
returning(reports){ Report.table_name_suffix = "" }
end

end

Survey.first.reports_shard

关于ruby-on-rails-3 - Rails 3 中一个 AR 模型内的多个数据库表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5981724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com