Task 8

Task 8

Which command is used to select the desired database in Redis?

Answer

select

Explanation

Redis supports multiple databases, and by default, it starts with database 0. You can use the select command followed by the database number to switch to a different database.

Last updated