Bulk loading appointments performance

I am dynamically loading appointments using the scheduler.addEvent({…}) method.

To load around 500 appointments (in month view there are a lot) it takes about 5 seconds. Is there a ways to speed this up?

Thanks

Use scheduler.parse instead of addEvent. With parse command you can add multiple events at once

Thanks, this is really fast now!