전체 354

[Thread][Windows] DuplicateHandle

출처 : http://hongten.egloos.com/265139 서로 다른 프로세스 사이에서 커널 오브젝트를 공유하는 마지막 방법으로 DuplicateHandle() 함수를 사용하는 것이다. BOOL DuplicateHandle( HANDLE hSourceProcessHandle, HANDLE hSourceHandle, HANDLE hTargetProcessHandle, PHANDLE phTargetHandle, DWORD dwDesiredAccess, BOOL bInheritHandle, DWORD dwOptions ); 단순히, 이 함수는 하나의 프로세스 핸들 테이블의 핸들을 다른 프로세스의 핸들 테이블로 복사한다. DuplicateHandle() 함수는 여러개의 인수를 가지고 있지만 실제로 아주..

Thread/Windows 2013.10.19

[Redis][Doc] Redis Clients Handling

Client 연결을 어떻게 수행하는지에 대한 문서이다.Redis Clients Handling이 문서는 networklayer의 관점에서의 클라이언트와의 connections, timeouts, buffers, 그리고 다른 비슷한 주제들에 대해 어떻게 수행하는지에 대한 정보를 제공한다. 이 문서가 포함하고 있는 정보들은 오직 Redis version 2.6 이상에서만 가능하다. How client connections are accepted어떻게 클라이언트 연결이 액셉트되는가Redis accepts clients connections on the configured listening TCP port and on the Unix socket if enabled. When a new client connec..

Linux 2013.10.07

[Linux][Redis][doc] Redis Administration

This page contains topics related to the administration of Redis instances. Every topic is self contained in form of a FAQ. New topics will be created in the future.이 페이지는 Redis instance를 관리하는 것과 관련된 주제들을 포함한다. 모든 주제는 FAQ 형식으로 포함된다. 새로운 주제는 나중에 추가될 것이다.Redis setup hints Redis 설정 힌트We suggest deploying Redis using the Linux operating system. Redis is also tested heavily on osx, and tested from ti..

Linux 2013.09.30
반응형