UK[dɪˈli:t] US[diˈlit]

vt.& vi.Delete

Third person singular: deletes Present participle: deleting Past tense: deleted Past participle: deleted

memcached delete command syntax

Function: Used to delete existing keys.

Syntax: delete key [noreply]

Parameters:

ParameterDescription
keyKey value The key in the key-value structure is used to find the cache value.
noreplyOptional, this parameter tells the server that no data needs to be returned

memcached delete command example

set runoob 0 900 9
memcached
STORED
get runoob
VALUE runoob 0 9
memcached
END
delete runoob
DELETED
get runoob
END
delete runoob
NOT_FOUND