Patrick B asked:
We are debating using ICS files, mysql tables, a combination of both - just not sure what the most scalable method will be. In the system, calendars will be shared between users, and users will have the ability to export ICS files to import on their local computers.
We are debating using ICS files, mysql tables, a combination of both - just not sure what the most scalable method will be. In the system, calendars will be shared between users, and users will have the ability to export ICS files to import on their local computers.


1 Comment to 'What is the best practice for coding a php/mysql event calendar with recurring events?'
February 25, 2009
I would say ICS files are great for a standard importing and exporting of data, but you’ll want to definitely store the “live” data your application runs on in some sort of database for it to be both efficient and scalable. Constantly parsing plain text files without any sort of indexing will not be very efficient.
Once you have the data in a db, creating an ICS file for export should be easy when the user requests one.
Leave a comment