Category Archives: redis

Khóa học miễn phí Redis – Benchmarks nhận dự án làm có lương

Redis – Benchmarks Redis benchmark is the utility to check the performance of Redis by running n commands simultaneously. Syntax Following is the basic syntax of Redis benchmark. redis-benchmark [option] [option value] Example Following example checks Redis by calling 100000 commands. redis-benchmark -n 100000 PING_INLINE: 141043.72 requests per second PING_BULK: 142857.14 requests per second SET: […]

Khóa học miễn phí Redis – Client Connection nhận dự án làm có lương

Redis – Client Connection Redis accepts clients’ connections on the configured listening TCP port and on the Unix socket, if enabled. When a new client connection is accepted, the following operations are performed − The client socket is put in non-blocking state since Redis uses multiplexing and non-blocking I/O. The TCP_NODELAY option is set in […]