Alfresco has a cron-like system that allows you to run a job at regular intervals. The documentation specifies as an example the expression 0 0/2 * * * ? which will make the job run every 2 minutes. However, in a lot of code I see people using the expression 0 */2 * * * ? instead, the difference being