I was curious if there were any best practices to indexing the metrics od a collections that is aggregated by month/day.
Document example:
{
track: {
2012: { # year
1: { # month
page_views: ...,
clicks: ...,
visits: ...
},
5: {
page_views: ...,
clicks: ...,
visits: ...
},
...
}
}
Edit:
Since theres a discusion going on about how the document can be improved and a few suggestions to split it out (which I've considered). I'll update why the requirements are the way they are. The document is for tracking a user. Tracking their pageviews, visits, etc over time. The user has other data on the document. For for example theres a registeration_date. The goal was to be able to say something like "show me users who registered on X date and have more then Z page views between A and B tracking dates". I haven't been able to come up with a schema without embedding that would facilitate this.
Updated Document example:
{
registration_date: ...,
email: ...,
track: {
2012: { # year
1: { # month
page_views: ...,
clicks: ...,
visits: ...
},
5: {
page_views: ...,
clicks: ...,
visits: ...
},
...
}
}