I store user activity data: when user visited current article, topic or personal message to show him how many new comments and messages were added while he was offline.
class SiteActivity
include Mongoid::Document
include Mongoid::Timestamps
belongs_to :user
belons_to :activity, polymorphic: true
end
In this case I store one record per document.
Another option is to use embedded documents, so all user activities will be stored in one document:
class SiteActivity
include Mongoid::Document
belongs_to :user
embeds_many :user_activities
validates :user_id, uniqueness: true
end
class UserActivity
include Mongoid::Document
include Mongoid::Timestamps
embedded_in :site_activity
belongs_to :activity, polymorphic: true
end
So now I don't need to search through all SiteActivities (many many records) but I can fetch one user_activity for current_user and find activity I need through it embedded documents.
Which way is more efficient to store and search data?
My ordinary use case is:
I have got a user and a post so I am fetching for site_activity with this data to see the date when this user visited post last time.
with my first option:
activity = SiteActivity.where(user_id: current_user.id, activity_id: post.id, activity_type: post.class)
with second
user_activity = SiteActivity.where(user_id: current_user.id)
activity = user_activity.user_activities.where(activity_id: post.id, activity_type: post.class)