diff --git a/redis.md b/redis.md
index 9815700778e..1991d667673 100644
--- a/redis.md
+++ b/redis.md
@@ -210,6 +210,16 @@ In addition to the default configuration options, PhpRedis supports the followin
],
```
+
+#### Unix Socket Connections
+
+Redis connections can also be configured to use Unix sockets instead of TCP. This can offer improved performance by eliminating TCP overhead for connections to Redis instances on the same server as your application. To configure Redis to use a Unix socket, set your `REDIS_HOST` environment variable to the path of the Redis socket and the `REDIS_PORT` environment variable to `0`:
+
+```env
+REDIS_HOST=/run/redis/redis.sock
+REDIS_PORT=0
+```
+
#### PhpRedis Serialization and Compression