次の形式のログ レコードが多数あります
a_id, b_id, c_id, count, x_id, y_id, z_id
オブジェクトの関係は次のとおりです。
a has_many b
b has_many c
c has_many y
y has_many z
次のクエリを実行しようとしています。データベース (リレーショナルまたはその他) の構造によって、大量のデータに対してこれらのクエリをモデル化/実行できるようになります。
find count for a certain a_id
find count for a certain a_id and set of associated b_id(s)
find count for a set of a_id(s) and set of associated b_id(s)
find count for a certain a_id, b_id and set of associated c_id(s)
find count for a certain a_id, set of b_id(s) and set of associated c_id(s)
find count for a certain x_id
find count for a certain x_id and set of associated y_id(s)
...