Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to allow my users to setup a schedule for their events. It could be a single day, or for convenience I'd like to allow them to specify a reoccurring event (similar to an Outlook appointment).

Storing a single day would be pretty easy, but how could I store and query a reoccurring event? I don't need to do times, as I'd just store that separately, and if they needed a different time I'd just have them create another event. So no: Every Wednesday at 5 and Thursday at 3.

Examples:

Every mon, tues, wed, thu, fri, every week

Every wed every week

Every second tuesday of the month

I asked this a few years ago: How can I store and query schedule data? but it was using a SQL solution (SQL Server). I want to use Mongo though so a port is in order.

share|improve this question

1 Answer

up vote 0 down vote accepted

How about storing the original date and information about the recurrence? Its an unlimited field for experiments and you can invent a "recurring event format" of your own. For example:

event : {
   date: 17 May 2012 22.45, 
   recurring: "+2d"  # meaning, every second day after the date
}
share|improve this answer
This is kind of the approach I am using in my mongo project; Using identifiers that can be matched against. You can filter to a certain extent, and then it might involve some client-side filtering. In python I use dateutil module to reconstruct a reoccurring date object. – jdi May 17 '12 at 20:05
So can you give some basic queries? I am a total mongo newb. How would I show for the next week what events are coming up? – rball May 18 '12 at 2:41
You can't do that via Mongo. It's business logic that should reside in the application, not in the database. – BasicWolf May 18 '12 at 7:40
@BasicWolf: Data queries should still be on the database layer. You can't expect the app to get ALL events and then do the querying client-side. That wouldn't be a good idea. – dashmug Oct 30 '12 at 3:06
@dashmug You expect MongoDB to manage recurring dates? oO – BasicWolf Oct 30 '12 at 6:24
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.