Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What will happen if you use add command to assign a value to a new key, and the key already exists?
Home
MemCached
What will happen if you use add command to assign a value to a new key, and the key already exists?
0
votes
asked
Jul 28, 2023
in
MemCached
by
sharadyadav1986
What will happen if you use add command to assign a value to a new key, and the key already exists?
the output is NOT STORED.
the output is STORED.
the output is DUPLICATED
memcache-key
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 28, 2023
by
sharadyadav1986
A) the output is NOT STORED.
Reason:
The add command in Memcached is used to assign a value to a new key. If the key already exists, the output is NOT STORED.
...