Created
August 21, 2013 12:26
-
-
Save Swop/6293819 to your computer and use it in GitHub Desktop.
Speed up Vagrant for Sf2 apps by placed the cache & log dir in memory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class AppKernel extends Kernel | |
{ | |
// ... | |
public function getCacheDir() | |
{ | |
if (in_array($this->environment, array('dev', 'test'))) { | |
return '/dev/shm/appname/cache/' . $this->environment; | |
} | |
return parent::getCacheDir(); | |
} | |
public function getLogDir() | |
{ | |
if (in_array($this->environment, array('dev', 'test'))) { | |
return '/dev/shm/appname/logs'; | |
} | |
return parent::getLogDir(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment