Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 554 Bytes

list-installed-redis-modules.md

File metadata and controls

31 lines (27 loc) · 554 Bytes

List Installed Redis Modules

Category: Redis

You can list the server modules installed for a Redis instance using the MODULE command.

Output is an array list with the module name and version.

127.0.0.1:6379> MODULE LIST
1) 1) "name"
   2) "graph"
   3) "ver"
   4) (integer) 21010
2) 1) "name"
   2) "timeseries"
   3) "ver"
   4) (integer) 10810
3) 1) "name"
   2) "ReJSON"
   3) "ver"
   4) (integer) 20407
4) 1) "name"
   2) "search"
   3) "ver"
   4) (integer) 20609
5) 1) "name"
   2) "bf"
   3) "ver"
   4) (integer) 20405