You can invalidate all existing cache items using the flush_all command. This command does not pause the server, as it returns immediately.
It does not free up or flush memory at all, it just causes all items to expire.
netcat (nc) Command Example
The nc (netcat) command is a simple unix utility which reads and writes data across network connections, using TCP or UDP protocol.
It can simply connect to the memcached instance and and invalidate all existing cache:
echo 'flush_all' | nc localhost 11211
OR
echo 'flush_all' | netcat localhost 11211
OR
nc 192.168.1.10 11211<<<"flush_all"
