3

I am learning Redis right now and one of the first things I did was trying to interactively issue commands to an online Redis server: http://try.redis.io/

The FLUSHALL command is well documented here: http://redis.io/commands/flushall and is also referenced in this SO answer.

But when I try to issue it, it is simply not recognized:

enter image description here

My question: Why? Where has it disappeared? After all, the documentation says it is:

"Available since 1.0.0."

Community
  • 1
  • 1
Not So Sharp
  • 1,149
  • 2
  • 10
  • 20

1 Answers1

4

The web interface at try.redis.io, while executing against a real Redis database, offers only a subset of the actual commands. Because the database is shared by all users of the interface, some commands (FLUSHALL for example) are disabled in it.

Itamar Haber
  • 47,336
  • 7
  • 91
  • 117