More granular timeouts
See original GitHub issueRedis supports millisecond timeouts on SET
with PX
, but BLPOP
understands only integer seconds. This is still achievable by using publish/subscribe with a bit more hustle.
Issue Analytics
- State:
- Created 9 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Zend HttpClient more granular timeouts? - Stack Overflow
I'm happy to enter a ticket to ZendFramework to support smaller, more granular timeouts but wanted to first see if this is a...
Read more >What is Prebid timeout and how to optimize it? - Automatad
Be more granular to ensure the timeouts are not happening due to a particular device or the internet speed in a specific geography,...
Read more >More granular retry support · Issue #260 · urllib3 ... - GitHub
We want to retry all connection errors and connection timeouts - these indicate the request never made it to the other machine. We...
Read more >[#DIRAPI-378] Finer-grain timeouts - ASF JIRA - Apache
More granular timeouts are in order: connect timeout, write/read operation timeout, close timeout, send timeout. For convenience and compatibility, ...
Read more >Prebid.js Timeout: A Comprehensive Guide For Publishers
Be more granular to ensure the timeouts are not happening due to a particular device or the internet speed in a specific geography,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jhorman (and anyone else coming by this issue), what Redis does when running out of memory depends on the specific eviction policy you have configured.
For this use-case (distributed locking, especially with low-TTL keys), setting a
noeviction
policy might be wise.Please document
noeviction
requirement.