summaryrefslogtreecommitdiff
path: root/redis/commands/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/core.py')
-rw-r--r--redis/commands/core.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/redis/commands/core.py b/redis/commands/core.py
index 0823315..4f0accd 100644
--- a/redis/commands/core.py
+++ b/redis/commands/core.py
@@ -780,6 +780,13 @@ class ManagementCommands:
"""
return self.execute_command("SWAPDB", first, second, **kwargs)
+ def select(self, index, **kwargs):
+ """Select the Redis logical database at index.
+
+ See: https://redis.io/commands/select
+ """
+ return self.execute_command("SELECT", index, **kwargs)
+
def info(self, section=None, **kwargs):
"""
Returns a dictionary containing information about the Redis server