세션 사용하지 않기

Submitted by river - 등록 10 years ago - 수정 10 years ago

세션이 필요가 없는 경우, 세션의 사용은 큰 자원의 낭비이다. API 서비스 등이 대표적인 예일 것 같다. 다음 필터를 사용하면 특정 라우팅에 대해서 세션을 사용하지 않도록 할 수 있다.

filters.php

Route::filter('session.remove', function()
{
    return Config::set('session.driver', 'array');
});

routes.php

Route::group(array(
    "prefix" => "api/v1",
    "before" => array("session.remove")
), function() {
    Route::get('/search', 'SearchController@getPerformSearch');
});

출처 : Filter Remove Sessions

comments powered by Disqus