skip to Main Content

I have 2 AWS ElasticCache – Memcached nodes.
How can I flush all the data in those nodes?
Is there a aws-cli command I can use? Is there any other way we can do it through AWS Console?

2

Answers


  1. Chosen as BEST ANSWER

    One thing which worked for me atlast:

    telnet xxxx.yyyy.0001.use1.cache.amazonaws.com 11211

    flush_all

    I'm still open to find other ways to do this.


  2. We use php client for memcache and trigger flush_all whenever needed

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search