yiisoft / yii2-redis

Yii 2 Redis extension.
http://www.yiiframework.com
BSD 3-Clause "New" or "Revised" License
452 stars 183 forks source link

Add retry interval support #189

Closed marty-macfly closed 4 years ago

marty-macfly commented 4 years ago

PR linked with #188

rob006 commented 4 years ago

Considering pathological behavior of usleep() on Windows, maybe it should be

if ($this->retryInterval > 0) { 
    usleep($this->retryInterval);
}

?

samdark commented 4 years ago

Yes, definitely. Thanks @rob006. @marty-macfly please apply extra condition.

Behavior in question is https://twitter.com/sam_dark/status/1179708055094730752

marty-macfly commented 4 years ago

@samdark changelog updated and condition improvement for windows issue with usleep.

samdark commented 4 years ago

Merged. Thank you!