client.hgetall don't throw error,when redis server is stop
See original GitHub issuewhen redis server is stop,to run command
await client.hgetall('name')
will blocking, no error throw。
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
python 3.x - redis-py and hgetall behavior - Stack Overflow
Create a client instance with the decode_responses argument, e.g., StrictRedis(decode_responses=True) . This will decode all strings that come ...
Read more >SHUTDOWN - Redis
Stop all the clients. Perform a blocking SAVE if at least one save point is configured. Flush the Append Only File if AOF...
Read more >Phpredis uncaught exception (redis server went away) - Drupal
Redis server is working fine( I am able to telnet locally & globally to ... Additional uncaught exception thrown while handling exception.
Read more >Error detection and handling with Redis - IBM Developer
When I initialize the ioredis library, a network connection is made, authentication credentials are exchanged, certificates are checked, and the ...
Read more >How to Use Redis With Python
This means that you (the client) connect to a Redis server through TCP connection, ... Redis will return nil rather than an error...
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
maxRetriesPerRequest
was introduced in v4.0.0, thus an upgrade is required to use this option.THANKS!