Redis Basics
Redis Commands
Redis Advanced
Redis Useful Resources
Selected Reading
Redis Commands
- Redis - Server
- Redis - Connections
- Redis - Scripting
- Redis - Transactions
- Redis - Publish Subscribe
- Redis - HyperLogLog
- Redis - Sorted Sets
- Redis - Sets
- Redis - Lists
- Redis - Hashes
- Redis - Strings
- Redis - Keys
- Redis - Commands
Redis Advanced
- Redis - Php
- Redis - Java
- Redis - Partitioning
- Redis - Pipelining
- Redis - Client Connection
- Redis - Benchmarks
- Redis - Security
- Redis - Backup
Redis Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Redis - Connections
Redis - Connections
Redis connection commands are basically used to manage cpent connections with Redis server.
Example
Following example explains how a cpent authenticates itself to Redis server and checks whether the server is running or not.
redis 127.0.0.1:6379> AUTH "password" OK redis 127.0.0.1:6379> PING PONG
Redis Connection Commands
Following table psts some basic commands related to Redis connections.
Sr.No | Command & Description |
---|---|
1 | Authenticates to the server with the given password |
2 | Prints the given string |
3 | Checks whether the server is running or not |
4 | Closes the current connection |
5 | Changes the selected database for the current connection |