I already asked a separate question on how to create time triggered event in Java: http://stackoverflow.com/questions/1029164/large-scale-time-triggered-event-handling. I was introduced of Quartz. At the same time, I also google it online, and ppl are saying Cron command in Unix is a neat solution.
Which one is better? What's the cons and pros?
Some specification of the system: * Unix OS * program written in Java * I have a task queue with 1000+ entries, for each timestamp, up to 500 tasks might be triggered.
Thanks so much.
Lily