Changes between Initial Version and Version 6 of Ticket #32749


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32749

    • Property Cc pope1ni added
    • Property Component UncategorizedDocumentation
    • Property Easy pickings set
    • Property Triage Stage UnreviewedAccepted
    • Property Type BugCleanup/optimization
    • Property Owner changed from nobody to Nishant Sagar
    • Property Status newassigned
  • Ticket #32749 – Description

    initial v6  
    1 I'm not sure why would we do that, since changing to True will slightly speed up the usage of the cache
     1I checked the pymemcached documentation and it says  noreply will not read errors returned from the memcached server.
     2
     3If 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
     5pymemcached 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
     7What do we supposed to  do now?
     8
     9PS- I'm new to this project so can anyone give me some suggestion to fix this issue
Back to Top