What's the use of socket declaration in config/database.yml ?
Example code:
staging:
adapter: mysql
encoding: utf8
database: (database)
pool: 5
username: (user)
password: (pass)
socket: /tmp/mysql.sock # <--------- this line
My app works, wether this line is commented or not. So what is it for ? What reasons can I have to leave it, comment it or change it's value ?