From cc9c02250ca3119fd8954155790d4d5872ea9434 Mon Sep 17 00:00:00 2001 From: Pablo de Leon Belloc Date: Sun, 26 Feb 2012 12:06:31 -0300 Subject: [PATCH] Fix doc/sockets.md --- doc/sockets.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/sockets.md b/doc/sockets.md index 98acfdab..b8028b52 100644 --- a/doc/sockets.md +++ b/doc/sockets.md @@ -4,11 +4,12 @@ Sockets Handler This handler allows you to write your logs to sockets using [fsockopen](http://php.net/fsockopen) or [pfsockopen](http://php.net/pfsockopen). +Persistent sockets are mainly useful in web environments where you gain some performance not closing/opening +the connections between requests. + Basic Example ------------- -This example e persistent connections: - ```php