2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【nginx】WORKER_CPU_AFFINITYの設定

Last updated at Posted at 2017-06-02

core数に応じた設定が必要

nginx.conf
# 4coreの場合
worker_processes 4;

worker_cpu_affinity  0001 0010 0100 1000

詳細

| CORE| WORKER_CPU_AFFINITY |
|------- |------------|---------------------|
|2|01 10|
|3|001 010 100|
|4|0001 0010 0100 1000|
|8|00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000|

worker_cpu_affinity : auto 設定は、nginx 1.9.10 からサポート

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?