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.
What Is The Best Practice For Coding A Php/mysql Event Calendar With Recurring Events?
January 12th, 2010 by CTO WebOjO.com website designers Lahore Pakistan Leave a reply »
Advertisement
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.