Reputation: 7611
I have been using Quartz.NET in my application a lot over the past few months, and its performance has always been great. Yesterday, it suddenly began taking much longer than usual to execute something like the following:
JobDetail jobDetail = sched.GetJobDetail(jobName, jobGroup);
Usually the time it takes is not even noticable, and now it takes at least 2-3 seconds - and when adding up multiple of these the speed is appaling.
What can be causing this? If it's any help, I'm using Quartz.NET with an ADO.NET store, and access to this database seems as fast as ever.
Upvotes: 2
Views: 347
Reputation: 2692
Do you have indexes on the tables? Perhaps the table has now had enough entries that this matters?
Upvotes: 1