2020-03-05 02:24:17 +08:00
# Redis
2021-12-09 22:10:02 +08:00
## From their [Website](https://redis.io/)
2020-03-05 02:24:17 +08:00
Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.
2022-09-18 08:52:09 +08:00
## Server Startup
You must first authenticate before trying to execute commands, to do this run `AUTH <YOUR_PASSWORD_HERE>` (without the `<>` ). This should be the same as the password set in the `SERVER_PASSWORD` variable.
2021-12-09 22:10:02 +08:00
## Minimum RAM warning
2020-03-05 02:24:17 +08:00
It's recommended to have 4gb of RAM for redis
2021-12-09 22:10:02 +08:00
See here < https: / / docs . redislabs . com / latest / rs / administering / designing-production / hardware-requirements / >
2020-03-05 02:24:17 +08:00
2021-12-09 22:10:02 +08:00
## Server Ports
2020-03-05 02:24:17 +08:00
Ports required to run the server in a table format.
| Port | default |
|---------|---------|
| Server | 6379 |