chrisboulton / php-resque

PHP port of resque (Workers and Queueing)
MIT License
3.44k stars 760 forks source link

Hash collision #261

Open yongsheng-xia opened 9 years ago

yongsheng-xia commented 9 years ago

why no use redis increment to generate job id? Thanks for reading。My English is really poor, these are all translated.

danhunsaker commented 9 years ago

For in-Redis compatibility with Ruby's implementation. That way one interface can queue jobs for multiple worker backends in multiple programming languages. Since Ruby decided to go with md5 hashes of UUIDs, so did this PHP port.