0 votes
in MemCached by
If you are using replace command in Memcached and the key does not exist, what will happen?

the output is NOT STORED.

the output is STORED.

the output is DUPLICATED

1 Answer

0 votes
by

A) the output is NOT STORED.

Reason:

The replace command in Memcached is used to replace the value of an existing key. If the key does not exist, the output is NOT STORED.

...