Changes between Version 6 and Version 7 of Ticket #32749


Ignore:
Timestamp:
May 30, 2021, 6:43:27 AM (3 years ago)
Author:
Nishant Sagar
Comment:

I checked the pymemcached documentation and it says noreply will not read errors returned from the memcached server.

If a function with noreply=True causes an error on the server, it will still succeed and your next call which reads a response from memcached may fail unexpectedly.

pymemcached will try to catch and stop you from sending malformed inputs to memcached, but if you are having unexplained errors, setting noreply=False may help you troubleshoot the issue.

What do we supposed to do now?

PS- I'm new to this project so can anyone give me some suggestion to fix this issue

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32749 – Description

    v6 v7  
    1 I checked the pymemcached documentation and it says  noreply will not read errors returned from the memcached server.
    2 
    3 If a function with noreply=True causes an error on the server, it will still succeed and your next call which reads a response from memcached may fail unexpectedly.
    4 
    5 pymemcached will try to catch and stop you from sending malformed inputs to memcached, but if you are having unexplained errors, setting noreply=False may help you troubleshoot the issue.
    6 
    7 What do we supposed to  do now?
    8 
    9 PS- I'm new to this project so can anyone give me some suggestion to fix this issue
Back to Top