I've got:
- a CPU E5-2407 (quadcore Xeon 2.2GHz)
- 16GB of memory DDR3
- RAID1 Intel520 SSD 240GB
My homemade applications are using a permanent PG connection on 7 pages (one called by customers as API, others called by a CURL bash loop with 10s timer) + website. The volume will go up to 1 million call per day on the API page (now it's around 1000 per day). The API page role is only to insert data in a table, handle by loop process afterwards.
I'll change the bash loop by a C program in maybe one month so the API page will be the only called using nginx (except website but it'll be a very very small volume compared to API).
What would you recommend as settings for processes/child processes/cache/buffer of nginx/PG/FPM ?
Thanks :)