Optional number of seconds to make deleted items 'locked'
for 'add' operations. Value can be a delta from current time (up to
1 month), or an absolute Unix epoch time. Defaults to 0, which means
items can be immediately added. With or without this option,
a 'set' operation will always work. Float values will be rounded up to
the nearest whole second.
namespace
a string specifying an optional namespace to use in
the request.
Returns
DELETE_NETWORK_FAILURE (0) on network failure,
DELETE_ITEM_MISSING (1) if the server tried to delete the item but
didn't have it, orDELETE_SUCCESSFUL (2)` if the item was actually deleted.
This can be used as a boolean value, where a network failure is the
only bad condition.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-11-14 UTC."],[[["The `google.appengine.api.memcache.delete()` function removes a specified key from the memcache."],["You can optionally set a `seconds` parameter to 'lock' the deleted key from 'add' operations for a specific duration, up to one month, where zero is the default and means the items are not locked."],["A `namespace` can be provided as a string to specify a target namespace for the delete operation."],["The function returns a status code: `DELETE_NETWORK_FAILURE` (0) for network issues, `DELETE_ITEM_MISSING` (1) if the item wasn't found, or `DELETE_SUCCESSFUL` (2) upon successful deletion."]]],[]]