세션(Session)의 의미 어떤 유저가 어떤 특정 사이트를 접속하여 머물러 있는 시간. 웹서버는 서로 다른 유저들로부터 서버 내에 있는 페이지를 요청이 들어올 경우에 각 유저들의 컴퓨터에 유일무이한 식별키를 쿠키의 형태로 발급하여 해당 유저가 사용자의 정보 즉, 사용자의 로그인이나 기타 입력된 정보를 서버 내에 저장하여 유저가 다시접속하였을때 유저에게 발급한 식별키를 이용하여 서버쪽에 저장해놓은 정보(세션값)를 가져옴으로써 유저를 구별하는 원리로 구현된다고 볼수 있다 세션(Session)과 쿠키(Cookie)의 차이점 쿠키(Cookie) : 모든 유저나 회원들의 정보를 사용자의 시스템에 저장한다.세션(Session): 유저의 데이터를 서버쪽에 저장하여 유저의 시스템에는 서버에 저장되어 있는 해당 사용자..
php 세션 조절하기# 설치환경- CentOS 5.x (64bit)1. php 세션 조절하기- php.ini 파일을 보면 다음과 같은 session 관련 필드가 있는 것을 볼 수 있다. 이 값들을 이용하여 세션을 조절 할 수 있다[Session]; Handler used to store/retrieve data.session.save_handler = files; Argument passed to save_handler. In the case of files, this is the path; where data files are stored. Note: Windows users have to change this; variable in order to use PHP's session functions...
출처 : http://preludeb.egloos.com/4738164 http://preludeb.egloos.com/4738168 http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=65008&sca=&sfl=wr_subject%7C%7Cwr_content&stx=vlan&sop=and http://www.jopenbusiness.com/mediawiki/index.php/Poedit#PHP_.EB.B2.88.EC.97.AD_.ED.94.84.EB.A1.9C.EA.B7.B8.EB.9E.A8 http://wiki.kldp.org/wiki.php/DocbookSgml/Gettext-KLDP http://www.hanbit.co..
apache.org의 KeepAlive에 대해 아래와 같이 정의 되어 있다. The Keep-Alive extension to HTTP/1.0 and the persistent connection feature of HTTP/1.1 provide long-lived HTTP sessions which allow multiple requests to be sent over the same TCP connection. In some cases this has been shown to result in an almost 50% speedup in latency times for HTML documents with many images. To enable Keep-Alive connections, set Kee..