You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to delete three keys in loop, it only deletes first and the following are not deleted. On the other hand, when I tried to use delete_multi(), it returns 0 always. I don't know the issue.
Here is a code:
`mc = Client([remote server IP])
for key in [digest_key, launchPadCompanies_key, heatmap_key]:
logger.info('Delete Res: ' + str(mc.delete(key)))
I found that it was due to socket_timeout. As the default is 3 sec, I changed it to 10 sec and it works fine. Can you explain it to me? when I set/get on default time it works fine but on deletes, it does not. @linsomniac@alex
When I tried to delete three keys in loop, it only deletes first and the following are not deleted. On the other hand, when I tried to use delete_multi(), it returns 0 always. I don't know the issue.
Here is a code:
`mc = Client([remote server IP])
for key in [digest_key, launchPadCompanies_key, heatmap_key]:
logger.info('Delete Res: ' + str(mc.delete(key)))
`
@alex @timgraham @jerith @linsomniac
The text was updated successfully, but these errors were encountered: