memcached delete command


  Translation results:

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 commandsyntax

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 commandexample

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

Popular Recommendations

Home

Videos

Q&A