It's from this answer:
http://stackoverflow.com/questions/2482411/is-this-pdo-bug-fixed-now/2482424#2482424
|
It's from this answer: http://stackoverflow.com/questions/2482411/is-this-pdo-bug-fixed-now/2482424#2482424 |
|||
|
|
|
unix sockets are inter-process-communication mechanism that allows bidirectional data exchange between process running on the same machine. while ip sockets [in special case tcp/ip] are mechanism allowing to communicate both between processes over the network. in special case you can use tcp-ip sockets to talk with processes running on the same computer [ by using the loopback interface ]. |
|||
|
|
you can list your own machine local unix sockets with netstat -a -p --unix have fun! |
|||||||
|
|
A unix socket can be used for both 'interprocess' and for tcp/ip (remote) connections. http://www.gnu.org/software/libc/manual/html_node/Sockets.html#Sockets |
|||
|
|