Skip to content

Instantly share code, notes, and snippets.

@DominicImhof
Created October 29, 2013 18:38
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DominicImhof/7220254 to your computer and use it in GitHub Desktop.
Save DominicImhof/7220254 to your computer and use it in GitHub Desktop.
Connect Laravel 4 with Redis via UNIX domain sockets
<?php
return array(
'redis' => array(
'cluster' => true,
'default' => array(
'scheme' => 'unix',
'path' => '/tmp/redis.sock'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment