Browse Source

Improve performance by not creating session

This benchmark do not need sessions. Sessions in laravel is expensive !
Bruno Cabral 10 years ago
parent
commit
1edf4c2a25
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/PHP/php-laravel/app/config/session.php

+ 1 - 1
frameworks/PHP/php-laravel/app/config/session.php

@@ -16,7 +16,7 @@ return array(
 	|
 	*/
 
-	'driver' => 'file',
+	'driver' => 'array',
 
 	/*
 	|--------------------------------------------------------------------------